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

    Interface NativeTransferParams

    Parameters for a native-currency transfer (e.g. ETH). value is the wei amount (use viem's parseEther('0.1')).

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

    Hierarchy (View Summary)

    Index

    Properties

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