All information for developers using vapjs-abi
should consult this document.
npm install --save vapjs-abi
const abi = require('vapjs-abi');
const SimpleStoreABI = [{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"set","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"get","outputs":[{"name":"storeValue","type":"uint256"}],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_newValue","type":"uint256"},{"indexed":false,"name":"_sender","type":"address"}],"name":"SetComplete","type":"event"}];
const setInputBytecode = abi.encodeMethod(SimpleStoreABI[0], [24000]);
// returns 0x60fe47b10000000000000000000000000000000000000000000000000000000000005dc0
const setOutputBytecode = abi.decodeMethod(SimpleStoreABI[0], "0x0000000000000000000000000000000000000000000000000000000000000001");
// returns Result { '0': true }
const getInputBytecode = abi.encodeMethod(SimpleStoreABI[1], []);
// returns 0x6d4ce63c
const getMethodOutputBytecode = abi.decodeMethod(SimpleStoreABI[1], "0x000000000000000000000000000000000000000000000000000000000000b26e");
// returns Result { '0': <BN: b26e>, storeValue: <BN: b26e> }
const SetCompleteInputBytecode = abi.encodeEvent(SimpleStoreABI[2], [24000, "0xca35b7d915458ef540ade6068dfe2f44e8fa733c"]);
// returns 0x10e8e9bc0000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000ca35b7d915458ef540ade6068dfe2f44e8fa733c
const event = abi.decodeEvent(SimpleStoreABI[2], "0x0000000000000000000000000000000000000000000000000000000000000d7d000000000000000000000000ca35b7d915458ef540ade6068dfe2f44e8fa733c");
/* returns Result {
'0': <BN: d7d>,
'1': '0xca35b7d915458ef540ade6068dfe2f44e8fa733c',
_newValue: <BN: d7d>,
_sender: '0xca35b7d915458ef540ade6068dfe2f44e8fa733c' }
*/
const event = abi.decodeLogItem(SimpleStoreABI[2], receipt.log[0]);
/* returns Result {
'0': <BN: d7d>,
'1': '0xca35b7d915458ef540ade6068dfe2f44e8fa733c',
_newValue: <BN: d7d>,
_sender: '0xca35b7d915458ef540ade6068dfe2f44e8fa733c' }
*/
const decoder = abi.logDecoder(SimpeStoreABI)
const events = decoder(receipt.logs)
/* returns Result [{
'0': <BN: d7d>,
'1': '0xca35b7d915458ef540ade6068dfe2f44e8fa733c',
_newValue: <BN: d7d>,
_sender: '0xca35b7d915458ef540ade6068dfe2f44e8fa733c'
}]
*/
This module returns BN
s for all quantity values. However, the module supports both BN.js and BigNumber.js modules for encoding, but will only return BN
instances while decoding.
Instead of returning an array of params as decoded from the method, vapjs-abi
will return a safe object that allows you to both get a value at it's return index or optionally, its name.
For example:
{
'0': <BN: d7d>,
'1': '0xca35b7d915458ef540ade6068dfe2f44e8fa733c',
_newValue: <BN: d7d>,
_sender: '0xca35b7d915458ef540ade6068dfe2f44e8fa733c' }
vapjs
has made a policy of using BN.js
across all of its repositories. Here are some of the reasons why:
- lighter than alternatives (BigNumber.js)
- faster than most alternatives, see benchmarks
- used by the Vapereum foundation across all
vaporyjs
repositories - is already used by a critical JS dependency of many vapory packages, see package
elliptic
- purposefully does not support decimals or floats numbers (for greater precision), remember, the Vapereum blockchain cannot and will not support float values or decimal numbers.
vapjs
provides production distributions for all of its modules that are ready for use in the browser right away. Simply include either dist/vapjs-abi.js
or dist/vapjs-abi.min.js
directly into an HTML file to start using this module. Note, an vapAbi
object is made available globally.
<script type="text/javascript" src="vapjs-abi.min.js"></script>
<script type="text/javascript">
new vapAbi(...);
</script>
Note, even though vapjs
should have transformed and polyfilled most of the requirements to run this module across most modern browsers. You may want to look at an additional polyfill for extra support.
Use a polyfill service such as Polyfill.io
to ensure complete cross-browser support:
https://polyfill.io/
Hash: 492bde711463f9215365
Version: webpack 2.1.0-beta.15
Time: 1066ms
Asset Size Chunks Chunk Names
vapjs-abi.js 186 kB 0 [emitted] main
vapjs-abi.js.map 228 kB 0 [emitted] main
+ 14 hidden modules
Hash: a5dc8d1c909ad22a89ba
Version: webpack 2.1.0-beta.15
Time: 4291ms
Asset Size Chunks Chunk Names
vapjs-abi.min.js 83.1 kB 0 [emitted] main
+ 14 hidden modules
- web3.js -- the original Vapereum JS swiss army knife Vapereum Foundation
- vaporyjs -- critical vapory javascript infrastructure Vapereum Foundation
- browser-solidity -- an in browser Solidity IDE Vapereum Foundation
- wafr -- a super simple Solidity testing framework
- truffle -- a solidity/js dApp framework
- embark -- a solidity/js dApp framework
- dapple -- a solidity dApp framework
- chaitherium -- a JS web3 unit testing framework
- contest -- a JS testing framework for contracts
- vapors-wallet -- an amazingly small Vapereum wallet
- metamask -- turns your browser into an Vapereum enabled browser =D
We would like to mention that we are not in any way affiliated with the Vapereum Foundation or vaporyjs
. However, we love the work they do and work with them often to make Vapereum great! Our aim is to support the Vapereum ecosystem with a policy of diversity, modularity, simplicity, transparency, clarity, optimization and extensibility.
Many of our modules use code from web3.js
and the vaporyjs-
repositories. We thank the authors where we can in the relevant repositories. We use their code carefully, and make sure all test coverage is ported over and where possible, expanded on.