@solana/web3.js
    Preparing search index...

    Type Alias CreateNonceAccountWithSeedParams

    Create nonce account with seed system transaction params

    type CreateNonceAccountWithSeedParams = {
        authorizedPubkey: PublicKey;
        basePubkey: PublicKey;
        fromPubkey: PublicKey;
        lamports: number;
        noncePubkey: PublicKey;
        seed: string;
    }
    Index
    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