@wagmi/chains
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -60,2 +60,6 @@ declare type Address = `0x${string}`; | ||
declare const evmos: Chain; | ||
declare const evmosTestnet: Chain; | ||
declare const fantom: Chain; | ||
@@ -69,2 +73,4 @@ | ||
declare const gnosis: Chain; | ||
declare const hardhat: Chain; | ||
@@ -90,2 +96,2 @@ | ||
export { Chain, arbitrum, arbitrumGoerli, avalanche, avalancheFuji, bsc, bscTestnet, fantom, fantomTestnet, foundry, goerli, hardhat, localhost, mainnet, optimism, optimismGoerli, polygon, polygonMumbai, sepolia, taraxa, taraxaTestnet }; | ||
export { Chain, arbitrum, arbitrumGoerli, avalanche, avalancheFuji, bsc, bscTestnet, evmos, evmosTestnet, fantom, fantomTestnet, foundry, gnosis, goerli, hardhat, localhost, mainnet, optimism, optimismGoerli, polygon, polygonMumbai, sepolia, taraxa, taraxaTestnet }; |
@@ -122,3 +122,3 @@ // src/arbitrum.ts | ||
id: 56, | ||
name: "Binance Smart Chain", | ||
name: "BNB Smart Chain", | ||
network: "bsc", | ||
@@ -171,2 +171,41 @@ nativeCurrency: { | ||
// src/evmos.ts | ||
var evmos = { | ||
id: 9001, | ||
name: "Evmos", | ||
network: "evmos", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Evmos", | ||
symbol: "EVMOS" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["https://eth.bd.evmos.org:8545"] } | ||
}, | ||
blockExplorers: { | ||
default: { name: "Evmos Block Explorer", url: "https://escan.live/" } | ||
} | ||
}; | ||
// src/evmosTestnet.ts | ||
var evmosTestnet = { | ||
id: 9e3, | ||
name: "Evmos Testnet", | ||
network: "evmos-testnet", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Evmos", | ||
symbol: "EVMOS" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["https://eth.bd.evmos.dev:8545"] } | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: "Evmos Testnet Block Explorer", | ||
url: "https://evm.evmos.dev/" | ||
} | ||
} | ||
}; | ||
// src/fantom.ts | ||
@@ -278,2 +317,27 @@ var fantom = { | ||
// src/gnosis.ts | ||
var gnosis = { | ||
id: 100, | ||
name: "Gnosis", | ||
network: "gnosis", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Gnosis", | ||
symbol: "xDAI" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["https://rpc.gnosischain.com"] } | ||
}, | ||
blockExplorers: { | ||
etherscan: { | ||
name: "Gnosisscan", | ||
url: "https://gnosisscan.io/" | ||
}, | ||
default: { | ||
name: "Gnosis Chain Explorer", | ||
url: "https://blockscout.com/xdai/mainnet/" | ||
} | ||
} | ||
}; | ||
// src/hardhat.ts | ||
@@ -525,5 +589,2 @@ var hardhat = { | ||
contracts: { | ||
ensRegistry: { | ||
address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" | ||
}, | ||
multicall3: { | ||
@@ -582,5 +643,8 @@ address: "0xca11bde05977b3631167028862be2a173976ca11", | ||
bscTestnet, | ||
evmos, | ||
evmosTestnet, | ||
fantom, | ||
fantomTestnet, | ||
foundry, | ||
gnosis, | ||
goerli, | ||
@@ -587,0 +651,0 @@ hardhat, |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19292
704