Interface AccountResponse

interface AccountResponse {
    account: {
        @type: string;
        base_account: {
            account_number: string;
            address: string;
            pub_key?: {
                @type: string;
                key: string;
            };
            sequence: string;
        };
    };
}

Properties

Properties

account: {
    @type: string;
    base_account: {
        account_number: string;
        address: string;
        pub_key?: {
            @type: string;
            key: string;
        };
        sequence: string;
    };
}