Type alias TransferSolBuilderParams

TransferSolBuilderParams: { amount: SolAmount; to: PublicKey; from?: undefined | Signer; basePubkey?: undefined | PublicKey; seed?: undefined | string; instructionKey?: undefined | string }

Type declaration

  • amount: SolAmount

    The amount of SOLs to send.

  • to: PublicKey

    The address of the account that receives the SOLs.

  • Optional from?: undefined | Signer

    The account that sends the SOLs as a Signer.

    Default Value

    metaplex.identity()

  • Optional basePubkey?: undefined | PublicKey

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

    Default Value

    Defaults to not being used.

  • Optional seed?: undefined | string

    Seed to use to derive the funding account address.

    Default Value

    Defaults to not being used.

  • Optional instructionKey?: undefined | string

    A key to distinguish the instruction that transfers some SOL.

Generated using TypeDoc