From 8efd3c3f394be26c16504b97afc49042c1d2a42f Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Sun, 9 Mar 2025 21:49:47 +0200 Subject: [PATCH 1/2] Update events.go --- x/evmutil/types/events.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x/evmutil/types/events.go b/x/evmutil/types/events.go index 0db8c402..cf825243 100644 --- a/x/evmutil/types/events.go +++ b/x/evmutil/types/events.go @@ -10,6 +10,7 @@ const ( EventTypeConvertCosmosCoinToERC20 = "convert_cosmos_coin_to_erc20" EventTypeConvertCosmosCoinFromERC20 = "convert_cosmos_coin_from_erc20" + EventTypeDeployedCosmosCoinContract = "deployed_cosmos_coin_contract" // Event Attributes - Common AttributeKeyReceiver = "receiver" @@ -18,4 +19,8 @@ const ( // Event Attributes - Conversions AttributeKeyInitiator = "initiator" AttributeKeyERC20Address = "erc20_address" + + // Event Attributes - Contract Deployment + AttributeKeyCosmosDenom = "cosmos_denom" + AttributeKeyContractAddress = "contract_address" ) From 8105408bd1ab59ab14dfeedbda15ce82efcc5b67 Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Sun, 9 Mar 2025 21:50:08 +0200 Subject: [PATCH 2/2] Update erc20.go --- x/evmutil/keeper/erc20.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/x/evmutil/keeper/erc20.go b/x/evmutil/keeper/erc20.go index bbca64a1..609934c2 100644 --- a/x/evmutil/keeper/erc20.go +++ b/x/evmutil/keeper/erc20.go @@ -134,7 +134,12 @@ func (k *Keeper) GetOrDeployCosmosCoinERC20Contract( // register the contract to the module store err = k.SetDeployedCosmosCoinContract(ctx, tokenInfo.CosmosDenom, contractAddress) - // TODO: emit event that contract was deployed + // Emit event that contract was deployed + ctx.EventManager().EmitEvent(sdk.NewEvent( + types.EventTypeDeployedCosmosCoinContract, + sdk.NewAttribute(types.AttributeKeyCosmosDenom, tokenInfo.CosmosDenom), + sdk.NewAttribute(types.AttributeKeyContractAddress, contractAddress.String()), + )) return contractAddress, err }