Type alias CreateNonceAccountWithSeedParams

CreateNonceAccountWithSeedParams: {
    authorizedPubkey: PublicKey;
    basePubkey: PublicKey;
    fromPubkey: PublicKey;
    lamports: number;
    noncePubkey: PublicKey;
    seed: string;
}

Create nonce account with seed system transaction params

Type declaration

  • authorizedPubkey: PublicKey

    Public key to set as authority of the created nonce account

  • basePubkey: PublicKey

    Base public key to use to derive the address of the nonce account

  • fromPubkey: PublicKey

    The account that will transfer lamports to the created nonce account

  • lamports: number

    Amount of lamports to transfer to the created nonce account

  • noncePubkey: PublicKey

    Public key of the created nonce account

  • seed: string

    Seed to use to derive the address of the nonce account