Updated dist files.

This commit is contained in:
Richard Moore 2018-02-03 21:02:34 -05:00
parent da852d0012
commit f611dba0ad
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295
12 changed files with 36 additions and 12 deletions

View File

@ -5088,6 +5088,8 @@ function keccak256(data) {
module.exports = keccak256;
},{"./convert.js":8,"js-sha3":14}],10:[function(require,module,exports){
'use strict';
function defineProperty(object, name, value) {
Object.defineProperty(object, name, {
enumerable: true,

File diff suppressed because one or more lines are too long

View File

@ -4087,6 +4087,8 @@ module.exports = namehash;
},{"./convert":7,"./keccak256":10,"./utf8":19}],12:[function(require,module,exports){
'use strict';
function defineProperty(object, name, value) {
Object.defineProperty(object, name, {
enumerable: true,
@ -4294,6 +4296,10 @@ function _pack(type, value, isArray) {
return utf8.toUtf8Bytes(value);
case 'bytes':
return convert.arrayify(value);
case 'bool':
value = (value ? '0x01': '0x00');
if (isArray) { return convert.padZeros(value, 32); }
return convert.arrayify(value);
}
var match = type.match(regexNumber);

File diff suppressed because one or more lines are too long

View File

@ -5876,6 +5876,10 @@ function _pack(type, value, isArray) {
return utf8.toUtf8Bytes(value);
case 'bytes':
return convert.arrayify(value);
case 'bool':
value = (value ? '0x01': '0x00');
if (isArray) { return convert.padZeros(value, 32); }
return convert.arrayify(value);
}
var match = type.match(regexNumber);

File diff suppressed because one or more lines are too long

View File

@ -7315,6 +7315,8 @@ function pbkdf2(password, salt, iterations, keylen, createHmac) {
module.exports = pbkdf2;
},{"./convert":24}],31:[function(require,module,exports){
'use strict';
function defineProperty(object, name, value) {
Object.defineProperty(object, name, {
enumerable: true,
@ -7522,6 +7524,10 @@ function _pack(type, value, isArray) {
return utf8.toUtf8Bytes(value);
case 'bytes':
return convert.arrayify(value);
case 'bool':
value = (value ? '0x01': '0x00');
if (isArray) { return convert.padZeros(value, 32); }
return convert.arrayify(value);
}
var match = type.match(regexNumber);

File diff suppressed because one or more lines are too long

6
dist/ethers.js vendored
View File

@ -10527,6 +10527,8 @@ function pbkdf2(password, salt, iterations, keylen, createHmac) {
module.exports = pbkdf2;
},{"./convert":38}],45:[function(require,module,exports){
'use strict';
function defineProperty(object, name, value) {
Object.defineProperty(object, name, {
enumerable: true,
@ -10734,6 +10736,10 @@ function _pack(type, value, isArray) {
return utf8.toUtf8Bytes(value);
case 'bytes':
return convert.arrayify(value);
case 'bool':
value = (value ? '0x01': '0x00');
if (isArray) { return convert.padZeros(value, 32); }
return convert.arrayify(value);
}
var match = type.match(regexNumber);

6
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "ethers",
"version": "2.2.4",
"version": "2.2.5",
"description": "Ethereum wallet library.",
"main": "index.js",
"scripts": {
@ -12,7 +12,7 @@
"dependencies": {
"ethers-contracts": "2.2.1",
"ethers-providers": "2.1.19",
"ethers-utils": "2.1.9",
"ethers-utils": "2.1.10",
"ethers-wallet": "2.1.8"
},
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "ethers-utils",
"version": "2.1.9",
"version": "2.1.10",
"description": "Utilities for the Ethers Ethereum library.",
"bugs": {
"url": "http://github.com/ethers-io/ethers.js/issues",