We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2664bf4 commit 76f836dCopy full SHA for 76f836d
1 file changed
pleth/config.py
@@ -5,6 +5,7 @@
5
6
develop = pleth.objectdict.ObjectDict({
7
'chain_id': 1337,
8
+ 'erc20': {},
9
'gas_base_fee': 21000,
10
'rpc': {
11
'url': 'http://127.0.0.1:8545',
@@ -14,6 +15,10 @@
14
15
16
mainnet = pleth.objectdict.ObjectDict({
17
'chain_id': 1,
18
+ 'erc20': {
19
+ 'usdc': '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
20
+ 'usdt': '0xdAC17F958D2ee523a2206206994597C13D831ec7',
21
+ },
22
23
24
'url': 'https://eth.drpc.org',
@@ -23,6 +28,7 @@
28
29
testnet = pleth.objectdict.ObjectDict({
25
30
'chain_id': 11155111,
31
26
32
27
33
34
'url': 'https://rpc.sepolia.org',
0 commit comments