import { expect, test } from "vitest"; import * as exports from "./index.js"; test("exports", () => { expect(Object.keys(exports)).toMatchInlineSnapshot(` [ "addChain", "call", "createAccessList", "createBlockFilter", "createContractEventFilter", "createEventFilter", "createPendingTransactionFilter", "defaultPrepareTransactionRequestParameters", "deployContract", "dropTransaction", "dumpState", "estimateContractGas", "estimateFeesPerGas", "estimateGas", "estimateMaxPriorityFeePerGas", "getAddresses", "getAutomine", "getBalance", "getBlobBaseFee", "getBlock", "getBlockNumber", "getBlockTransactionCount", "getBytecode", "getCallsStatus", "getCapabilities", "getChainId", "getCode", "getContractEvents", "getEip712Domain", "getEnsAddress", "getEnsAvatar", "getEnsName", "getEnsResolver", "getEnsText", "getFeeHistory", "getFilterChanges", "getFilterLogs", "getGasPrice", "getLogs", "getPermissions", "getProof", "getStorageAt", "getTransaction", "getTransactionConfirmations", "getTransactionCount", "getTransactionReceipt", "getTxpoolContent", "getTxpoolStatus", "impersonateAccount", "increaseTime", "inspectTxpool", "loadState", "mine", "multicall", "prepareAuthorization", "prepareTransactionRequest", "readContract", "removeBlockTimestampInterval", "requestAddresses", "requestPermissions", "reset", "revert", "sendCalls", "sendRawTransaction", "sendTransaction", "sendUnsignedTransaction", "setAutomine", "setBalance", "setBlockGasLimit", "setBlockTimestampInterval", "setCode", "setCoinbase", "setIntervalMining", "setLoggingEnabled", "setMinGasPrice", "setNextBlockBaseFeePerGas", "setNextBlockTimestamp", "setNonce", "setRpcUrl", "setStorageAt", "showCallsStatus", "signAuthorization", "signMessage", "signTransaction", "signTypedData", "simulate", "simulateBlocks", "simulateCalls", "simulateContract", "snapshot", "stopImpersonatingAccount", "switchChain", "uninstallFilter", "verifyHash", "verifyMessage", "verifyTypedData", "waitForCallsStatus", "waitForTransactionReceipt", "watchAsset", "watchBlockNumber", "watchBlocks", "watchContractEvent", "watchEvent", "watchPendingTransactions", "writeContract", "AVALANCHE_CHAIN_IDS", "AVALANCHE_NETWORK_IDS", "P_CHAIN_MAINNET_ID", "P_CHAIN_FUJI_ID", "P_CHAIN_LOCAL_ID", "P_CHAIN_ALIAS", "X_CHAIN_MAINNET_ID", "X_CHAIN_FUJI_ID", "X_CHAIN_LOCAL_ID", "X_CHAIN_ALIAS", "C_CHAIN_MAINNET_ID", "C_CHAIN_FUJI_ID", "C_CHAIN_LOCAL_ID", "C_CHAIN_ALIAS", "MAINNET_NETWORK_ID", "TESTNET_NETWORK_ID", "LOCAL_NETWORK_ID", ] `); });