@codegame.dev/wallet-cli
Version:
A CLI tool for managing wallets across multiple blockchains, supporting operations like wallet creation, balance checking, transfers, and fee estimation.
11 lines (10 loc) • 681 B
TypeScript
import { EstimateFeeParams, EstimateFeeResponse, GetBalanceParams, GetBalanceResponse, TransferParams, TransferResponse } from ".";
export declare const getBalance: (params: GetBalanceParams) => Promise<GetBalanceResponse>;
export declare const transfer: (params: TransferParams) => Promise<TransferResponse>;
export declare const estimateFee: (params: EstimateFeeParams) => Promise<EstimateFeeResponse>;
declare const _default: {
getBalance: (params: GetBalanceParams) => Promise<GetBalanceResponse>;
transfer: (params: TransferParams) => Promise<TransferResponse>;
estimateFee: (params: EstimateFeeParams) => Promise<EstimateFeeResponse>;
};
export default _default;