Some checks are pending
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
128 lines
5.3 KiB
Go
128 lines
5.3 KiB
Go
package bank
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
|
|
bankv1beta1 "cosmossdk.io/api/cosmos/bank/v1beta1"
|
|
|
|
"git.cw.tr/mukan-network/mukan-sdk/version"
|
|
)
|
|
|
|
// AutoCLIOptions implements the autocli.HasAutoCLIConfig interface.
|
|
func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
|
|
return &autocliv1.ModuleOptions{
|
|
Query: &autocliv1.ServiceCommandDescriptor{
|
|
Service: bankv1beta1.Query_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Balance",
|
|
Use: "balance [address] [denom]",
|
|
Short: "Query an account balance by address and denom",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "address"}, {ProtoField: "denom"}},
|
|
},
|
|
{
|
|
RpcMethod: "AllBalances",
|
|
Use: "balances [address]",
|
|
Short: "Query for account balances by address",
|
|
Long: "Query the total balance of an account or of a specific denomination.",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "address"}},
|
|
},
|
|
{
|
|
RpcMethod: "SpendableBalances",
|
|
Use: "spendable-balances [address]",
|
|
Short: "Query for account spendable balances by address",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "address"}},
|
|
},
|
|
{
|
|
RpcMethod: "SpendableBalanceByDenom",
|
|
Use: "spendable-balance [address] [denom]",
|
|
Short: "Query the spendable balance of a single denom for a single account.",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "address"}, {ProtoField: "denom"}},
|
|
},
|
|
{
|
|
RpcMethod: "TotalSupply",
|
|
Use: "total-supply",
|
|
Alias: []string{"total"},
|
|
Short: "Query the total supply of coins of the chain",
|
|
Long: "Query total supply of coins that are held by accounts in the chain. To query for the total supply of a specific coin denomination use --denom flag.",
|
|
},
|
|
{
|
|
RpcMethod: "SupplyOf",
|
|
Use: "total-supply-of [denom]",
|
|
Short: "Query the supply of a single coin denom",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "denom"}},
|
|
},
|
|
{
|
|
RpcMethod: "Params",
|
|
Use: "params",
|
|
Short: "Query the current bank parameters",
|
|
},
|
|
{
|
|
RpcMethod: "DenomMetadata",
|
|
Use: "denom-metadata [denom]",
|
|
Short: "Query the client metadata of a given coin denomination",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "denom"}},
|
|
},
|
|
{
|
|
RpcMethod: "DenomsMetadata",
|
|
Use: "denoms-metadata",
|
|
Short: "Query the client metadata for all registered coin denominations",
|
|
},
|
|
{
|
|
RpcMethod: "DenomOwners",
|
|
Use: "denom-owners [denom]",
|
|
Short: "Query for all account addresses that own a particular token denomination.",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "denom"}},
|
|
},
|
|
{
|
|
RpcMethod: "SendEnabled",
|
|
Use: "send-enabled [denom1 ...]",
|
|
Short: "Query for send enabled entries",
|
|
Long: strings.TrimSpace(`Query for send enabled entries that have been specifically set.
|
|
|
|
To look up one or more specific denoms, supply them as arguments to this command.
|
|
To look up all denoms, do not provide any arguments.`,
|
|
),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "denoms", Varargs: true}},
|
|
},
|
|
},
|
|
},
|
|
Tx: &autocliv1.ServiceCommandDescriptor{
|
|
Service: bankv1beta1.Msg_ServiceDesc.ServiceName,
|
|
EnhanceCustomCommand: true,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Send",
|
|
Use: "send [from_key_or_address] [to_address] [amount]",
|
|
Short: "Send funds from one account to another.",
|
|
Long: `Send funds from one account to another.
|
|
Note, the '--from' flag is ignored as it is implied from [from_key_or_address].
|
|
When using '--dry-run' a key name cannot be used, only a bech32 address.
|
|
Note: multiple coins can be send by space separated.`,
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "from_address"}, {ProtoField: "to_address"}, {ProtoField: "amount", Varargs: true}},
|
|
},
|
|
{
|
|
RpcMethod: "UpdateParams",
|
|
Use: "update-params-proposal [params]",
|
|
Short: "Submit a proposal to update bank module params. Note: the entire params must be provided.",
|
|
Example: fmt.Sprintf(`%s tx bank update-params-proposal '{ "default_send_enabled": true }'`, version.AppName),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "params"}},
|
|
GovProposal: true,
|
|
},
|
|
{
|
|
RpcMethod: "SetSendEnabled",
|
|
Use: "set-send-enabled-proposal [send_enabled]",
|
|
Short: "Submit a proposal to set/update/delete send enabled entries",
|
|
Example: fmt.Sprintf(`%s tx bank set-send-enabled-proposal '{"denom":"stake","enabled":true}'`, version.AppName),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "send_enabled", Varargs: true}},
|
|
FlagOptions: map[string]*autocliv1.FlagOptions{
|
|
"use_default_for": {Name: "use-default-for", Usage: "Use default for the given denom (delete a send enabled entry)"},
|
|
},
|
|
GovProposal: true,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|