registered | Returns a list of registered contract names. |
get | Gets a name parameter as an input and return address of the contract with the same name. |
batchGet | Gets an array of names parameter as an input and return addresses of the contracts with these names. |
register | Gets contract name and contract address as parameters, registers contract address into registry. Returns a Boolean indicating result of the operation. |
batchRegister | Gets contract names from an array and contract addresses from an array as parameters, registers contract addresses into registry. Returns a Boolean indicating result of the operation. |
update | Gets contract name and contract address as parameters, checks if a contract exists with this name. If exists updates the address of the contract. Else reverts. Returns a Boolean indicating result of the operation. |
batchUpdate | Gets contract’s names and contract addresses as parameters. Updates the address of the contract if name already exist in registry. Else continues with next contract name. Returns a Boolean indicating result of the operation. |