Address Resolver
EVENT
AddressRegistered(id, contractAddress)
Event emitted for each address registered when the registerAddress
function is called.
FUNCTIONS
getAddress(_id)
getAddressWithCheck(_id)
registerAddress(_ids, _addresses)
Queries the registry for the address associated with _id
.
visibility: external
state mutability: view
Queries the registry for the address associated with _id
, additionally checking whether the address is not the zero address.
visibility: external
state mutability: view
Registers key-value pairs using _ids
and _addresses
to the registry mapping. This can only be accessed by the Rawrshak development team.
Emits an addressRegistered
event for each address registered.
Requirements:
The length of
_ids
must equal the length of_addresses
.
visibility: external
state mutability:
Last updated