mirror of https://github.com/status-im/web3.js.git
version 0.12.2 && gulp
This commit is contained in:
parent
ae479960b3
commit
f18b532259
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "web3",
|
||||
"namespace": "ethereum",
|
||||
"version": "0.12.1",
|
||||
"version": "0.12.2",
|
||||
"description": "Ethereum Compatible JavaScript API",
|
||||
"main": [
|
||||
"./dist/web3.js",
|
||||
|
|
|
@ -2397,7 +2397,7 @@ module.exports = {
|
|||
|
||||
},{"bignumber.js":"bignumber.js","utf8":49}],21:[function(require,module,exports){
|
||||
module.exports={
|
||||
"version": "0.12.1"
|
||||
"version": "0.12.2"
|
||||
}
|
||||
|
||||
},{}],22:[function(require,module,exports){
|
||||
|
@ -4299,7 +4299,7 @@ Iban.isValid = function (iban) {
|
|||
* @returns {Boolean} true if it is, otherwise false
|
||||
*/
|
||||
Iban.prototype.isValid = function () {
|
||||
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30})$/.test(this._iban) &&
|
||||
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30,31})$/.test(this._iban) &&
|
||||
mod9710(iso13616Prepare(this._iban)) === 1;
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2397,7 +2397,7 @@ module.exports = {
|
|||
|
||||
},{"bignumber.js":"bignumber.js","utf8":49}],21:[function(require,module,exports){
|
||||
module.exports={
|
||||
"version": "0.12.1"
|
||||
"version": "0.12.2"
|
||||
}
|
||||
|
||||
},{}],22:[function(require,module,exports){
|
||||
|
@ -4299,7 +4299,7 @@ Iban.isValid = function (iban) {
|
|||
* @returns {Boolean} true if it is, otherwise false
|
||||
*/
|
||||
Iban.prototype.isValid = function () {
|
||||
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30})$/.test(this._iban) &&
|
||||
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30,31})$/.test(this._iban) &&
|
||||
mod9710(iso13616Prepare(this._iban)) === 1;
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"version": "0.12.1"
|
||||
"version": "0.12.2"
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* jshint ignore:start */
|
||||
Package.describe({
|
||||
name: 'ethereum:web3',
|
||||
version: '0.12.1',
|
||||
version: '0.12.2',
|
||||
summary: 'Ethereum JavaScript API, middleware to talk to a ethreum node over RPC',
|
||||
git: 'https://github.com/ethereum/ethereum.js',
|
||||
// By default, Meteor will default to using README.md for documentation.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "web3",
|
||||
"namespace": "ethereum",
|
||||
"version": "0.12.1",
|
||||
"version": "0.12.2",
|
||||
"description": "Ethereum JavaScript API, middleware to talk to a ethereum node over RPC",
|
||||
"main": "./index.js",
|
||||
"directories": {
|
||||
|
|
Loading…
Reference in New Issue