near-api-js - v7.0.4
    Preparing search index...

    Type Alias NonDelegateAction

    NonDelegateAction:
        | { CreateAccount: CreateAccountAction }
        | { DeployContract: DeployContractAction }
        | { FunctionCall: FunctionCallAction }
        | { Transfer: TransferAction }
        | { Stake: StakeAction }
        | { AddKey: AddKeyAction }
        | { DeleteKey: DeleteKeyAction }
        | { DeleteAccount: DeleteAccountAction }
        | { DeployGlobalContract: DeployGlobalContractAction }
        | { UseGlobalContract: UseGlobalContractAction }
        | { DeterministicStateInit: DeterministicStateInitAction }
        | { AddGasKey: AddGasKeyAction }
        | { DeleteGasKey: DeleteGasKeyAction }
        | { TransferToGasKey: TransferToGasKeyAction }

    An Action that can be included in a transaction or receipt, excluding delegate actions. This type represents all possible action types except DelegateAction to prevent infinite recursion in meta-transactions.