From d6fa4429abb68b9a5fb240716e9f860dd7e7c179 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Tue, 30 May 2023 17:17:16 +0200 Subject: [PATCH] migration guide update --- .../web3_migration_guide/web3_eth_ens.md | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/docs/guides/web3_migration_guide/web3_eth_ens.md b/docs/docs/guides/web3_migration_guide/web3_eth_ens.md index a9177e4685b..10ba96391b7 100644 --- a/docs/docs/guides/web3_migration_guide/web3_eth_ens.md +++ b/docs/docs/guides/web3_migration_guide/web3_eth_ens.md @@ -10,6 +10,7 @@ sidebar_label: web3.eth.ens - All the API level interfaces returning or accepting `null` in 1.x, use `undefined` in 4.x. - Functions don't accept a callback anymore. - Functions that accepted an optional `TransactionConfig` as the last argument, now accept an optional `NonPayableCallOptions`. See `web3-eth-contract` package for more details. +- List of web3-eth-ens set functions are removed in 4.x #### receipt @@ -43,8 +44,18 @@ sidebar_label: web3.eth.ens - In 4.x a `bigint` is returned instead of a `number`. -### Not implemented (yet) - -- The following functions are implemented yet: - - `getMultihash` - - `setMultihash` +### Removed functions + + - `getMultihash` is not supported in web3-eth-ens 4.x as it's deprecated in ENS public resolver + - Following functions are not supported in web3-eth-ens 4.x : + `setResolver` + `setSubnodeRecord` + `setApprovalForAll` + `isApprovedForAll` + `setSubnodeOwner` + `setTTL` + `setOwner` + `setRecord` + `setAddress` + `setPubkey` + `setContenthash`