@wagmi/chains
Advanced tools
Comparing version 0.0.0-20221130204930 to 0.0.0-20221201004721
@@ -14,3 +14,3 @@ declare type Address = `0x${string}`; | ||
/** Currency used by chain */ | ||
nativeCurrency?: NativeCurrency; | ||
nativeCurrency: NativeCurrency; | ||
/** Collection of RPC endpoints */ | ||
@@ -65,4 +65,10 @@ rpcUrls: { | ||
declare const foundry: Chain; | ||
declare const goerli: Chain; | ||
declare const hardhat: Chain; | ||
declare const localhost: Chain; | ||
declare const mainnet: Chain; | ||
@@ -80,2 +86,2 @@ | ||
export { Chain, arbitrum, arbitrumGoerli, avalanche, avalancheFuji, bsc, bscTestnet, fantom, fantomTestnet, goerli, mainnet, optimism, optimismGoerli, polygon, polygonMumbai, sepolia }; | ||
export { Chain, arbitrum, arbitrumGoerli, avalanche, avalancheFuji, bsc, bscTestnet, fantom, fantomTestnet, foundry, goerli, hardhat, localhost, mainnet, optimism, optimismGoerli, polygon, polygonMumbai, sepolia }; |
@@ -220,2 +220,17 @@ // src/arbitrum.ts | ||
// src/foundry.ts | ||
var foundry = { | ||
id: 31337, | ||
name: "Foundry", | ||
network: "foundry", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Ether", | ||
symbol: "ETH" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["http://127.0.0.1:8545"] } | ||
} | ||
}; | ||
// src/goerli.ts | ||
@@ -262,2 +277,32 @@ var goerli = { | ||
// src/hardhat.ts | ||
var hardhat = { | ||
id: 31337, | ||
name: "Hardhat", | ||
network: "hardhat", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Ether", | ||
symbol: "ETH" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["http://127.0.0.1:8545"] } | ||
} | ||
}; | ||
// src/localhost.ts | ||
var localhost = { | ||
id: 1337, | ||
name: "Localhost", | ||
network: "localhost", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Ether", | ||
symbol: "ETH" | ||
}, | ||
rpcUrls: { | ||
default: { http: ["http://127.0.0.1:8545"] } | ||
} | ||
}; | ||
// src/mainnet.ts | ||
@@ -498,3 +543,6 @@ var mainnet = { | ||
fantomTestnet, | ||
foundry, | ||
goerli, | ||
hardhat, | ||
localhost, | ||
mainnet, | ||
@@ -501,0 +549,0 @@ optimism, |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.0.0-20221130204930", | ||
"version": "0.0.0-20221201004721", | ||
"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
16815
599