Fireblocks XRP SDK - v1.0.0
    Preparing search index...

    Interface XrpTransferOpts

    opts interface for XrpTransfer • destination is a DestinationTransferPeerPath (e.g. OneTimeAddress, PeerPath, etc.) • amount is a string (e.g. "1" for 1 XRP) • optional note (string) to attach to the Fireblocks transaction

    interface XrpTransferOpts {
        amount: string;
        destination: DestinationTransferPeerPath;
        note?: string;
    }
    Index

    Properties

    amount: string
    destination: DestinationTransferPeerPath
    note?: string