-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathquery-token-alias.sh
More file actions
58 lines (53 loc) · 955 Bytes
/
query-token-alias.sh
File metadata and controls
58 lines (53 loc) · 955 Bytes
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
#!/bin/bash
# command
sekaid query tokens alias KEX
# response
# allowed_vote_types:
# - "yes"
# - "no"
# decimals: 6
# denoms:
# - ukex
# enactment: 0
# expiration: 0
# icon: myiconurl
# name: Kira
# status: undefined
# symbol: KEX
# command
sekaid query tokens alias KE
# response
# Error: KE symbol does not exist
# command
sekaid query tokens all-aliases --chain-id=testing --home=$HOME/.sekaid
# response
# data:
# - allowed_vote_types:
# - "yes"
# - "no"
# decimals: 6
# denoms:
# - ukex
# enactment: 0
# expiration: 0
# icon: myiconurl
# name: Kira
# status: undefined
# symbol: KEX
# command
sekaid query tokens aliases-by-denom ukex --chain-id=testing --home=$HOME/.sekaid
# response
# data:
# ukex:
# allowed_vote_types:
# - "yes"
# - "no"
# decimals: 6
# denoms:
# - ukex
# enactment: 0
# expiration: 0
# icon: myiconurl
# name: Kira
# status: undefined
# symbol: KEX