@toruslabs/ethereum-controllers 5.2.12 → 5.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ethereumControllers.cjs.js +10 -10
- package/dist/ethereumControllers.cjs.js.map +1 -1
- package/dist/ethereumControllers.esm.js +10 -10
- package/dist/ethereumControllers.esm.js.map +1 -1
- package/dist/ethereumControllers.umd.min.js +1 -1
- package/dist/ethereumControllers.umd.min.js.map +1 -1
- package/package.json +2 -2
- package/src/utils/constants.ts +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toruslabs/ethereum-controllers",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.13",
|
|
4
4
|
"homepage": "https://github.com/torusresearch/controllers#readme",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/ethereumControllers.cjs.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "ff1f86a9f2c01898e1df8ea7f58ee919e88164de",
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
|
|
70
70
|
"hardhat": "^2.19.4"
|
package/src/utils/constants.ts
CHANGED
|
@@ -46,7 +46,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
46
46
|
blockExplorerUrl: "https://polygonscan.com",
|
|
47
47
|
chainId: POLYGON_CHAIN_ID,
|
|
48
48
|
displayName: "Polygon",
|
|
49
|
-
logo: "
|
|
49
|
+
logo: "polygon.svg",
|
|
50
50
|
rpcTarget: `https://polygon-mainnet.infura.io/v3/${INFURA_KEY}`,
|
|
51
51
|
ticker: "MATIC",
|
|
52
52
|
tickerName: "Matic Network Token",
|
|
@@ -55,7 +55,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
55
55
|
blockExplorerUrl: "https://bscscan.com",
|
|
56
56
|
chainId: BSC_MAINNET_CHAIN_ID,
|
|
57
57
|
displayName: "Binance Smart Chain (BSC)",
|
|
58
|
-
logo: "
|
|
58
|
+
logo: "bnb_logo.png",
|
|
59
59
|
rpcTarget: `https://bsc-dataseed.binance.org`,
|
|
60
60
|
ticker: "BNB",
|
|
61
61
|
tickerName: "Binance Coin",
|
|
@@ -91,19 +91,19 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
91
91
|
blockExplorerUrl: "https://arbiscan.io",
|
|
92
92
|
chainId: ARBITRUM_MAINNET_CHAIN_ID,
|
|
93
93
|
displayName: "Arbitrum One",
|
|
94
|
-
logo: "
|
|
94
|
+
logo: "arbitrum.svg",
|
|
95
95
|
rpcTarget: `https://arbitrum-mainnet.infura.io/v3/${INFURA_KEY}`,
|
|
96
96
|
ticker: "ETH",
|
|
97
97
|
tickerName: "Ethereum",
|
|
98
98
|
},
|
|
99
99
|
[XDAI_CHAIN_ID]: {
|
|
100
|
-
blockExplorerUrl: "https://blockscout.com
|
|
100
|
+
blockExplorerUrl: "https://gnosis.blockscout.com",
|
|
101
101
|
chainId: XDAI_CHAIN_ID,
|
|
102
102
|
displayName: "xDai",
|
|
103
103
|
logo: "xdai.svg",
|
|
104
104
|
rpcTarget: `https://rpc.gnosischain.com`,
|
|
105
105
|
ticker: "DAI",
|
|
106
|
-
tickerName: "xDai
|
|
106
|
+
tickerName: "xDai Token",
|
|
107
107
|
},
|
|
108
108
|
[BASE_CHAIN_ID]: {
|
|
109
109
|
blockExplorerUrl: "https://basescan.org",
|
|
@@ -128,7 +128,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
128
128
|
blockExplorerUrl: "https://mumbai.polygonscan.com",
|
|
129
129
|
chainId: POLYGON_MUMBAI_CHAIN_ID,
|
|
130
130
|
displayName: "Polygon Mumbai",
|
|
131
|
-
logo: "
|
|
131
|
+
logo: "polygon.svg",
|
|
132
132
|
rpcTarget: `https://polygon-mumbai.infura.io/v3/${INFURA_KEY}`,
|
|
133
133
|
ticker: "MATIC",
|
|
134
134
|
tickerName: "Matic Network Token",
|
|
@@ -138,7 +138,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
138
138
|
blockExplorerUrl: "https://testnet.bscscan.com",
|
|
139
139
|
chainId: BSC_TESTNET_CHAIN_ID,
|
|
140
140
|
displayName: "Binance Smart Chain Testnet",
|
|
141
|
-
logo: "
|
|
141
|
+
logo: "bnb_logo.png",
|
|
142
142
|
rpcTarget: `https://data-seed-prebsc-1-s1.binance.org:8545`,
|
|
143
143
|
ticker: "BNB",
|
|
144
144
|
tickerName: "Binance Coin",
|
|
@@ -148,7 +148,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
148
148
|
blockExplorerUrl: "https://testnet.snowtrace.io",
|
|
149
149
|
chainId: AVALANCHE_TESTNET_CHAIN_ID,
|
|
150
150
|
displayName: "Avalanche Testnet C-Chain",
|
|
151
|
-
logo: "avax.
|
|
151
|
+
logo: "avax.svg",
|
|
152
152
|
rpcTarget: `https://api.avax-test.network/ext/bc/C/rpc`,
|
|
153
153
|
ticker: "AVAX",
|
|
154
154
|
tickerName: "Avalanche",
|
|
@@ -158,7 +158,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
158
158
|
blockExplorerUrl: "https://sepolia.arbiscan.io",
|
|
159
159
|
chainId: ARBITRUM_TESTNET_CHAIN_ID,
|
|
160
160
|
displayName: "Arbitrum Sepolia",
|
|
161
|
-
logo: "
|
|
161
|
+
logo: "arbitrum.svg",
|
|
162
162
|
rpcTarget: `https://arbitrum-sepolia.infura.io/v3/${INFURA_KEY}`,
|
|
163
163
|
ticker: "ETH",
|
|
164
164
|
tickerName: "Ethereum",
|
|
@@ -175,7 +175,7 @@ export const SUPPORTED_NETWORKS: Record<string, EthereumProviderConfig> = {
|
|
|
175
175
|
isTestnet: true,
|
|
176
176
|
},
|
|
177
177
|
[BASE_TESTNET_CHAIN_ID]: {
|
|
178
|
-
blockExplorerUrl: "https://sepolia
|
|
178
|
+
blockExplorerUrl: "https://sepolia.basescan.org",
|
|
179
179
|
chainId: BASE_TESTNET_CHAIN_ID,
|
|
180
180
|
displayName: "Base Sepolia",
|
|
181
181
|
logo: "base.svg",
|