Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release - 1.2.6 #3353

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,14 @@ Released with 1.0.0-beta.37 code base.
- fix: export bloom functions on the index.js
- Prefer receipt status to code availability on contract deployment (#3298)

## [1.2.6]

### Added

- ENS Görli testnet registry added

### Changed

- ENS registry addresses updated
nivida marked this conversation as resolved.
Show resolved Hide resolved

## [Unreleased]
2 changes: 1 addition & 1 deletion dist/web3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web3",
"private": true,
"version": "1.2.5",
"version": "1.2.6",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"engines": {
Expand Down
7 changes: 4 additions & 3 deletions packages/web3-eth-ens/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

var config = {
addresses: {
main: "0x314159265dD8dbb310642f98f50C066173C1259b",
ropsten: "0x112234455c3a32fd11230c42e7bccd4a84e02010",
rinkeby: "0xe7410170f87102df0055eb195163a03b7f2bff4a"
main: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e",
ropsten: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e",
rinkeby: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e",
goerli: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"
},
};

Expand Down
10 changes: 5 additions & 5 deletions test/eth.ens.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('ens', function () {
assert.equal(payload.method, 'eth_call');
assert.deepEqual(payload.params, [{
data: sha3(signature).slice(0, 10) + '1757b5941987904c18c7594de32c1726cda093fdddacb738cfbc4a7cd1ef4370',
to: '0x314159265dd8dbb310642f98f50c066173c1259b',
to: '0x00000000000c2e074ec69a0dfb2997ba6c7d2e1e',
}, 'latest']);
});
provider.injectResult('0x0000000000000000000000000123456701234567012345670123456701234567');
Expand All @@ -72,7 +72,7 @@ describe('ens', function () {
assert.equal(payload.method, 'eth_call');
assert.deepEqual(payload.params, [{
data: sha3(signature).slice(0, 10) + '1757b5941987904c18c7594de32c1726cda093fdddacb738cfbc4a7cd1ef4370',
to: '0x314159265dd8dbb310642f98f50c066173c1259b',
to: '0x00000000000c2e074ec69a0dfb2997ba6c7d2e1e',
}, 'latest']);
});
provider.injectResult('0x0000000000000000000000000123456701234567012345670123456701234567');
Expand All @@ -94,7 +94,7 @@ describe('ens', function () {
assert.equal(payload.method, 'eth_call');
assert.deepEqual(payload.params, [{
data: sha3(resolverSig).slice(0, 10) + '1757b5941987904c18c7594de32c1726cda093fdddacb738cfbc4a7cd1ef4370',
to: '0x314159265dd8dbb310642f98f50c066173c1259b',
to: '0x00000000000c2e074ec69a0dfb2997ba6c7d2e1e',
}, 'latest']);
});
provider.injectResult('0x0000000000000000000000000123456701234567012345670123456701234567');
Expand Down Expand Up @@ -126,7 +126,7 @@ describe('ens', function () {
assert.equal(payload.method, 'eth_call');
assert.deepEqual(payload.params, [{
data: sha3(resolverSignature).slice(0, 10) + '1757b5941987904c18c7594de32c1726cda093fdddacb738cfbc4a7cd1ef4370',
to: '0x314159265dd8dbb310642f98f50c066173c1259b',
to: '0x00000000000c2e074ec69a0dfb2997ba6c7d2e1e',
}, 'latest']);
});
provider.injectResult('0x0000000000000000000000000123456701234567012345670123456701234567');
Expand Down Expand Up @@ -162,7 +162,7 @@ describe('ens', function () {
assert.equal(payload.method, 'eth_call');
assert.deepEqual(payload.params, [{
data: sha3(resolverSignature).slice(0, 10) + '1757b5941987904c18c7594de32c1726cda093fdddacb738cfbc4a7cd1ef4370',
to: '0x314159265dd8dbb310642f98f50c066173c1259b',
to: '0x00000000000c2e074ec69a0dfb2997ba6c7d2e1e',
}, 'latest']);
});
provider.injectResult('0x0000000000000000000000000123456701234567012345670123456701234567');
Expand Down