Interface iCoinTransfer<T>

interface iCoinTransfer<T> {
    coins: iCosmosCoin<T>[];
    to: string;
}

Type Parameters

Implemented by

Properties

Properties

coins: iCosmosCoin<T>[]

The coins

to: string

The recipient of the coin transfer. This should be a Bech32 Cosmos address.