Mainnet Links

A collection of links to get started on Habtor Mainnet

Mainnet Contract and Token Addresses

The AddressManger is located at '0x8376ac6C3f73a25Dd994E0b0669ca7ee0C02F089'. The AddressManager can be queried for current addresses like this:

  this.AddressManager = new ethers.Contract(
    '0x8376ac6C3f73a25Dd994E0b0669ca7ee0C02F089',
    AddressManagerJson.abi,
    this.L1Provider
  )
  console.log("AddressManager Contract:",this.AddressManager)

  //obtain the current address of the Proxy__L1CrossDomainMessenger
  const address = await this.AddressManager.getAddress('Proxy__L1CrossDomainMessenger')

  /*********** NOTE *****************/
  /* If the contract is not in the AddressManager, then it will return the zero address: */
  /* 0x0000000000000000000000000000000000000000 */

As of Oct. 28 2021, the addresses are:

Last updated