forked from api3dao/airnode-protocol-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredentials.example.json
157 lines (157 loc) · 4.25 KB
/
credentials.example.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"etherscan": {
"apiKey": {
"mainnet": "",
"goerli": "",
"arbitrumOne": "<arbitrum>",
"arbitrumTestnet": "<arbitrum-testnet>",
"avalanche": "",
"avalancheFujiTestnet": "<avalanche-testnet>",
"bsc": "",
"bscTestnet": "<bsc-testnet>",
"opera": "<fantom>",
"ftmTestnet": "<fantom-testnet>",
"xdai": "<gnosis>PLACEHOLDER",
"sokol": "<gnosis-testnet>PLACEHOLDER",
"moonbeam": "",
"moonbaseAlpha": "<moonbeam-testnet>",
"moonriver": "",
"optimisticEthereum": "<optimism>",
"optimisticKovan": "<optimism-testnet>",
"polygon": "",
"polygonMumbai": "<polygon-testnet>"
}
},
"networks": {
"mainnet": {
"accounts": { "mnemonic": "" },
"chainId": 1,
"url": "https://mainnet.infura.io/v3/8997be2479d94f91a24df8b56a8e98df"
},
"goerli": {
"accounts": { "mnemonic": "" },
"chainId": 5,
"url": "https://goerli.infura.io/v3/8997be2479d94f91a24df8b56a8e98df"
},
"sepolia": {
"accounts": { "mnemonic": "" },
"chainId": 11155111,
"url": "https://rpc-sepolia.rockx.com"
},
"arbitrum": {
"accounts": { "mnemonic": "" },
"chainId": 42161,
"url": "https://arb1.arbitrum.io/rpc"
},
"arbitrum-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 421613,
"url": "https://goerli-rollup.arbitrum.io/rpc"
},
"avalanche": {
"accounts": { "mnemonic": "" },
"chainId": 43114,
"url": "https://api.avax.network/ext/bc/C/rpc"
},
"avalanche-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 43113,
"url": "https://api.avax-test.network/ext/bc/C/rpc"
},
"bsc": {
"accounts": { "mnemonic": "" },
"chainId": 56,
"url": "https://bsc-dataseed.binance.org"
},
"bsc-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 97,
"url": "https://data-seed-prebsc-1-s1.binance.org:8545/"
},
"fantom": {
"accounts": { "mnemonic": "" },
"chainId": 250,
"url": "https://rpcapi.fantom.network/"
},
"fantom-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 4002,
"url": "https://rpc.testnet.fantom.network/"
},
"gnosis": {
"accounts": { "mnemonic": "" },
"chainId": 100,
"url": "https://rpc.gnosischain.com"
},
"gnosis-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 77,
"url": "https://sokol.poa.network"
},
"metis": {
"accounts": { "mnemonic": "" },
"chainId": 1088,
"url": "https://andromeda.metis.io/?owner=1088"
},
"metis-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 588,
"url": "https://stardust.metis.io/?owner=588"
},
"milkomeda": {
"accounts": { "mnemonic": "" },
"chainId": 2001,
"url": "https://rpc-mainnet-cardano-evm.c1.milkomeda.com"
},
"milkomeda-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 200101,
"url": "https://rpc-devnet-cardano-evm.c1.milkomeda.com"
},
"moonbeam": {
"accounts": { "mnemonic": "" },
"chainId": 1284,
"url": "https://rpc.api.moonbeam.network"
},
"moonbeam-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 1287,
"url": "https://rpc.api.moonbase.moonbeam.network"
},
"moonriver": {
"accounts": { "mnemonic": "" },
"chainId": 1285,
"url": "https://rpc.api.moonriver.moonbeam.network"
},
"optimism": {
"accounts": { "mnemonic": "" },
"chainId": 10,
"url": "https://mainnet.optimism.io"
},
"optimism-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 420,
"url": "https://goerli.optimism.io"
},
"polygon": {
"accounts": { "mnemonic": "" },
"chainId": 137,
"url": "https://polygon-rpc.com/"
},
"polygon-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 80001,
"url": "https://matic-mumbai.chainstacklabs.com"
},
"rsk": {
"accounts": { "mnemonic": "" },
"chainId": 30,
"url": "https://mainnet.sovryn.app/rpc"
},
"rsk-testnet": {
"accounts": { "mnemonic": "" },
"chainId": 31,
"url": "https://testnet.sovryn.app/rpc"
}
}
}