interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
30 lines (29 loc) • 1.88 kB
TypeScript
import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
/**
* CreateVestingAccount defines a method that enables creating a vesting
* account.
* @name createVestingAccount
* @package cosmos.vesting.v1beta1
* @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
*/
export declare const createVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
/**
* CreatePermanentLockedAccount defines a method that enables creating a permanent
* locked account.
*
* Since: cosmos-sdk 0.46
* @name createPermanentLockedAccount
* @package cosmos.vesting.v1beta1
* @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
*/
export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
/**
* CreatePeriodicVestingAccount defines a method that enables creating a
* periodic vesting account.
*
* Since: cosmos-sdk 0.46
* @name createPeriodicVestingAccount
* @package cosmos.vesting.v1beta1
* @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
*/
export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;