Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/sepolia chains #67

Merged
merged 4 commits into from
Oct 31, 2023
Merged
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: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-jsonrpc-gateway",
"version": "1.8.1",
"version": "1.8.2",
"description": "A Web3 provider that handles accounts on its own but delegates chain queries to a 3rd party service",
"main": "dist/bin/w3gw.js",
"files": [
Expand Down Expand Up @@ -45,6 +45,7 @@
"elastos:testnet": "cross-env-shell ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_PRICE=175000000000 ETHERS_GAS_LIMIT=8000000 node dist/bin/ethers https://api-testnet.elastos.io/esc 8513",
"elastos:mainnet": "cross-env-shell ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_PRICE=50000000000 ETHERS_GAS_LIMIT=8000000 node dist/bin/ethers https://api.elastos.io/esc 9513",
"ethereum:goerli": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_GAS_LIMIT=10000000 ETHERS_GAS_PRICE=100000000000 ETHERS_GAS_PRICE_FACTOR=1.5 node dist/bin/ethers https://eth-goerli.public.blastapi.io 8545",
"ethereum:sepolia": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_GAS_LIMIT=10000000 ETHERS_GAS_PRICE=100000000000 ETHERS_GAS_PRICE_FACTOR=1.1 node dist/bin/ethers https://rpc2.sepolia.org/ 8506",
"ethereum:mainnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true node dist/bin/ethers/infura 9545",
"fuse:testnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true node dist/bin/ethers https://rpc.fusespark.io 8511",
"gnosis:testnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_ESTIMATE_GAS_PRICE=false ETHERS_GAS_PRICE=100000000 node dist/bin/ethers https://rpc.chiadochain.net 8509",
Expand All @@ -71,7 +72,8 @@
"polygon:zkevm:mainnet": "cross-env-shell ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_LIMIT=15000000 ETHERS_GAS_LIMIT_FACTOR=1.1 ETHERS_GAS_PRICE=100000000000 ETHERS_GAS_PRICE_FACTOR=1.1 node dist/bin/ethers https://polygon-zkevm.drpc.org 9512",
"reef:testnet": "cross-env-shell node dist/bin/reef wss://rpc-testnet.reefscan.com/ws https://squid.subsquid.io/reef-explorer-testnet/graphql 8532",
"reef:mainnet": "cross-env-shell node dist/bin/reef wss://rpc.reefscan.info/ws https://squid.subsquid.io/reef-explorer/graphql 9532",
"scroll:goerli": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_LIMIT=8000000 ETHERS_GAS_PRICE=555000000000 ETHERS_GAS_PRICE_FACTOR=1.0 node dist/bin/ethers https://scroll-testnet.blockpi.network/v1/rpc/public 8514",
"scroll:sepolia": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_LIMIT=8000000 ETHERS_GAS_PRICE=555000000000 ETHERS_GAS_PRICE_FACTOR=1.0 node dist/bin/ethers https://1rpc.io/scroll/sepolia 8514",
"scroll:mainnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_FORCE_EIP_155=true ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_LIMIT=8000000 ETHERS_GAS_PRICE=555000000000 ETHERS_GAS_PRICE_FACTOR=1.0 node dist/bin/ethers https://1rpc.io/scroll 9514",
"syscoin:rollux:testnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_GAS_LIMIT=8000000 node dist/bin/ethers https://rpc-tanenbaum.rollux.com 8507",
"syscoin:testnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_FORCE_EIP_1559=true node dist/bin/ethers https://rpc.tanenbaum.io 8521",
"syscoin:mainnet": "cross-env-shell EVM_CALL_INTERLEAVE_BLOCKS=0 ETHERS_ESTIMATE_GAS_PRICE=true ETHERS_ESTIMATE_GAS_LIMIT=true ETHERS_FORCE_EIP_1559=true node dist/bin/ethers https://rpc.syscoin.org 9521",
Expand Down
Loading