-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.example.toml
35 lines (34 loc) · 1.33 KB
/
config.example.toml
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
# options parameter for file with env variables. Remove if you don't need it
dotenv = '.env'
# transports configuration
[[transport]]
# The unique name of the transport
key = 'telegram_cosmos_proposals'
# transport type
type = 'telegram'
# telegram chat id. Put your chat id here. Can be channel or your id for direct messages
chat-id = '<id>'
# Networks configuration
[[network]]
# The unique name of the network (Required)
key = 'cosmos_mainnet'
# The chain id (Required)
chain-id = 'cosmoshub-4'
# The coin type (Required). This default value for most cosmos based networks. Check the your network docs to provide the correct value
hd-path = "m/44'/118'/0'/0/0"
# denom (Required)
denom = 'uatom'
# Address prefix (Required)
prefix = 'cosmos'
# Decimals (Required)
decimals = 6
wallet-key = ['my_wallet']
# RPC endpoints (Optional)
net = { rpc = ['https://rpc.cosmos.directory/cosmoshub'] }
# Lava protocol configuration (Optinal)
# lava = { chain = "COS5" }
# `lava` or `net`.One of this configuration is required
# This will be used to create links to the block explorer. Links to proposals and trx result
explorer = { proposal = 'https://www.mintscan.io/cosmos/proposals/:id', trx = 'https://www.mintscan.io/cosmos/txs/:hash' }
# Specify the transport to send notifications. Which is defined above (Required)
transport = 'telegram_cosmos_proposals'