Habtor testnet Links

A collection of links to get started on Habtor testnet

Habtor testnet Contract Addresses

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

  this.AddressManager = new ethers.Contract(
    '0x93A96D6A5beb1F661cf052722A1424CDDA3e9418',
    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 Dec. 28 2021, the addresses are:

Last updated