Skip to content
Draft
Show file tree
Hide file tree
Changes from 6 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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ _
.vite
.wrangler
*.zip


.github/instructions/kluster-code-verify.instructions.md
.kluster
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion crates/cli/src/utils/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,13 @@ pub fn has_different_gas_calc(chain_id: u64) -> bool {
| NamedChain::KaruraTestnet
| NamedChain::Mantle
| NamedChain::MantleSepolia
| NamedChain::Metis
| NamedChain::MonadTestnet
| NamedChain::Moonbase
| NamedChain::Moonbeam
| NamedChain::MoonbeamDev
| NamedChain::Moonriver
| NamedChain::Metis
| NamedChain::PolkadotTestnet
);
}
false
Expand Down
4 changes: 4 additions & 0 deletions crates/test-utils/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ pub fn rpc_endpoints() -> RpcEndpoints {
("bsc", RpcEndpointUrl::Url(next_rpc_endpoint(NamedChain::BinanceSmartChain))),
("avaxTestnet", RpcEndpointUrl::Url("https://api.avax-test.network/ext/bc/C/rpc".into())),
("moonbeam", RpcEndpointUrl::Url("https://moonbeam-rpc.publicnode.com".into())),
(
"polkadotTestnet",
RpcEndpointUrl::Url("https://services.polkadothub-rpc.com/testnet".into()),
),
("rpcEnvAlias", RpcEndpointUrl::Env("${RPC_ENV_ALIAS}".into())),
])
}
Expand Down
1 change: 1 addition & 0 deletions testdata/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ polygon = "${RPC_POLYGON}"
bsc = "${RPC_BSC}"
avaxTestnet = "https://api.avax-test.network/ext/bc/C/rpc"
moonbeam = "https://moonbeam-rpc.publicnode.com"
polkadotTestnet = "https://services.polkadothub-rpc.com/testnet"
rpcEnvAlias = "${RPC_ENV_ALIAS}"
Loading