From fe0dc6509bb8fcc46a8bd5e6054af210a095dff7 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 16 Aug 2025 02:34:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D0=B0=D1=88=D0=B5=20=D1=81=D0=BE=D0=BE?= =?UTF-8?q?=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BC?= =?UTF-8?q?=D0=B8=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/routes/dleHistory.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/backend/routes/dleHistory.js b/backend/routes/dleHistory.js index d33b562..80046cf 100644 --- a/backend/routes/dleHistory.js +++ b/backend/routes/dleHistory.js @@ -44,7 +44,18 @@ router.post('/get-extended-history', async (req, res) => { "function getGovernanceParams() external view returns (uint256 quorumPct, uint256 chainId, uint256 supportedCount)", "function getCurrentChainId() external view returns (uint256)", "function listSupportedChains() external view returns (uint256[] memory)", - "function getProposalsCount() external view returns (uint256)" + "function getProposalsCount() external view returns (uint256)", + "event QuorumPercentageUpdated(uint256 oldQuorumPercentage, uint256 newQuorumPercentage)", + "event CurrentChainIdUpdated(uint256 oldChainId, uint256 newChainId)", + "event DLEInfoUpdated(string name, string symbol, string location, string coordinates, uint256 jurisdiction, string[] okvedCodes, uint256 kpp)", + "event ModuleAdded(bytes32 moduleId, address moduleAddress)", + "event ModuleRemoved(bytes32 moduleId)", + "event ChainAdded(uint256 chainId)", + "event ChainRemoved(uint256 chainId)", + "event ProposalExecutionApprovedInChain(uint256 proposalId, uint256 chainId)", + "event ProposalCreated(uint256 proposalId, address initiator, string description)", + "event ProposalExecuted(uint256 proposalId, bytes operation)", + "event ProposalCancelled(uint256 proposalId, string reason)" ]; const dle = new ethers.Contract(dleAddress, dleAbi, provider);