From 5a56611823d376e982635f9d60bc65c4a0ded0f3 Mon Sep 17 00:00:00 2001 From: 0xfourzerofour Date: Thu, 22 Aug 2024 12:31:36 -0400 Subject: [PATCH] feat(chains): create bera --- bin/rundler/chain_specs/avax.toml | 8 ++------ bin/rundler/chain_specs/bera_bartio.toml | 3 +++ bin/rundler/src/cli/chain_spec.rs | 1 + 3 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 bin/rundler/chain_specs/bera_bartio.toml diff --git a/bin/rundler/chain_specs/avax.toml b/bin/rundler/chain_specs/avax.toml index f8b1001a..4d346470 100644 --- a/bin/rundler/chain_specs/avax.toml +++ b/bin/rundler/chain_specs/avax.toml @@ -1,7 +1,3 @@ -name = "Avax" -id = 43114 +name = "BeraChain Bartio" +id = 80084 -# Intrinsic cost + overhead of non-reentry storage without refund -transaction_intrinsic_gas = "0x5DC0" # 24_000 -# Extra cost of a deploy without refunds -per_user_op_deploy_overhead_gas = "0x4E20" # 20_000 diff --git a/bin/rundler/chain_specs/bera_bartio.toml b/bin/rundler/chain_specs/bera_bartio.toml new file mode 100644 index 00000000..bc948595 --- /dev/null +++ b/bin/rundler/chain_specs/bera_bartio.toml @@ -0,0 +1,3 @@ +name = "Bera Bartio" +id = 80084 + diff --git a/bin/rundler/src/cli/chain_spec.rs b/bin/rundler/src/cli/chain_spec.rs index f8e0d2bf..9ca5a75c 100644 --- a/bin/rundler/src/cli/chain_spec.rs +++ b/bin/rundler/src/cli/chain_spec.rs @@ -122,5 +122,6 @@ define_hardcoded_chain_specs!( polygon, polygon_amoy, avax, + bera_bartio, avax_fuji );