github.com/lino-network/lino@v0.6.11/x/account/types/keys.go (about)

     1  package types
     2  
     3  const (
     4  	// ModuleKey is the name of the module
     5  	ModuleName = "account"
     6  
     7  	// RouterKey is the message route for account
     8  	RouterKey = ModuleName
     9  
    10  	// QuerierRoute is the querier route for account
    11  	QuerierRoute = ModuleName
    12  
    13  	// query pathes
    14  	QueryAccountInfo            = "info"
    15  	QueryAccountBank            = "bank"
    16  	QueryAccountBankByAddress   = "bankByAddress"
    17  	QueryAccountMeta            = "meta"
    18  	QueryAccountPendingCoinDay  = "pendingCoinDay"
    19  	QueryAccountGrantPubKeys    = "grantPubKey"
    20  	QueryAccountAllGrantPubKeys = "allGrantPubKey"
    21  	QueryTxAndAccountSequence   = "txAndSeq"
    22  	QueryPool                   = "pool"
    23  	QuerySupply                 = "supply"
    24  )