Updated dist files.
This commit is contained in:
parent
0558bba8eb
commit
4ca98825d4
|
@ -3,9 +3,10 @@ Changelog
|
|||
|
||||
This change log is managed by `scripts/cmds/update-versions` but may be manually updated.
|
||||
|
||||
ethers/v5.0.10 (2020-09-04 01:34)
|
||||
ethers/v5.0.10 (2020-09-04 02:11)
|
||||
---------------------------------
|
||||
|
||||
- Added retry logic to provider tests. ([0558bba](https://github.com/ethers-io/ethers.js/commit/0558bba8eb1b783ef50bb37bcf4c9bae1f86f1e1))
|
||||
- Fixed link in docs. ([#1028](https://github.com/ethers-io/ethers.js/issues/1028); [2359a98](https://github.com/ethers-io/ethers.js/commit/2359a98641d99b26cf88ec892e3601a8a2c81c9c))
|
||||
- Added memory-like support and new opcodes to asm. ([6fd3bb6](https://github.com/ethers-io/ethers.js/commit/6fd3bb62d10eab1563dc4ddbd88732b4f484ec7a))
|
||||
- Added basic ENS resolver functions for contenthash, text and multi-coin addresses. ([#1003](https://github.com/ethers-io/ethers.js/issues/1003); [83db8a6](https://github.com/ethers-io/ethers.js/commit/83db8a6bd1364458dcfeea544de707df41890b4e))
|
||||
|
|
|
@ -405,6 +405,7 @@ function testProvider(providerName, networkName) {
|
|||
// Delay (ms) after each test case to prevent the backends from throttling
|
||||
const delay = 1000;
|
||||
describe(("Read-Only " + providerName + " (" + networkName + ")"), function () {
|
||||
this.retries(3);
|
||||
// Get the Provider based on the name of the provider we are testing and the network
|
||||
let provider = null;
|
||||
if (networkName === "default") {
|
||||
|
@ -585,7 +586,7 @@ describe("Test extra Etherscan operations", function() {
|
|||
});
|
||||
*/
|
||||
describe("Test Basic Authentication", function () {
|
||||
// https://stackoverflow.com/questions/6509278/authentication-test-servers#16756383
|
||||
this.retries(3);
|
||||
function test(name, url) {
|
||||
it("tests " + name, function () {
|
||||
this.timeout(60000);
|
||||
|
@ -685,6 +686,7 @@ describe("Test API Key Formatting", function () {
|
|||
});
|
||||
});
|
||||
describe("Test WebSocketProvider", function () {
|
||||
this.retries(3);
|
||||
function testWebSocketProvider(provider) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
yield provider.destroy();
|
||||
|
@ -698,6 +700,7 @@ describe("Test WebSocketProvider", function () {
|
|||
});
|
||||
});
|
||||
describe("Test Events", function () {
|
||||
this.retries(3);
|
||||
function testBlockEvent(provider) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -436,6 +436,7 @@ function testProvider(providerName, networkName) {
|
|||
// Delay (ms) after each test case to prevent the backends from throttling
|
||||
var delay = 1000;
|
||||
describe(("Read-Only " + providerName + " (" + networkName + ")"), function () {
|
||||
this.retries(3);
|
||||
// Get the Provider based on the name of the provider we are testing and the network
|
||||
var provider = null;
|
||||
if (networkName === "default") {
|
||||
|
@ -616,7 +617,7 @@ describe("Test extra Etherscan operations", function() {
|
|||
});
|
||||
*/
|
||||
describe("Test Basic Authentication", function () {
|
||||
// https://stackoverflow.com/questions/6509278/authentication-test-servers#16756383
|
||||
this.retries(3);
|
||||
function test(name, url) {
|
||||
it("tests " + name, function () {
|
||||
this.timeout(60000);
|
||||
|
@ -716,6 +717,7 @@ describe("Test API Key Formatting", function () {
|
|||
});
|
||||
});
|
||||
describe("Test WebSocketProvider", function () {
|
||||
this.retries(3);
|
||||
function testWebSocketProvider(provider) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
|
@ -745,6 +747,7 @@ describe("Test WebSocketProvider", function () {
|
|||
});
|
||||
});
|
||||
describe("Test Events", function () {
|
||||
this.retries(3);
|
||||
function testBlockEvent(provider) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -39,7 +39,7 @@
|
|||
"scripts": {
|
||||
"test": "exit 1"
|
||||
},
|
||||
"tarballHash": "0x31e0430b48b91ee1086d84a13f6d65a36079051c118c303a8a201462b3d3e813",
|
||||
"tarballHash": "0xc91a47e746497969d5176dac067ca4abab66aaa2da4d35d7337521e9bb619284",
|
||||
"types": "./lib/index.d.ts",
|
||||
"version": "5.0.6"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue