Type alias TransferSolInput

TransferSolInput: {
    to: PublicKey;
    amount: SolAmount;
    from?: Signer;
    basePubkey?: PublicKey;
    seed?: string;
}

Type declaration

  • to: PublicKey

    The address of the account that receives the SOLs.

  • amount: SolAmount

    The amount of SOLs to send.

  • Optional from?: Signer

    The account that sends the SOLs as a Signer.

    Default Value

    metaplex.identity()

  • Optional basePubkey?: PublicKey

    Base public key to use to derive the funding account address.

    Default Value

    Defaults to not being used.

  • Optional seed?: string

    Seed to use to derive the funding account address.

    Default Value

    Defaults to not being used.

Generated using TypeDoc