UNPKG

@chorus-one/ethereum

Version:

All-in-one toolkit for building staking dApps on Ethereum network

11 lines (10 loc) 267 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toHexString = void 0; const toHexString = (value) => { if (value.startsWith('0x')) { return value; } return ('0x' + value); }; exports.toHexString = toHexString;