From 69bafdadcfad5c290fecd61205944f98cd29a5f9 Mon Sep 17 00:00:00 2001 From: nolash Date: Fri, 11 Dec 2020 16:29:36 +0100 Subject: [PATCH] Rename accountsindex --- AccountsIndex.sol => AccountRegistry.sol | 2 +- abis/{AccountsIndex.abi.json => AccountRegistry.abi.json} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename AccountsIndex.sol => AccountRegistry.sol (96%) rename abis/{AccountsIndex.abi.json => AccountRegistry.abi.json} (100%) diff --git a/AccountsIndex.sol b/AccountRegistry.sol similarity index 96% rename from AccountsIndex.sol rename to AccountRegistry.sol index b572ca7..c13955f 100644 --- a/AccountsIndex.sol +++ b/AccountRegistry.sol @@ -5,7 +5,7 @@ pragma solidity >=0.6.12; // File-version: 2 -interface AccountsIndex { +interface AccountRegistry { event AccountAdded(address indexed addedAccount, uint256 indexed accountIndex); function accounts(uint256 _idx) external view returns (address); diff --git a/abis/AccountsIndex.abi.json b/abis/AccountRegistry.abi.json similarity index 100% rename from abis/AccountsIndex.abi.json rename to abis/AccountRegistry.abi.json