Interface UpdateFieldInstruction

If the field does not exist on the account, it will be created. If the field does exist, it will be overwritten.

interface UpdateFieldInstruction {
    field: string | Field;
    metadata: PublicKey;
    programId: PublicKey;
    updateAuthority: PublicKey;
    value: string;
}

Properties

field: string | Field
metadata: PublicKey
programId: PublicKey
updateAuthority: PublicKey
value: string

Generated using TypeDoc