Skip to content

Commit f4b5912

Browse files
Merge pull request #763 from axone-protocol/dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.50.10
2 parents 193f7c2 + 49981af commit f4b5912

8 files changed

+111
-9
lines changed

docs/command/axoned.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Want to lean more about AXONE network? Complete documentation is available at: [
2626
* [axoned genesis](axoned_genesis.md) - Application's genesis-related subcommands
2727
* [axoned init](axoned_init.md) - Initialize private validator, p2p, genesis, and application configuration files
2828
* [axoned keys](axoned_keys.md) - Manage your application's keys
29+
* [axoned module-hash-by-height](axoned_module-hash-by-height.md) - Get module hashes at a given height
2930
* [axoned prune](axoned_prune.md) - Prune app history states by keeping the recent heights and deleting old heights
3031
* [axoned query](axoned_query.md) - Querying subcommands
3132
* [axoned rollback](axoned_rollback.md) - rollback Cosmos SDK and CometBFT state by one height

docs/command/axoned_debug_pubkey-raw.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@ Decode a ED25519 or secp256k1 pubkey from hex, base64, or bech32
55
### Synopsis
66

77
Decode a pubkey from hex, base64, or bech32.
8-
Example:
9-
$ axoned debug pubkey-raw TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz
10-
$ axoned debug pubkey-raw cosmos1e0jnq2sun3dzjh8p2xq95kk0expwmd7shwjpfg
118

129
```
1310
axoned debug pubkey-raw [pubkey] -t [{ed25519, secp256k1}] [flags]
1411
```
1512

13+
### Examples
14+
15+
```
16+
17+
axoned debug pubkey-raw 8FCA9D6D1F80947FD5E9A05309259746F5F72541121766D5F921339DD061174A
18+
axoned debug pubkey-raw j8qdbR+AlH/V6aBTCSWXRvX3JUESF2bV+SEzndBhF0o=
19+
axoned debug pubkey-raw cosmospub1zcjduepq3l9f6mglsz28l40f5pfsjfvhgm6lwf2pzgtkd40eyyeem5rpza9q47axrz
20+
21+
```
22+
1623
### Options
1724

1825
```

docs/command/axoned_debug_raw-bytes.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ Convert raw bytes output (eg. [10 21 13 255]) to hex
66

77
Convert raw-bytes to hex.
88

9-
Example:
10-
$ axoned debug raw-bytes [72 101 108 108 111 44 32 112 108 97 121 103 114 111 117 110 100]
9+
```
10+
axoned debug raw-bytes <raw-bytes> [flags]
11+
```
12+
13+
### Examples
1114

1215
```
13-
axoned debug raw-bytes [raw-bytes] [flags]
16+
axoned debug raw-bytes '[72 101 108 108 111 44 32 112 108 97 121 103 114 111 117 110 100]'
1417
```
1518

1619
### Options

docs/command/axoned_genesis.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ axoned genesis [flags]
1616

1717
* [axoned](axoned.md) - Axone - Orchestration Layer for AI
1818
* [axoned genesis add-genesis-account](axoned_genesis_add-genesis-account.md) - Add a genesis account to genesis.json
19+
* [axoned genesis bulk-add-genesis-account](axoned_genesis_bulk-add-genesis-account.md) - Bulk add genesis accounts to genesis.json
1920
* [axoned genesis collect-gentxs](axoned_genesis_collect-gentxs.md) - Collect genesis txs and output a genesis.json file
2021
* [axoned genesis gentx](axoned_genesis_gentx.md) - Generate a genesis tx carrying a self delegation
2122
* [axoned genesis migrate](axoned_genesis_migrate.md) - Migrate genesis to a specified target version
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## axoned genesis bulk-add-genesis-account
2+
3+
Bulk add genesis accounts to genesis.json
4+
5+
### Synopsis
6+
7+
Add genesis accounts in bulk to genesis.json. The provided account must specify
8+
the account address and a list of initial coins. The list of initial tokens must
9+
contain valid denominations. Accounts may optionally be supplied with vesting parameters.
10+
11+
```
12+
axoned genesis bulk-add-genesis-account [/file/path.json] [flags]
13+
```
14+
15+
### Examples
16+
17+
```
18+
bulk-add-genesis-account accounts.json
19+
where accounts.json is:
20+
[
21+
{
22+
"address": "cosmos139f7kncmglres2nf3h4hc4tade85ekfr8sulz5",
23+
"coins": [
24+
{ "denom": "umuon", "amount": "100000000" },
25+
{ "denom": "stake", "amount": "200000000" }
26+
]
27+
},
28+
{
29+
"address": "cosmos1e0jnq2sun3dzjh8p2xq95kk0expwmd7shwjpfg",
30+
"coins": [
31+
{ "denom": "umuon", "amount": "500000000" }
32+
],
33+
"vesting_amt": [
34+
{ "denom": "umuon", "amount": "400000000" }
35+
],
36+
"vesting_start": 1724711478,
37+
"vesting_end": 1914013878
38+
}
39+
]
40+
41+
```
42+
43+
### Options
44+
45+
```
46+
--append append the coins to an account already in the genesis.json file
47+
--grpc-addr string the gRPC endpoint to use for this chain
48+
--grpc-insecure allow gRPC over insecure channels, if not the server must use TLS
49+
--height int Use a specific height to query state at (this can error if the node is pruning state)
50+
-h, --help help for bulk-add-genesis-account
51+
--home string The application home directory (default "/home/john/.axoned")
52+
--node string <host>:<port> to CometBFT RPC interface for this chain (default "tcp://localhost:26657")
53+
-o, --output string Output format (text|json) (default "text")
54+
```
55+
56+
### SEE ALSO
57+
58+
* [axoned genesis](axoned_genesis.md) - Application's genesis-related subcommands
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## axoned module-hash-by-height
2+
3+
Get module hashes at a given height
4+
5+
### Synopsis
6+
7+
Get module hashes at a given height. This command is useful for debugging and verifying the state of the application at a given height. Daemon should not be running when calling this command.
8+
9+
```
10+
axoned module-hash-by-height [height] [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
axoned module-hash-by-height 16841115
17+
```
18+
19+
### Options
20+
21+
```
22+
--grpc-addr string the gRPC endpoint to use for this chain
23+
--grpc-insecure allow gRPC over insecure channels, if not the server must use TLS
24+
--height int Use a specific height to query state at (this can error if the node is pruning state)
25+
-h, --help help for module-hash-by-height
26+
--node string <host>:<port> to CometBFT RPC interface for this chain (default "tcp://localhost:26657")
27+
-o, --output string Output format (text|json) (default "text")
28+
```
29+
30+
### SEE ALSO
31+
32+
* [axoned](axoned.md) - Axone - Orchestration Layer for AI

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/cometbft/cometbft v0.38.12
2626
github.com/cosmos/cosmos-db v1.0.2
2727
github.com/cosmos/cosmos-proto v1.0.0-beta.5
28-
github.com/cosmos/cosmos-sdk v0.50.9
28+
github.com/cosmos/cosmos-sdk v0.50.10
2929
github.com/cosmos/gogoproto v1.7.0
3030
github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd
3131
github.com/cosmos/ibc-go/modules/capability v1.0.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ github.com/cosmos/cosmos-db v1.0.2 h1:hwMjozuY1OlJs/uh6vddqnk9j7VamLv+0DBlbEXbAK
417417
github.com/cosmos/cosmos-db v1.0.2/go.mod h1:Z8IXcFJ9PqKK6BIsVOB3QXtkKoqUOp1vRvPT39kOXEA=
418418
github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA=
419419
github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec=
420-
github.com/cosmos/cosmos-sdk v0.50.9 h1:gt2usjz0H0qW6KwAxWw7ZJ3XU8uDwmhN+hYG3nTLeSg=
421-
github.com/cosmos/cosmos-sdk v0.50.9/go.mod h1:TMH6wpoYBcg7Cp5BEg8fneLr+8XloNQkf2MRNF9V6JE=
420+
github.com/cosmos/cosmos-sdk v0.50.10 h1:zXfeu/z653tWZARr/jESzAEiCUYjgJwwG4ytnYWMoDM=
421+
github.com/cosmos/cosmos-sdk v0.50.10/go.mod h1:6Eesrx3ZE7vxBZWpK++30H+Uc7Q4ahQWCL7JKU/LEdU=
422422
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
423423
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
424424
github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE=

0 commit comments

Comments
 (0)