IPolymathRegistry.sol
View Source: contracts/interfaces/IPolymathRegistry.sol
↘ Derived Contracts: PolymathRegistry
IPolymathRegistry
Events
event ChangeAddress(string _nameKey, address indexed _oldAddress, address indexed _newAddress);
Functions
getAddress
⤿ Overridden Implementation(s): PolymathRegistry.getAddress
Returns the contract address
function getAddress(string _nameKey) external view
returns(registryAddress address)
Returns
address
Arguments
Name
Type
Description
_nameKey
string
is the key for the contract address mapping
changeAddress
⤿ Overridden Implementation(s): PolymathRegistry.changeAddress
Changes the contract address
function changeAddress(string _nameKey, address _newAddress) external nonpayable
Arguments
Name
Type
Description
_nameKey
string
is the key for the contract address mapping
_newAddress
address
is the new contract address
Last updated
Was this helpful?