Skip to content

Commit

Permalink
Merge pull request #32 from weaveVM/alphanet-v3
Browse files Browse the repository at this point in the history
feat: add avalanche c-chain config
  • Loading branch information
charmful0x authored Dec 5, 2024
2 parents 29d8d56 + 4b53c02 commit cd316eb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions networks/avalanche.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Avalanche c-chain",
"network_chain_id": 43114,
"wvm_chain_id": 9496,
"network_rpc": "https://avalanche.drpc.org",
"wvm_rpc": "https://testnet-rpc.wvm.dev",
"block_time": 2.0,
"start_block": 53955124,
"archiver_address": "0x4b7C5d27e5b153A7A13809043ceB5E1781B2161D",
"backfill_address": "0xE1E8Ffa2d12c07B25EfbA451030fABbf9B9ae071",
"archive_pool_address": "0x0000000000000000000000000000000000000000"
}
2 changes: 1 addition & 1 deletion src/utils/all_networks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use {
std::{fs::File, io::Read},
};

static ALL_NETWORKS: [&str; 6] = ["goat", "metis", "rss3", "sei", "humanode", "dymension"];
static ALL_NETWORKS: [&str; 7] = ["goat", "metis", "rss3", "sei", "humanode", "dymension", "avalanche"];

pub async fn get_all_networks_metadata() -> Value {
let mut networks_vec: Vec<Network> = Vec::new();
Expand Down

0 comments on commit cd316eb

Please sign in to comment.