Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Release: Merge to publish new version to npm #417

Merged
merged 9 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions adapters/rainbowkit-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @blocto/rainbowkit-connector

## 2.0.1

### Patch Changes

- d5aa448: update rainbowkit version and fix appId params

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions adapters/rainbowkit-connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocto/rainbowkit-connector",
"version": "2.0.0",
"version": "2.0.1",
"description": "blocto wallet connector to use rainbowkit",
"author": "Blocto Wallet",
"main": "./dist/index.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.0.4",
"@rainbow-me/rainbowkit": "^2.0.5",
"@blocto/wagmi-connector": "^2.0.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion adapters/rainbowkit-connector/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Wallet, WalletDetailsParams } from '@rainbow-me/rainbowkit';
import { blocto, createConnector } from '@blocto/wagmi-connector';

export const bloctoWallet =
({ appId } = { appId: undefined }) =>
({ appId }: { appId?: string } = {}) =>
(): Wallet => {
return {
id: 'blocto',
Expand Down
6 changes: 6 additions & 0 deletions packages/blocto-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @blocto/sdk

## 0.10.1

### Patch Changes

- 97ac7d7: deprecate goerli testnet info

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/blocto-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocto/sdk",
"version": "0.10.0",
"version": "0.10.1",
"repository": "git@github.com:portto/blocto-sdk.git",
"author": "Chiaki.C",
"license": "MIT",
Expand Down
12 changes: 0 additions & 12 deletions packages/blocto-sdk/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,43 +37,31 @@ export const ETH_RPC_LIST: Mapping = {

// Arbitrum Mainnet
42161: 'https://arb1.arbitrum.io/rpc',
// Arbitrum Testnet
421613: 'https://endpoints.omniatech.io/v1/arbitrum/goerli/public',
// Arbitrum Sepolia Testnet
421614: 'https://arbitrum-sepolia.blockpi.network/v1/rpc/public',

// Optimism Mainnet
10: 'https://mainnet.optimism.io',
// Optimism Goerli Testnet
420: 'https://goerli.optimism.io',
// Optimism Sepolia Testnet
11155420: 'https://sepolia.optimism.io',

// Base Mainnet
8453: 'https://mainnet.base.org',
// Base Goerli Testnet
84531: 'https://goerli.base.org',
// Base Sepolia Testnet
84532: 'https://sepolia.base.org',

// Zora
7777777: 'https://rpc.zora.energy',
// Zora Goerli Testnet
999: 'https://testnet.rpc.zora.energy',
// Zora Sepolia Testnet
999999999: 'https://sepolia.rpc.zora.energy',

// Scroll
534352: 'https://rpc.scroll.io',
// Scroll Goerli Testnet
534353: 'https://alpha-rpc.scroll.io/l2',
// Scroll Sepolia Testnet
534351: 'https://sepolia-rpc.scroll.io',

// Linea
59144: 'https://rpc.linea.build',
// Linea Goerli Testnet
59140: 'https://rpc.goerli.linea.build',

// zKatana Sepolia Testnet
1261120: 'https://rpc.startale.com/zkatana',
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2737,7 +2737,7 @@
resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==

"@rainbow-me/rainbowkit@^2.0.4":
"@rainbow-me/rainbowkit@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@rainbow-me/rainbowkit/-/rainbowkit-2.0.5.tgz#efe34e97ee342b8cd10538384f71e9ca01ab8306"
integrity sha512-JVBgl0J1EvYXrGxDJmqEVMFrjE3gGidHyacFilKu/zJdaHFGXogsmCG51DdaU3gsas0Aqbq9kqK13qk49VSfAg==
Expand Down
Loading