Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wagmi/chains

Package Overview
Dependencies
Maintainers
2
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wagmi/chains - npm Package Compare versions

Comparing version 0.0.0-20221130204930 to 0.0.0-20221201004721

10

dist/index.d.ts

@@ -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,

2

package.json

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc