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

    Type Alias AssignWithSeedParams

    Assign account with seed system transaction params

    type AssignWithSeedParams = {
        accountPubkey: PublicKey;
        basePubkey: PublicKey;
        programId: PublicKey;
        seed: string;
    }
    Index
    accountPubkey: PublicKey

    Public key of the account which will be assigned a new owner

    basePubkey: PublicKey

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

    programId: PublicKey

    Public key of the program to assign as the owner

    seed: string

    Seed to use to derive the address of the assigned account