AppDescriptor describes a cosmos-sdk based application

interface AppDescriptor {
    authn?: AuthnDescriptor;
    chain?: ChainDescriptor;
    codec?: CodecDescriptor;
    configuration?: ConfigurationDescriptor;
    queryServices?: QueryServicesDescriptor;
    tx?: TxDescriptor;
}

Properties

AuthnDescriptor provides information on how to authenticate transactions on the application NOTE: experimental and subject to change in future releases.

chain provides the chain descriptor

codec provides metadata information regarding codec related types

configuration?: ConfigurationDescriptor

configuration provides metadata information regarding the sdk.Config type

queryServices?: QueryServicesDescriptor

query_services provides metadata information regarding the available queriable endpoints

tx provides metadata information regarding how to send transactions to the given application