Skip to content

Commit 76f836d

Browse files
committed
Add erc20 token configurations
1 parent 2664bf4 commit 76f836d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pleth/config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
develop = pleth.objectdict.ObjectDict({
77
'chain_id': 1337,
8+
'erc20': {},
89
'gas_base_fee': 21000,
910
'rpc': {
1011
'url': 'http://127.0.0.1:8545',
@@ -14,6 +15,10 @@
1415

1516
mainnet = pleth.objectdict.ObjectDict({
1617
'chain_id': 1,
18+
'erc20': {
19+
'usdc': '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
20+
'usdt': '0xdAC17F958D2ee523a2206206994597C13D831ec7',
21+
},
1722
'gas_base_fee': 21000,
1823
'rpc': {
1924
'url': 'https://eth.drpc.org',
@@ -23,6 +28,7 @@
2328

2429
testnet = pleth.objectdict.ObjectDict({
2530
'chain_id': 11155111,
31+
'erc20': {},
2632
'gas_base_fee': 21000,
2733
'rpc': {
2834
'url': 'https://rpc.sepolia.org',

0 commit comments

Comments
 (0)