git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 48ac29e384052f91a71431f96b509f0fe11684fb

Files: 48ac29e384052f91a71431f96b509f0fe11684fb / utils.js

415 bytesRaw
1const ethUtil = require('ethereumjs-util')
2const Address = require('./address.js')
3
4var Utils = {}
5
6Utils.isWASMCode = function (code) {
7 return code.slice(0, 4).toString() === new Uint8Array([0, 0x61, 0x73, 0x6d]).toString()
8}
9
10Utils.newAccountAddress = function (sender, nonce) {
11 return new Address('0x' + ethUtil.generateAddress(sender.toString(), nonce.toString()).toString('hex'))
12}
13
14module.exports = Utils
15

Built with git-ssb-web