Skip to content

Release 0.5.0

Compare
Choose a tag to compare
@debris debris released this 30 May 06:03

changes:

  • crypto-js is used to calculate sha3
  • default namereg contract is available at web3.eth.namreg
  • iban transactions web3.eth.sendIBANTransaction

migration:

  • usage of web3.sha3

    var str = 'hello world';
    
    // old
    var result = web3.sha3(web3.fromAscii(str));
    console.log(result); // 0xffffff....
    
    // new
    var result= web3.sha3(str);
    console.log(result); // ffff....