0.0.1 • Published 6 years ago

solidity-dict v0.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

Installation

npm i solidity-dict

Usage

const { SolDict } = require('solidity-dict')
const solDict = new SolDict(code) // code is a buffer
const dict = solDict.build()

dict is a hash from name to interesting value, value must be in hex format. For example:

dict = {
  a: '0x55',
  b: '0x88'
}
0.0.1

6 years ago