forked from zakerikk/oracle-provider-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappconfig.json
50 lines (50 loc) · 1.66 KB
/
appconfig.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
{
"networks": [
{
"type": "evm",
"networkId": "aurora",
"privateKeyEnvKey": "AURORA_PRIVATE_KEY",
"chainId": 1313161554,
"rpc": "https://mainnet.aurora.dev"
},
{
"type": "near",
"networkId": "near-testnet",
"credentialsStorePathEnvKey": "NEAR_CREDENTIALS_STORE_PATH",
"networkType": "testnet",
"rpc": "https://rpc.testnet.near.org",
"maxGas": "300000000000000",
"accountId": "{{YOUR_ACCOUNT_ID_HERE}}",
"storageDeposit": "300800000000000000000000"
}
],
"pairs": [
{
"description": "Anyone can transmit() an answer to me, I'm a FluxPriceFeed without access control!",
"pair": "ETH / USD",
"contractAddress": "0x8BAac7F07c86895cd017C8a2c7d3C72cF9f1051F",
"sources": [
{
"source_path": "market_data.current_price.usd",
"end_point": "https://api.coingecko.com/api/v3/coins/ethereum"
}
],
"interval": 5000,
"networkId": "aurora"
},
{
"description": "ETH / USD for NEAR",
"pair": "ETH / USD",
"contractAddress": "fpo3.franklinwaller2.testnet",
"sources": [
{
"source_path": "market_data.current_price.usd",
"end_point": "https://api.coingecko.com/api/v3/coins/ethereum"
}
],
"interval": 5000,
"networkId": "near-testnet",
"defaultDecimals": 6
}
]
}