UNPKG

ganache-core

Version:

[![npm Version](https://img.shields.io/npm/v/ganache-core.svg)](https://www.npmjs.com/package/ganache-core) [![npm Downloads](https://img.shields.io/npm/dm/ganache-core.svg)](https://www.npmjs.com/package/ganache-core) [![Build Status](https://travis-ci.o

13 lines (11 loc) 248 B
var utils = require("ethereumjs-util"); var to = require("../utils/to"); module.exports = { encode: function(val, cb) { var hex = to.hex(val); cb(null, hex); }, decode: function(json, cb) { cb(null, utils.toBuffer(json)); } };