-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
73 lines (73 loc) · 1.93 KB
/
Copy pathconfig.json
File metadata and controls
73 lines (73 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"pg_url": "$DATABASE_URL",
"dashboard": {
"root_password": "$PASSWORD"
},
"eth_sources": [
{"name": "mainnet", "chain_id": 1, "url": "https://1.rlps.indexsupply.net"},
{"name": "goerli", "chain_id": 5, "url": "https://5.rlps.indexsupply.net"},
{"name": "optimism", "chain_id": 10, "url": "https://10.rlps.indexsupply.net"},
{"name": "optimism goerli", "chain_id": 420, "url": "https://420.rlps.indexsupply.net"},
{"name": "base", "chain_id": 8453, "url": "https://8453.rlps.indexsupply.net"},
{"name": "base goerli", "chain_id": 84531, "url": "https://84531.rlps.indexsupply.net"}
],
"integrations": [
{
"name": "ERC20-Transfers",
"enabled": true,
"sources": [
{"name": "mainnet"},
{"name": "goerli"},
{"name": "optimism"},
{"name": "optimism goerli"},
{"name": "base"},
{"name": "base goerli"}
],
"table": {
"name": "token_transfers",
"columns": [
{"name": "chain_id", "type": "numeric"},
{"name": "block_num", "type": "numeric"},
{"name": "block_time", "type": "numeric"},
{"name": "tx_hash", "type": "bytea"},
{"name": "contract", "type": "bytea"},
{"name": "f", "type": "bytea"},
{"name": "t", "type": "bytea"},
{"name": "amt", "type": "numeric"}
]
},
"block": [
{"name": "chain_id", "column": "chain_id"},
{"name": "block_num", "column": "block_num"},
{"name": "block_time", "column": "block_time"},
{"name": "tx_hash", "column": "tx_hash"},
{"name": "log_addr", "column": "contract"}
],
"event": {
"name": "Transfer",
"type": "event",
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "from",
"type": "address",
"column": "f"
},
{
"indexed": true,
"name": "to",
"type": "address",
"column": "t"
},
{
"indexed": false,
"name": "amount",
"type": "uint256",
"column": "amt"
}
]
}
}
]
}