@wagmi/chains
Advanced tools
Comparing version 0.0.0-20221130194251 to 0.0.0-20221130203325
declare type Address = `0x${string}`; | ||
declare type BlockExplorer = { | ||
name: string; | ||
url: `http://${string}` | `https://${string}`; | ||
url: string; | ||
}; | ||
@@ -44,4 +44,4 @@ declare type Chain = { | ||
declare type RpcUrls = { | ||
http: (`http://${string}` | `https://${string}`)[]; | ||
webSocket?: (`ws://${string}` | `wss://${string}`)[]; | ||
http: string[]; | ||
webSocket?: string[]; | ||
}; | ||
@@ -48,0 +48,0 @@ |
@@ -148,3 +148,3 @@ // src/arbitrum.ts | ||
name: "Binance Smart Chain Testnet", | ||
network: "bsc", | ||
network: "bsc-testnet", | ||
nativeCurrency: { | ||
@@ -151,0 +151,0 @@ decimals: 18, |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.0.0-20221130194251", | ||
"version": "0.0.0-20221130203325", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "main": "dist/index.js", |
15853