We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a76e7 commit 6563c9bCopy full SHA for 6563c9b
ethereum/circuits/lib/src/fixtures/mainnet/london.nr
@@ -1,2 +1,2 @@
1
-pub(crate) mod crypto_punks;
+pub mod crypto_punks;
2
pub(crate) mod vitalik_balance;
vlayer/ethereum/circuits/lib/src/chain_id.nr
@@ -1,4 +1,4 @@
-global MAINNET: u32 = 1;
+pub(crate) global MAINNET: u32 = 1;
//global ROPSTEN: u32 = 3;
3
//global RINKEBY: u32 = 4;
4
//global GOERLI: u32 = 5;
@@ -11,4 +11,4 @@ global MAINNET: u32 = 1;
11
//global CELO: u32 = 42220;
12
//global AVALANCHE: u32 = 43114;
13
//global MUMBAI: u32 = 80001;
14
-global SEPOLIA: u32 = 11155111;
+pub(crate) global SEPOLIA: u32 = 11155111;
0 commit comments