Compare commits

...

15 Commits

Author SHA1 Message Date
Richard Moore
bd5e39edf8 Updated changelog. 2021-07-19 23:25:19 -04:00
Richard Moore
9e94c03d01 Updated elliptic library (#1439, #1782). 2021-07-19 23:22:02 -04:00
Richard Moore
278b388307 Added publishConfig to specify dist-tag. 2020-08-25 10:54:52 -04:00
Richard Moore
106f8a2109 Updated changelog. 2020-08-24 20:12:49 -04:00
Richard Moore
f79c9655bd Bumped elliptic version for security updates. 2020-08-24 15:47:06 -04:00
Richard Moore
427e16826e Updated dist files. 2020-04-21 23:17:53 -04:00
Richard Moore
fab14f8f5a Fixed typo in error message (#778). 2020-04-21 23:12:56 -04:00
Richard Moore
e8c89d7ca9 Allow receive type in ABI without warning (#746). 2020-04-21 23:10:15 -04:00
Richard Moore
b1c6575a1b Updated dist files. 2020-03-14 16:59:58 +01:00
Richard Moore
3b7176f322 Fixed typo in error (#722). 2020-03-13 18:37:23 +01:00
Richard Moore
5f7ddcd5d7 Fix EtherscanProvider from throwing outside async context (#729). 2020-03-13 18:34:56 +01:00
Richard Moore
4c9d740cdf Updated dist files. 2020-02-16 16:34:49 -05:00
Richard Moore
a930047a10 Added default API key for EtherscanProvider. 2020-02-16 16:29:29 -05:00
Richard Moore
4e41871fa4 Fixed typo in arguments name for waitForTransaction (#477). 2020-02-16 16:15:00 -05:00
Richard Moore
9947acc349 Partial support for non-English mnemonics for encrypted JSON wallets (#685). 2020-02-16 16:13:24 -05:00
22 changed files with 1260 additions and 1600 deletions

View File

@@ -1,6 +1,36 @@
CHANGELOG
=========
ethers/v4.0.49 (2021-07-19 23:23)
---------------------------------
- Updated elliptic library. ([#1439](https://github.com/ethers-io/ethers.js/issues/1439), [#1782](https://github.com/ethers-io/ethers.js/issues/1782); [9e94c03](https://github.com/ethers-io/ethers.js/commit/9e94c03d01ba51ef9b7b0cec060cb5077dd1b2e7))
ethers/v4.0.48 (2020-08-24 15:44)
---------------------------------
- Bumped elliptic version for security updates. ([f79c965](https://github.com/ethers-io/ethers.js/commit/f79c9655bdd13ada834a6af9f66f93851740a9ab))
ethers/v4.0.47 (2020-04-21 23:15)
---------------------------------
- Fixed typo in error message. ([#778](https://github.com/ethers-io/ethers.js/issues/778); [fab14f8](https://github.com/ethers-io/ethers.js/commit/fab14f8f5a16091810bbe4d35f38e0b976adab7c)).
- Allow receive type in ABI without warning. ([#746](https://github.com/ethers-io/ethers.js/issues/746); [e8c89d7](https://github.com/ethers-io/ethers.js/commit/e8c89d7ca9cea6e20281f614c4fb22f180114622)).
ethers/v4.0.46 (2020-03-14 16:56)
---------------------------------
- Fixed typo in error. ([#722](https://github.com/ethers-io/ethers.js/issues/722); [3b7176f](https://github.com/ethers-io/ethers.js/commit/3b7176f322376f8f42c333082388ef56d1720bae)).
- Fix EtherscanProvider from throwing outside async context. ([#729](https://github.com/ethers-io/ethers.js/issues/729); [5f7ddcd](https://github.com/ethers-io/ethers.js/commit/5f7ddcd5d71d8a1c9efbeef1232c34ef93f92e5a)).
ethers/v4.0.45 (2020-02-16 16:16)
---------------------------------
- Added default API key for EtherscanProvider. ([a930047](https://github.com/ethers-io/ethers.js/commit/a930047a102d3369c4e847d7ef43bd850704cf00)).
- Fixed typo in arguments name for waitForTransaction. ([#477](https://github.com/ethers-io/ethers.js/issues/477); [4e41871](https://github.com/ethers-io/ethers.js/commit/4e41871fa4cf701d714ad73527a367e9ca1d3431)).
- Partial support for non-English mnemonics for encrypted JSON wallets. ([#685](https://github.com/ethers-io/ethers.js/issues/685); [9947acc](https://github.com/ethers-io/ethers.js/commit/9947acc349691734bce8b33d870ab48944a7962f)).
- Updated expected balance in test cases. ([748f896](https://github.com/ethers-io/ethers.js/commit/748f89660ac4bf60175f936da755cf1a0d370f46)).
ethers/v4.0.44 (2020-01-29 22:01)
---------------------------------

2
_version.d.ts vendored
View File

@@ -1 +1 @@
export declare const version = "4.0.44";
export declare const version = "4.0.49";

View File

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

456
dist/ethers.js vendored

File diff suppressed because it is too large Load Diff

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

View File

@@ -266,7 +266,7 @@ declare module 'ethers/utils/shims' {
}
declare module 'ethers/_version' {
export const version = "4.0.44";
export const version = "4.0.49";
}
declare module 'ethers/utils/bignumber' {
@@ -553,7 +553,7 @@ declare module 'ethers/providers/abstract-provider' {
abstract listeners(eventName: EventType): Array<Listener>;
abstract removeAllListeners(eventName: EventType): Provider;
abstract removeListener(eventName: EventType, listener: Listener): Provider;
abstract waitForTransaction(transactionHash: string, timeout?: number): Promise<TransactionReceipt>;
abstract waitForTransaction(transactionHash: string, confirmations?: number): Promise<TransactionReceipt>;
constructor();
static isProvider(value: any): value is Provider;
}
@@ -710,6 +710,7 @@ declare module 'ethers/utils/secret-storage' {
entropy?: Arrayish;
mnemonic?: string;
path?: string;
wordlist?: any;
client?: string;
salt?: Arrayish;
uuid?: string;

2
dist/shims.js vendored

File diff suppressed because one or more lines are too long

2301
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,10 @@
{
"name": "ethers",
"version": "4.0.44",
"version": "4.0.49",
"publishConfig": {
"access": "public",
"tag": "legacy"
},
"description": "Ethereum wallet library.",
"main": "./index.js",
"types": "./index.d.ts",
@@ -20,8 +24,8 @@
},
"dependencies": {
"aes-js": "3.0.0",
"bn.js": "^4.4.0",
"elliptic": "6.5.2",
"bn.js": "^4.11.9",
"elliptic": "6.5.4",
"hash.js": "1.1.3",
"js-sha3": "0.5.7",
"scrypt-js": "2.0.4",
@@ -30,7 +34,7 @@
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@types/node": "^10.3.2",
"@types/node": "10.17.28",
"browserify": "^16.2.3",
"browserify-zlib": "^0.2.0",
"dts-bundle": "^0.7.3",
@@ -45,7 +49,7 @@
"gulp-uglify": "^3.0.0",
"mocha": "^5.2.0",
"mocha-phantomjs-core": "2.1.2",
"solc": "0.4.20",
"solc": "^0.7.0",
"tsify": "^4.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.1",

View File

@@ -102,7 +102,7 @@ export declare abstract class Provider implements OnceBlockable {
abstract listeners(eventName: EventType): Array<Listener>;
abstract removeAllListeners(eventName: EventType): Provider;
abstract removeListener(eventName: EventType, listener: Listener): Provider;
abstract waitForTransaction(transactionHash: string, timeout?: number): Promise<TransactionReceipt>;
abstract waitForTransaction(transactionHash: string, confirmations?: number): Promise<TransactionReceipt>;
constructor();
static isProvider(value: any): value is Provider;
}

View File

@@ -81,6 +81,7 @@ function checkLogTag(blockTag) {
}
return parseInt(blockTag.substring(2), 16);
}
var defaultApiKey = "8FG3JMZ9USS4NTA6YKEKHINU56SEPPVBJR";
var EtherscanProvider = /** @class */ (function (_super) {
__extends(EtherscanProvider, _super);
function EtherscanProvider(network, apiKey) {
@@ -111,7 +112,7 @@ var EtherscanProvider = /** @class */ (function (_super) {
throw new Error('unsupported network');
}
properties_1.defineReadOnly(_this, 'baseUrl', baseUrl);
properties_1.defineReadOnly(_this, 'apiKey', apiKey);
properties_1.defineReadOnly(_this, 'apiKey', apiKey || defaultApiKey);
return _this;
}
EtherscanProvider.prototype.perform = function (method, params) {
@@ -189,7 +190,7 @@ var EtherscanProvider = /** @class */ (function (_super) {
url += apiKey;
return get(url);
}
throw new Error('getBlock by blockHash not implmeneted');
return Promise.reject(new Error('getBlock by blockHash not implemeneted'));
case 'getTransaction':
url += '/api?module=proxy&action=eth_getTransactionByHash&txhash=' + params.transactionHash;
url += apiKey;
@@ -206,7 +207,7 @@ var EtherscanProvider = /** @class */ (function (_super) {
url += '/api?module=proxy&action=eth_call' + transaction;
//url += '&tag=' + params.blockTag + apiKey;
if (params.blockTag !== 'latest') {
throw new Error('EtherscanProvider does not support blockTag for call');
return Promise.reject(new Error('EtherscanProvider does not support blockTag for call'));
}
url += apiKey;
return get(url);

View File

@@ -1 +1 @@
export const version = "4.0.44";
export const version = "4.0.49";

View File

@@ -156,7 +156,7 @@ export abstract class Provider implements OnceBlockable {
abstract removeListener(eventName: EventType, listener: Listener): Provider;
// @TODO: This *could* be implemented here, but would pull in events...
abstract waitForTransaction(transactionHash: string, timeout?: number): Promise<TransactionReceipt>;
abstract waitForTransaction(transactionHash: string, confirmations?: number): Promise<TransactionReceipt>;
constructor() {
setType(this, 'Provider');

View File

@@ -73,6 +73,7 @@ function checkLogTag(blockTag: string): number | "latest" {
return parseInt(blockTag.substring(2), 16);
}
const defaultApiKey = "8FG3JMZ9USS4NTA6YKEKHINU56SEPPVBJR";
export class EtherscanProvider extends BaseProvider{
readonly baseUrl: string;
@@ -106,7 +107,7 @@ export class EtherscanProvider extends BaseProvider{
}
defineReadOnly(this, 'baseUrl', baseUrl);
defineReadOnly(this, 'apiKey', apiKey);
defineReadOnly(this, 'apiKey', apiKey || defaultApiKey);
}
@@ -193,7 +194,7 @@ export class EtherscanProvider extends BaseProvider{
url += apiKey;
return get(url);
}
throw new Error('getBlock by blockHash not implmeneted');
return Promise.reject(new Error('getBlock by blockHash not implemeneted'));
case 'getTransaction':
url += '/api?module=proxy&action=eth_getTransactionByHash&txhash=' + params.transactionHash;
@@ -212,7 +213,7 @@ export class EtherscanProvider extends BaseProvider{
url += '/api?module=proxy&action=eth_call' + transaction;
//url += '&tag=' + params.blockTag + apiKey;
if (params.blockTag !== 'latest') {
throw new Error('EtherscanProvider does not support blockTag for call');
return Promise.reject(new Error('EtherscanProvider does not support blockTag for call'));
}
url += apiKey;
return get(url);

View File

@@ -607,7 +607,7 @@ class CoderAddress extends Coder {
}
decode(data: Uint8Array, offset: number): DecodedResult {
if (data.length < offset + 32) {
errors.throwError('insufficuent data for address type', errors.INVALID_ARGUMENT, {
errors.throwError('insufficient data for address type', errors.INVALID_ARGUMENT, {
arg: this.localName,
coderType: 'address',
value: hexlify(data.slice(offset, offset + 32))

View File

@@ -374,6 +374,7 @@ function addMethod(method: any): void {
break;
}
case "receive":
case 'fallback':
// Nothing to do for fallback
break;

View File

@@ -26,6 +26,7 @@ export type EncryptOptions = {
entropy?: Arrayish;
mnemonic?: string;
path?: string;
wordlist?: any; // Should be a wordlist, but don't want to create the dependency
client?: string;
salt?: Arrayish;
uuid?: string;
@@ -177,7 +178,8 @@ export function decrypt(json: string, password: Arrayish, progressCallback?: Pro
}
// Version 0.1 x-ethers metadata must contain an encrypted mnemonic phrase
if (searchPath(data, 'x-ethers/version') === '0.1') {
const locale = searchPath(data, 'x-ethers/locale');
if (searchPath(data, 'x-ethers/version') === '0.1' && (locale == null || locale === "en")) {
var mnemonicCiphertext = looseArrayify(searchPath(data, 'x-ethers/mnemonicCiphertext'));
var mnemonicIv = looseArrayify(searchPath(data, 'x-ethers/mnemonicCounter'));
@@ -318,7 +320,7 @@ export function encrypt(privateKey: Arrayish | SigningKey, password: Arrayish |
throw new Error('entropy and mnemonic mismatch');
}
} else {
entropy = arrayify(HDNode.mnemonicToEntropy(options.mnemonic));
entropy = arrayify(HDNode.mnemonicToEntropy(options.mnemonic, options.wordlist));
}
}
@@ -441,6 +443,9 @@ export function encrypt(privateKey: Arrayish | SigningKey, password: Arrayish |
path: path,
version: "0.1"
};
if (options.wordlist && typeof(options.wordlist.locale) === "string") {
data['x-ethers'].locale = options.wordlist.locale;
}
}
if (progressCallback) { progressCallback(1); }

View File

@@ -514,7 +514,7 @@ var CoderAddress = /** @class */ (function (_super) {
};
CoderAddress.prototype.decode = function (data, offset) {
if (data.length < offset + 32) {
errors.throwError('insufficuent data for address type', errors.INVALID_ARGUMENT, {
errors.throwError('insufficient data for address type', errors.INVALID_ARGUMENT, {
arg: this.localName,
coderType: 'address',
value: bytes_1.hexlify(data.slice(offset, offset + 32))

View File

@@ -294,6 +294,7 @@ function addMethod(method) {
}
break;
}
case "receive":
case 'fallback':
// Nothing to do for fallback
break;

View File

@@ -6,6 +6,7 @@ export declare type EncryptOptions = {
entropy?: Arrayish;
mnemonic?: string;
path?: string;
wordlist?: any;
client?: string;
salt?: Arrayish;
uuid?: string;

View File

@@ -130,7 +130,8 @@ function decrypt(json, password, progressCallback) {
return null;
}
// Version 0.1 x-ethers metadata must contain an encrypted mnemonic phrase
if (searchPath(data, 'x-ethers/version') === '0.1') {
var locale = searchPath(data, 'x-ethers/locale');
if (searchPath(data, 'x-ethers/version') === '0.1' && (locale == null || locale === "en")) {
var mnemonicCiphertext = looseArrayify(searchPath(data, 'x-ethers/mnemonicCiphertext'));
var mnemonicIv = looseArrayify(searchPath(data, 'x-ethers/mnemonicCounter'));
var mnemonicCounter = new aes_js_1.default.Counter(mnemonicIv);
@@ -262,7 +263,7 @@ function encrypt(privateKey, password, options, progressCallback) {
}
}
else {
entropy = bytes_1.arrayify(HDNode.mnemonicToEntropy(options.mnemonic));
entropy = bytes_1.arrayify(HDNode.mnemonicToEntropy(options.mnemonic, options.wordlist));
}
}
var path = options.path;
@@ -387,6 +388,9 @@ function encrypt(privateKey, password, options, progressCallback) {
path: path,
version: "0.1"
};
if (options.wordlist && typeof (options.wordlist.locale) === "string") {
data['x-ethers'].locale = options.wordlist.locale;
}
}
if (progressCallback) {
progressCallback(1);