Updated dist files.

This commit is contained in:
Richard Moore 2018-08-04 19:40:06 -04:00
parent fcee62a3d9
commit e3b04bb3fc
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295
10 changed files with 18 additions and 12 deletions

2
_version.d.ts vendored

@ -1 +1 @@
export declare const version = "4.0.0-beta.10";
export declare const version = "4.0.0-beta.11";

@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "4.0.0-beta.10";
exports.version = "4.0.0-beta.11";

7
dist/ethers.js vendored

@ -1,7 +1,7 @@
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ethers = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "4.0.0-beta.10";
exports.version = "4.0.0-beta.11";
},{}],2:[function(require,module,exports){
'use strict';
@ -12758,6 +12758,7 @@ function getTypes(coders) {
}
*/
function splitNesting(value) {
value = value.trim();
var result = [];
var accum = '';
var depth = 0;
@ -12780,7 +12781,9 @@ function splitNesting(value) {
}
}
}
result.push(accum);
if (accum) {
result.push(accum);
}
return result;
}
// @TODO: Is there a way to return "class"?

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -138,7 +138,7 @@ declare module 'ethers/utils/shims' {
}
declare module 'ethers/_version' {
export const version = "4.0.0-beta.10";
export const version = "4.0.0-beta.11";
}
declare module 'ethers/contracts/contract' {
@ -492,7 +492,7 @@ declare module 'ethers/wallet/wallet' {
getBalance(blockTag?: BlockTag): Promise<BigNumber>;
getTransactionCount(blockTag?: BlockTag): Promise<number>;
sendTransaction(transaction: TransactionRequest): Promise<TransactionResponse>;
encrypt(password: Arrayish | string, options: any, progressCallback: ProgressCallback): Promise<string>;
encrypt(password: Arrayish | string, options?: any, progressCallback?: ProgressCallback): Promise<string>;
/**
* Static methods to create Wallet instances.
*/

@ -1,6 +1,6 @@
{
"name": "ethers",
"version": "4.0.0-beta.10",
"version": "4.0.0-beta.11",
"description": "Ethereum wallet library.",
"main": "./index.js",
"types": "./index.d.ts",

@ -1 +1 @@
export const version = "4.0.0-beta.10";
export const version = "4.0.0-beta.11";

@ -805,6 +805,7 @@ function getTypes(coders) {
}
*/
function splitNesting(value) {
value = value.trim();
var result = [];
var accum = '';
var depth = 0;
@ -827,7 +828,9 @@ function splitNesting(value) {
}
}
}
result.push(accum);
if (accum) {
result.push(accum);
}
return result;
}
// @TODO: Is there a way to return "class"?

2
wallet/wallet.d.ts vendored

@ -25,7 +25,7 @@ export declare class Wallet extends AbstractSigner {
getBalance(blockTag?: BlockTag): Promise<BigNumber>;
getTransactionCount(blockTag?: BlockTag): Promise<number>;
sendTransaction(transaction: TransactionRequest): Promise<TransactionResponse>;
encrypt(password: Arrayish | string, options: any, progressCallback: ProgressCallback): Promise<string>;
encrypt(password: Arrayish | string, options?: any, progressCallback?: ProgressCallback): Promise<string>;
/**
* Static methods to create Wallet instances.
*/