Type Alias ExtendableProtectedActions<transport, chain, account>

ExtendableProtectedActions<transport, chain, account>: Pick<PublicActions<transport, chain, account>,
    | "call"
    | "createContractEventFilter"
    | "createEventFilter"
    | "estimateContractGas"
    | "estimateGas"
    | "getBlock"
    | "getBlockNumber"
    | "getChainId"
    | "getContractEvents"
    | "getEnsText"
    | "getFilterChanges"
    | "getGasPrice"
    | "getLogs"
    | "getTransaction"
    | "getTransactionCount"
    | "getTransactionReceipt"
    | "prepareTransactionRequest"
    | "readContract"
    | "sendRawTransaction"
    | "simulateContract"
    | "uninstallFilter"
    | "watchBlockNumber"
    | "watchContractEvent"> & Pick<WalletActions<chain, account>, "sendTransaction" | "writeContract">

Type Parameters