wormhole-explorer/blockchain-watcher/config/default.json

61 lines
1.4 KiB
JSON

{
"environment": "testnet",
"port": 9090,
"logLevel": "debug",
"dryRun": true,
"supportedChains": ["ethereum", "solana", "fantom", "karura", "acala"],
"sns": {
"topicArn": "arn:aws:sns:us-east-1:000000000000:localstack-topic.fifo",
"region": "us-east-1",
"groupId": "blockchain-watcher",
"subject": "blockchain-watcher"
},
"metadata": {
"dir": "metadata-repo"
},
"jobs": {
"dir": "metadata-repo/jobs"
},
"platforms": {
"solana": {
"name": "solana",
"network": "devnet",
"chainId": 1,
"rpcs": ["https://api.devnet.solana.com"],
"timeout": 10000,
"rateLimit": {
"period": 9000,
"limit": 40
}
},
"ethereum": {
"name": "ethereum",
"network": "goerli",
"chainId": 2,
"rpcs": ["https://rpc.ankr.com/eth_goerli"],
"timeout": 10000
},
"fantom": {
"name": "fantom",
"network": "testnet",
"chainId": 10,
"rpcs": ["https://rpc.testnet.fantom.network"],
"timeout": 10000
},
"karura": {
"name": "karura",
"network": "testnet",
"chainId": 11,
"rpcs": ["https://eth-rpc-karura-testnet.aca-staging.network"],
"timeout": 10000
},
"acala": {
"name": "acala",
"network": "testnet",
"chainId": 12,
"rpcs": ["https://eth-rpc-acala-testnet.aca-staging.network"],
"timeout": 10000
}
}
}