@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Interface BaseTransferParams

    The properties shared by all transfers on Salt. value is the raw amount in the token's smallest unit (wei for native, token-decimals for ERC20). Callers convert with viem's parseEther / parseUnits as needed.

    interface BaseTransferParams {
        accountId: string;
        chainId: number;
        publicClient: ViemPublicClientLike;
        to: string;
        userAddress: `0x${string}`;
        value: bigint;
        walletClient: AttachedWalletClient;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accountId: string
    chainId: number
    publicClient: ViemPublicClientLike
    to: string
    userAddress: `0x${string}`
    value: bigint
    walletClient: AttachedWalletClient