View Source: contracts/interfaces/IPolymathRegistry.solโ
โ Derived Contracts: PolymathRegistryโ
IPolymathRegistry
Events
event ChangeAddress(string _nameKey, address indexed _oldAddress, address indexed _newAddress);
โคฟ Overridden Implementation(s): PolymathRegistry.getAddressโ
Returns the contract address
function getAddress(string _nameKey) external viewreturns(registryAddress address)
Returns
address
Arguments
Name | Type | Description |
_nameKey | string | is the key for the contract address mapping |
โคฟ 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 |