diff --git a/abi/IEthBlocklistErc20Vault.json b/abi/IEthBlocklistErc20Vault.json index 72ec9446..4caf7d4d 100644 --- a/abi/IEthBlocklistErc20Vault.json +++ b/abi/IEthBlocklistErc20Vault.json @@ -240,7 +240,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthBlocklistVault.json b/abi/IEthBlocklistVault.json index 897d60b3..5ed5dbeb 100644 --- a/abi/IEthBlocklistVault.json +++ b/abi/IEthBlocklistVault.json @@ -215,7 +215,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthErc20Vault.json b/abi/IEthErc20Vault.json index f05542a4..b7e99ef4 100644 --- a/abi/IEthErc20Vault.json +++ b/abi/IEthErc20Vault.json @@ -196,7 +196,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthFoxVault.json b/abi/IEthFoxVault.json index 23d06c0f..286e2f48 100644 --- a/abi/IEthFoxVault.json +++ b/abi/IEthFoxVault.json @@ -252,7 +252,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthGenesisVault.json b/abi/IEthGenesisVault.json index 443512b9..102c2b4f 100644 --- a/abi/IEthGenesisVault.json +++ b/abi/IEthGenesisVault.json @@ -202,7 +202,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthPrivErc20Vault.json b/abi/IEthPrivErc20Vault.json index 93b9c2f9..245918d1 100644 --- a/abi/IEthPrivErc20Vault.json +++ b/abi/IEthPrivErc20Vault.json @@ -196,7 +196,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthPrivVault.json b/abi/IEthPrivVault.json index fc74628c..6958534d 100644 --- a/abi/IEthPrivVault.json +++ b/abi/IEthPrivVault.json @@ -171,7 +171,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IEthVault.json b/abi/IEthVault.json index e57a00a0..842d67ab 100644 --- a/abi/IEthVault.json +++ b/abi/IEthVault.json @@ -171,7 +171,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IVaultEthStaking.json b/abi/IVaultEthStaking.json index 9f991b57..bd3bcf4f 100644 --- a/abi/IVaultEthStaking.json +++ b/abi/IVaultEthStaking.json @@ -171,7 +171,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/abi/IVaultValidators.json b/abi/IVaultValidators.json index 1362919d..e292fe3d 100644 --- a/abi/IVaultValidators.json +++ b/abi/IVaultValidators.json @@ -72,7 +72,7 @@ "type": "address" }, { - "indexed": false, + "indexed": true, "internalType": "address", "name": "keysManager", "type": "address" diff --git a/contracts/interfaces/IVaultValidators.sol b/contracts/interfaces/IVaultValidators.sol index 3526e712..4d103682 100644 --- a/contracts/interfaces/IVaultValidators.sol +++ b/contracts/interfaces/IVaultValidators.sol @@ -23,21 +23,21 @@ interface IVaultValidators is IVaultAdmin, IVaultState { * @param caller The address of the function caller * @param keysManager The address of the new keys manager */ - event KeysManagerUpdated(address indexed caller, address keysManager); + event KeysManagerUpdated(address indexed caller, address indexed keysManager); /** - * @notice Event emitted on validators manager address update + * @notice Event emitted on validators merkle tree root update (deprecated) * @param caller The address of the function caller - * @param validatorsManager The address of the new validators manager + * @param validatorsRoot The new validators merkle tree root */ - event ValidatorsManagerUpdated(address indexed caller, address indexed validatorsManager); + event ValidatorsRootUpdated(address indexed caller, bytes32 indexed validatorsRoot); /** - * @notice Event emitted on validators merkle tree root update (deprecated) + * @notice Event emitted on validators manager address update * @param caller The address of the function caller - * @param validatorsRoot The new validators merkle tree root + * @param validatorsManager The address of the new validators manager */ - event ValidatorsRootUpdated(address indexed caller, bytes32 indexed validatorsRoot); + event ValidatorsManagerUpdated(address indexed caller, address indexed validatorsManager); /** * @notice The Vault validators manager address diff --git a/test/__snapshots__/SharedMevEscrow.spec.ts.snap b/test/__snapshots__/SharedMevEscrow.spec.ts.snap index 89854280..d26d366c 100644 --- a/test/__snapshots__/SharedMevEscrow.spec.ts.snap +++ b/test/__snapshots__/SharedMevEscrow.spec.ts.snap @@ -3,6 +3,6 @@ exports[`SharedMevEscrow vault deployment gas 1`] = ` Object { "calldataByteLength": 683, - "gasUsed": 167445, + "gasUsed": 167457, } `;