Namespace ENS Extension

ENS extension from Namespace for the Tatum SDK provides ENS functionalities allowing wallets to register ENS names and manage text record and names resolutions.


const tatum = await TatumSDK.init({
  apiKey: '_your_tatum_api_key_',
  network: '_network_to_connect_to_', // either Network.ETHEREUM or Network.ETHEREUM_SEPOLIA
  configureWalletProviders: [EvmWalletProvider],
  configureExtensions: [EnsExtension],
});

const walletProvider = tatum.walletProvider.use(EvmWalletProvider);
const ens = tatum
  .extension(EnsExtension)
  .walletProvider(walletProvider)
  .evmPayload({
    privateKey: '_your_wallet_private_key_',
    ...'_other_parameters_as_needed_',
  });
Install SDK Extension
Readme / Repository

https://www.npmjs.com/package/@namespace-ens/tatum-ens-extension

Weekly downloads
Github Stars
N/A
License
N/A
Last publish
April 12th
Extension Version
1.0.2
SDK Version
4.2.5
Provided by