Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions networks/metis.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"network_rpc": "https://andromeda.metis.io/?owner=1088",
"wvm_rpc": "https://testnet-rpc.wvm.dev",
"block_time": 9.0,
"start_block": 18574702,
"archiver_address": "0x197f818c1313DC58b32D88078ecdfB40EA822614",
"start_block": 18792105,
"archiver_address": "0xd730fF10Ab359Fc4C0853DF9d108b7E646e645f4",
"backfill_address": "0x123463a4B065722E99115D6c222f267d9cABb524",
"archive_pool_address": "0xa2A0D977847805fE224B789D8C4d3D711ab251e7"
"archive_pool_address": "0x0000000000000000000000000000000000000000"
}
4 changes: 2 additions & 2 deletions src/utils/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ pub async fn send_transaction(
"\nArchiving block data from archiver: {} to archive pool: {}",
address_from, address_to
);
// 7wei equivalent to 0.000000007Gwei
let gas_price = U256::from(7);
// 2.14 Gwei
let gas_price = U256::from(2_140_000_000);
let tx = TransactionRequest::new()
.to(address_to.clone())
.value(U256::from(utils::parse_ether(0)?))
Expand Down