UNPKG

@shogun-sdk/money-legos

Version:

Shogun Money Legos: clients and types for quotes, memes, prices, balances, fees, validations, etc.

15 lines 666 B
import { CallStruct } from '../types/multicall.js'; /** * Sends native tokens to specific account. (Collect fees, etc.) * @param amount Amount of native tokens to send * @param account Native tokens receiver */ export declare function sendNativeTokens(amount: bigint, account: `0x${string}`): CallStruct; /** * Sends ERC20 tokens to specific account. (Collect fees, etc.) * @param token ERC20 token address to send * @param amount Amount of ERC20 tokens to send * @param account ERC20 tokens receiver */ export declare function sendERC20Tokens(token: `0x${string}`, amount: bigint, account: `0x${string}`): CallStruct; //# sourceMappingURL=encoding.d.ts.map