UNPKG

viem

Version:

TypeScript Interface for Ethereum

17 lines 625 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setBalance = setBalance; const toHex_js_1 = require("../../utils/encoding/toHex.js"); async function setBalance(client, { address, value }) { if (client.mode === 'ganache') await client.request({ method: 'evm_setAccountBalance', params: [address, (0, toHex_js_1.numberToHex)(value)], }); else await client.request({ method: `${client.mode}_setBalance`, params: [address, (0, toHex_js_1.numberToHex)(value)], }); } //# sourceMappingURL=setBalance.js.map