UNPKG

viem

Version:

TypeScript Interface for Ethereum

15 lines 712 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getProof = getProof; const toHex_js_1 = require("../../utils/encoding/toHex.js"); const proof_js_1 = require("../../utils/formatters/proof.js"); async function getProof(client, { address, blockNumber, blockTag: blockTag_, storageKeys, }) { const blockTag = blockTag_ ?? 'latest'; const blockNumberHex = blockNumber !== undefined ? (0, toHex_js_1.numberToHex)(blockNumber) : undefined; const proof = await client.request({ method: 'eth_getProof', params: [address, storageKeys, blockNumberHex || blockTag], }); return (0, proof_js_1.formatProof)(proof); } //# sourceMappingURL=getProof.js.map