Skip to content

Commit

Permalink
Updates dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Aug 21, 2019
1 parent b7494d8 commit 57bf997
Show file tree
Hide file tree
Showing 36 changed files with 428 additions and 227 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Changelog

This change log is managed by `scripts/cmds/update-versions` but may be manually updated.

ethers/v5.0.0-beta.154 (2019-08-21 01:51)
-----------------------------------------

- Use safe transfer for ENS in CLI. ([b7494d8](https://github.com/ethers-io/ethers.js/commit/b7494d8618001797a4e856f3d1886273897e6ba4))
- Fixed quorum-matching logic for FallbackProvider. ([b304ec1](https://github.com/ethers-io/ethers.js/commit/b304ec1f008ec5301c0dbd1a493d790fe3528512))
- Added CloudflareProvider. ([#587](https://github.com/ethers-io/ethers.js/issues/587); [621313d](https://github.com/ethers-io/ethers.js/commit/621313d2a697bc6e1dd25eb5b08d67e832a28d05))
- Added receipt to CALL_EXCEPTION errors. ([724c32e](https://github.com/ethers-io/ethers.js/commit/724c32e8c08b55404594f263e52babb0550a15b8))

ethers/v5.0.0-beta.153 (2019-08-06 19:15)
-----------------------------------------

Expand All @@ -25,14 +33,14 @@ ethers/v5.0.0-beta.151 (2019-08-05 14:29)

- Added package name prefix to all _version for Logger. ([692589d](https://github.com/ethers-io/ethers.js/commit/692589db54cbca10a2a453e9a1801a8612056559))

ethers/v5.0.0-beta.150 (2019-08-03 1:07)
----------------------------------------
ethers/v5.0.0-beta.150 (2019-08-03 01:07)
-----------------------------------------

- Fixed old references to errors package. ([1cabce7](https://github.com/ethers-io/ethers.js/commit/1cabce7e1c23b15cc2b630c0b403dd72d815a5ba))
- Added generation scripts for Table A.1 for stringprep. ([#42](https://github.com/ethers-io/ethers.js/issues/42); [b21681a](https://github.com/ethers-io/ethers.js/commit/b21681a7f4292b0e77315caad3a59fe814e9292b))

ethers/v5.0.0-beta.149 (2019-08-03 0:45)
----------------------------------------
ethers/v5.0.0-beta.149 (2019-08-03 00:45)
-----------------------------------------

- Fixed some case-folding and added Table A.1 for IDNA. ([#42](https://github.com/ethers-io/ethers.js/issues/42); [f955dca](https://github.com/ethers-io/ethers.js/commit/f955dca417a6f86690cf33a81b08baa99e1b1a5c))
- Removed references to legacy errors pacakge and updated umbrella pacakge. ([c09de16](https://github.com/ethers-io/ethers.js/commit/c09de163473c361cac11ddef9ec852f4cbb7d8e3))
Expand All @@ -51,8 +59,8 @@ ethers/v5.0.0-beta.148 (2019-07-27 18:56)
- Make utils.resolveProperties preserve object parameter order. ([74dbc28](https://github.com/ethers-io/ethers.js/commit/74dbc281ede042c5eeaa7b45150b215dea860a88))
- Added initial IDNA support for full UTF-8 support in namehash. ([#42](https://github.com/ethers-io/ethers.js/issues/42); [28eb38e](https://github.com/ethers-io/ethers.js/commit/28eb38ee703288aaad9f730b2d93fe3aeea7ada6))

ethers/v5.0.0-beta.147 (2019-07-23 1:04)
----------------------------------------
ethers/v5.0.0-beta.147 (2019-07-23 01:04)
-----------------------------------------

- Use the CLI solc instead of solc directly for ABI testcase generation. ([99c7b1c](https://github.com/ethers-io/ethers.js/commit/99c7b1ca94382490b9757fd51375a7ad4259b831))
- Added experimental UTF-8 functions for escaping non-ascii strings. ([b132e32](https://github.com/ethers-io/ethers.js/commit/b132e32172c9d63e59209628dadd5796dd6291c8))
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare const version = "cli/5.0.0-beta.139";
export declare const version = "cli/5.0.0-beta.140";
2 changes: 1 addition & 1 deletion packages/cli/_version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "cli/5.0.0-beta.139";
exports.version = "cli/5.0.0-beta.140";
4 changes: 2 additions & 2 deletions packages/cli/bin/ethers-ens.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var ethControllerAbi = [
var ethRegistrarAbi = [
"function ownerOf(uint256 tokenId) view returns (address)",
"function reclaim(uint256 id, address owner) @500000",
"function transferFrom(address from, address to, uint256 tokenId) @500000"
"function safeTransferFrom(address from, address to, uint256 tokenId) @500000"
];
var resolverAbi = [
"function interfaceImplementer(bytes32 nodehash, bytes4 interfaceId) view returns (address)",
Expand Down Expand Up @@ -1180,7 +1180,7 @@ var TransferPlugin = /** @class */ (function (_super) {
return [4 /*yield*/, this.getEthRegistrar()];
case 2:
registrar = _a.sent();
return [4 /*yield*/, registrar.transferFrom(this.accounts[0].getAddress(), this.new_owner, ethers_1.ethers.utils.id(this.label))];
return [4 /*yield*/, registrar.safeTransferFrom(this.accounts[0].getAddress(), this.new_owner, ethers_1.ethers.utils.id(this.label))];
case 3:
_a.sent();
return [2 /*return*/];
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,14 @@ var WrappedSigner = /** @class */ (function (_super) {
dump("Success:", {
"Block Number": receipt.blockNumber,
"Block Hash": receipt.blockHash,
"Gas Used": (ethers_1.ethers.utils.commify(receipt.gasUsed.toString()) + " ether"),
"Gas Used": ethers_1.ethers.utils.commify(receipt.gasUsed.toString()),
"Fee": (ethers_1.ethers.utils.formatEther(receipt.gasUsed.mul(tx.gasPrice)) + " ether")
});
return [3 /*break*/, 10];
case 9:
error_2 = _a.sent();
dump("Failed:", {
Error: error_2.message
"Error": error_2.message
});
return [3 /*break*/, 10];
case 10: return [2 /*return*/, response];
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethersproject/cli",
"version": "5.0.0-beta.139",
"version": "5.0.0-beta.140",
"description": "Command-Line Interface scripts and releated utilities.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -34,5 +34,5 @@
"type": "git",
"url": "git://github.com/ethers-io/ethers.js.git"
},
"tarballHash": "0xf9641f2e9ca52161b063e1216a7ea563de2e8998c003a8893f92a7150749cdf4"
"tarballHash": "0xd2c6b2e212b12b199af45b10c5b6e9132c88b4cd9ab69ec9501b2b5dd48f86c7"
}
2 changes: 1 addition & 1 deletion packages/cli/src.ts/_version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "cli/5.0.0-beta.139";
export const version = "cli/5.0.0-beta.140";
4 changes: 2 additions & 2 deletions packages/cli/src.ts/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,12 @@ class WrappedSigner extends ethers.Signer {
dump("Success:", {
"Block Number": receipt.blockNumber,
"Block Hash": receipt.blockHash,
"Gas Used": (ethers.utils.commify(receipt.gasUsed.toString()) + " ether"),
"Gas Used": ethers.utils.commify(receipt.gasUsed.toString()),
"Fee": (ethers.utils.formatEther(receipt.gasUsed.mul(tx.gasPrice)) + " ether")
});
} catch (error) {
dump("Failed:", {
Error: error.message
"Error": error.message
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare const version = "ethers/5.0.0-beta.153";
export declare const version = "ethers/5.0.0-beta.154";
2 changes: 1 addition & 1 deletion packages/ethers/_version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "ethers/5.0.0-beta.153";
exports.version = "ethers/5.0.0-beta.154";
Loading

0 comments on commit 57bf997

Please sign in to comment.