-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.example.json
39 lines (39 loc) · 1.14 KB
/
config.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
{
"networks": [
{
"type": "evm",
"networkId": 133,
"privateKeyEnvKey": "EVM_PRIVATE_KEY",
"chainId": 1313161554,
"rpc": "https://testnet.aurora.dev"
},
{
"type": "near",
"networkId": 122,
"networkType": "testnet",
"credentialsStorePathEnvKey": "NEAR_CREDENTIALS_STORE_PATH",
"rpc": "https://rpc.testnet.near.org",
"accountId": "{{YOUR_ACCOUNT_ID}}"
}
],
"modules": [
{
"networkId": 122,
"contractAddress": "fpo3.franklinwaller2.testnet",
"pairs": [
{
"pair": "ETH/USD_SOME_TEST",
"decimals": 6,
"sources": [
{
"source_path": "market_data.current_price.usd",
"end_point": "https://api.coingecko.com/api/v3/coins/ethereum"
}
]
}
],
"interval": 60000,
"type": "PushPairModule"
}
]
}