From c4d71931744294f2237f9a831943b8c14b2850f6 Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 19 Jun 2024 14:50:26 +0800 Subject: [PATCH 1/6] Accept xToken owner and upgrade to new messager --- script/ring-dao/Config.s.sol | 2 -- script/x-token/Config.s.sol | 70 ++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+), 2 deletions(-) create mode 100644 script/x-token/Config.s.sol diff --git a/script/ring-dao/Config.s.sol b/script/ring-dao/Config.s.sol index 200ee5b..b112818 100644 --- a/script/ring-dao/Config.s.sol +++ b/script/ring-dao/Config.s.sol @@ -2,8 +2,6 @@ pragma solidity 0.8.17; import {Base} from "../common/Base.sol"; -import {TomlTools} from "../common/TomlTools.sol"; -import {stdJson} from "forge-std/StdJson.sol"; import "@openzeppelin/contracts/access/IAccessControl.sol"; diff --git a/script/x-token/Config.s.sol b/script/x-token/Config.s.sol new file mode 100644 index 0000000..06b2230 --- /dev/null +++ b/script/x-token/Config.s.sol @@ -0,0 +1,70 @@ +// SPDX-License-Identifier: MIT +pragma solidity 0.8.17; + +import {Base} from "../common/Base.sol"; + +interface XTokenBase { + struct MessagerService { + address sendService; + address receiveService; + } + + function setSendService(uint256 remoteChainId, address remoteBridge, address service) external; + function setReceiveService(uint256 remoteChainId, address remoteBridge, address service) external; + function messagers(uint256) external returns (MessagerService memory); +} + +interface IOwnership { + function dao() external view returns (address); + function pendingDao() external view returns (address); + function acceptOwnership() external; +} + +contract ConfigScript is Base { + address backingAddress = 0x2B496f19A420C02490dB859fefeCCD71eDc2c046; + address issuingAddress = 0xDc0C760c0fB4672D06088515F6446a71Df0c64C1; + address oldMessagerOnDarwinia = 0x65Be094765731F394bc6d9DF53bDF3376F1Fc8B0; + address oldMessagerOnEthereum = 0x65Be094765731F394bc6d9DF53bDF3376F1Fc8B0; + address newMessagerOnDarwinia = 0x682294D1c00A9CA13290b53B7544b8F734D6501f; + address newMessagerOnEthereum = 0x02e5C0a36Fb0C83CCEBCD4D6177A7E223D6f0b7c; + + uint256 ETHEREUM_CHAINID = 1; + uint256 DARWINIA_CHAINID = 46; + + function run() public sphinx { + address dao = safeAddress(); + if (block.chainid == DARWINIA_CHAINID) { + if (IOwnership(backingAddress).pendingDao() == dao) { + IOwnership(backingAddress).acceptOwnership(); + } + + if (IOwnership(newMessagerOnDarwinia).pendingDao() == dao) { + IOwnership(newMessagerOnDarwinia).acceptOwnership(); + } + + XTokenBase backing = XTokenBase(backingAddress); + require(backing.messagers(ETHEREUM_CHAINID).sendService == oldMessagerOnDarwinia, "!oldMessager"); + require(backing.messagers(ETHEREUM_CHAINID).receiveService == oldMessagerOnDarwinia, "!oldMessager"); + backing.setSendService(ETHEREUM_CHAINID, issuingAddress, newMessagerOnDarwinia); + backing.setReceiveService(ETHEREUM_CHAINID, issuingAddress, newMessagerOnDarwinia); + require(backing.messagers(ETHEREUM_CHAINID).sendService == newMessagerOnDarwinia, "!newMessager"); + require(backing.messagers(ETHEREUM_CHAINID).receiveService == newMessagerOnDarwinia, "!newMessager"); + } else if (block.chainid == ETHEREUM_CHAINID) { + if (IOwnership(issuingAddress).pendingDao() == dao) { + IOwnership(issuingAddress).acceptOwnership(); + } + + if (IOwnership(newMessagerOnEthereum).pendingDao() == dao) { + IOwnership(newMessagerOnEthereum).acceptOwnership(); + } + + XTokenBase issuing = XTokenBase(issuingAddress); + require(issuing.messagers(DARWINIA_CHAINID).sendService == oldMessagerOnEthereum, "!oldMessager"); + require(issuing.messagers(DARWINIA_CHAINID).receiveService == oldMessagerOnEthereum, "!oldMessager"); + issuing.setSendService(DARWINIA_CHAINID, backingAddress, newMessagerOnEthereum); + issuing.setReceiveService(DARWINIA_CHAINID, backingAddress, newMessagerOnEthereum); + require(issuing.messagers(DARWINIA_CHAINID).sendService == newMessagerOnEthereum, "!newMessager"); + require(issuing.messagers(DARWINIA_CHAINID).receiveService == newMessagerOnEthereum, "!newMessager"); + } + } +} From 4130eaac2f1e8969e63ccb21ff77ea368239f9dd Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 19 Jun 2024 14:51:33 +0800 Subject: [PATCH 2/6] proposal --- script/Proposal.s.sol | 2 +- script/common/Base.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/script/Proposal.s.sol b/script/Proposal.s.sol index 151a722..33ca3a8 100644 --- a/script/Proposal.s.sol +++ b/script/Proposal.s.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; -import "./ring-dao/Config.s.sol"; +import "./x-token/Config.s.sol"; contract Proposal is ConfigScript {} diff --git a/script/common/Base.sol b/script/common/Base.sol index 7711f47..570b68a 100644 --- a/script/common/Base.sol +++ b/script/common/Base.sol @@ -18,7 +18,7 @@ abstract contract Base is Script, Sphinx, SphinxConstants { function configureSphinx() public override { sphinxConfig.projectName = "RING-DAO"; sphinxConfig.testnets = ["darwinia_koi"]; - // sphinxConfig.mainnets = ["ethereum", "darwinia", "crab", "arbitrum", "blast", "polygon", "moonbeam"]; + sphinxConfig.mainnets = ["ethereum", "darwinia"]; } function CREATE3() public returns (address create3) { From fe2e44788dbd930d429a7ff08c66ce7d2c6a3cbf Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 19 Jun 2024 15:02:49 +0800 Subject: [PATCH 3/6] fix --- .../deployment.json | 611 ++++++++++++++++++ .../signature.json | 14 + script/x-token/Config.s.sol | 2 +- 3 files changed, 626 insertions(+), 1 deletion(-) create mode 100644 proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json create mode 100644 proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json diff --git a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json new file mode 100644 index 0000000..2c380a1 --- /dev/null +++ b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json @@ -0,0 +1,611 @@ +{ + "networkConfigs": [ + { + "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", + "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", + "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "5", + "chainId": "1", + "blockGasLimit": "30000000", + "blockNumber": "20124117", + "newConfig": { + "projectName": "RING-DAO", + "orgId": "cluanacaw000111jik4xs4wkl", + "owners": [ + "0x00E3993566b34e5367d1C602439997BD08c11FF7", + "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", + "0x52386BE2397e8EAc26298F733b390684203fB580", + "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" + ], + "mainnets": [ + "ethereum", + "darwinia" + ], + "testnets": [ + "darwinia_koi" + ], + "threshold": "3", + "saltNonce": "0" + }, + "executionMode": 2, + "initialState": { + "isExecuting": false, + "isModuleDeployed": true, + "isSafeDeployed": true + }, + "isSystemDeployed": true, + "actionInputs": [ + { + "actionType": 2, + "contracts": [], + "index": "1", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "142424", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "2", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + ], + "address": "", + "value": "0" + }, + "gas": "126680", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + }, + { + "actionType": 2, + "contracts": [], + "index": "3", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + ], + "address": "", + "value": "0" + }, + "gas": "126681", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + }, + { + "actionType": 2, + "contracts": [], + "index": "4", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + ], + "address": "", + "value": "0" + }, + "gas": "156727", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + }, + { + "actionType": 2, + "contracts": [], + "index": "5", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + ], + "address": "", + "value": "0" + }, + "gas": "156667", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + }, + { + "actionType": 2, + "contracts": [], + "index": "6", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + ], + "address": "", + "value": "0" + }, + "gas": "126681", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + }, + { + "actionType": 2, + "contracts": [], + "index": "7", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + ], + "address": "", + "value": "0" + }, + "gas": "126682", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" + } + ], + "unlabeledContracts": [], + "arbitraryChain": false, + "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", + "libraries": [], + "gitCommit": "4130eaac2f1e8969e63ccb21ff77ea368239f9dd", + "safeFundingRequest": { + "fundsRequested": "0", + "startingBalance": "0" + } + }, + { + "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", + "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", + "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "5", + "chainId": "46", + "blockGasLimit": "20000000", + "blockNumber": "2940780", + "newConfig": { + "projectName": "RING-DAO", + "orgId": "cluanacaw000111jik4xs4wkl", + "owners": [ + "0x00E3993566b34e5367d1C602439997BD08c11FF7", + "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", + "0x52386BE2397e8EAc26298F733b390684203fB580", + "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" + ], + "mainnets": [ + "ethereum", + "darwinia" + ], + "testnets": [ + "darwinia_koi" + ], + "threshold": "3", + "saltNonce": "0" + }, + "executionMode": 2, + "initialState": { + "isExecuting": false, + "isModuleDeployed": true, + "isSafeDeployed": true + }, + "isSystemDeployed": true, + "actionInputs": [ + { + "actionType": 2, + "contracts": [], + "index": "1", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "2", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "actionType": 2, + "contracts": [], + "index": "3", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "actionType": 2, + "contracts": [], + "index": "4", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + }, + { + "actionType": 2, + "contracts": [], + "index": "5", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + }, + { + "actionType": 2, + "contracts": [], + "index": "6", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "actionType": 2, + "contracts": [], + "index": "7", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "unlabeledContracts": [], + "arbitraryChain": false, + "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", + "libraries": [], + "gitCommit": "4130eaac2f1e8969e63ccb21ff77ea368239f9dd", + "safeFundingRequest": { + "fundsRequested": "0", + "startingBalance": "0" + } + } + ], + "buildInfos": {}, + "inputs": [], + "version": "0.2.0", + "merkleTree": { + "root": "0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1", + "leavesWithProofs": [ + { + "leaf": { + "chainId": "1", + "index": "0", + "leafType": 0, + "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000080000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xcaaefe1e1bffe3869dd60a09a328b1f6fcb469e7c28303dee62fd7a355141163", + "0x5ab59ad50bb08281d49e09bdfa4d6ee5f2e7ff561224c0a3101771b27821b7ff", + "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "1", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022c5800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x43fb7ba839fb13aaddf2bcd6da4ac46a0fb8ccc43fa120d89f33a5f766d1a196", + "0x4508a422c83038544b53951aaf4c45377eed39a94cc052d05dcd8d75d38d8550", + "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "2", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xa9ab746fca44466731407cd86d9ae1462ddc5f689ef49cd211bf9c142183a993", + "0x21214f43ff4ee370ed3da974769ce778973426d91260e5280188524917a00574", + "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "3", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xee957e38f6bdf69c6f40590d131a13ef011a2f22b4593711873cf380078a2e66", + "0xf940b8844f5b91a2e6c8de61aed6ae5d9af3131241c879300f18194c4e334750", + "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "4", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002643700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x7c93f14fdc8f122d6262d67c9ed01ace19df347809541c3309d7a19d01702be4", + "0x21214f43ff4ee370ed3da974769ce778973426d91260e5280188524917a00574", + "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "5", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000263fb00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xe77f9f75017ae7156ab895f875273af26088c2881ae6ae3301f836a5a0288552", + "0x78a4a0770b53373e1842be10c5524232f1041aa17cb7f6f48e11a6f8ac2cb698", + "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "6", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x4f63bb84d1295380800c0bbb4c345dba2deec546788349fd2df58f2903d285aa", + "0xc6c7e2336dd5e1d85c2aac438b5bea11bf7eb4253d287910c1009ef66e84e092", + "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "7", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eeda00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x1bd3db380d7a4195f916b3274b37a178dfed1312356afa7df0f83c6b30faa538", + "0x124d89dd70372dba27647422b4f21e16b695af7fa30b9fef0f8cfd84937afe5f", + "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "0", + "leafType": 0, + "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000080000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x4c9215eced53d06a48610833d59f30e326414f48382702e668210300579f7275", + "0xc6c7e2336dd5e1d85c2aac438b5bea11bf7eb4253d287910c1009ef66e84e092", + "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "1", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xdd217254a28421bf940051fb3df8b5e5a1ecfae01ec9bac80af202ba68d1bd2c", + "0x78a4a0770b53373e1842be10c5524232f1041aa17cb7f6f48e11a6f8ac2cb698", + "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "2", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x625de593798382e5c446803c9bba1e7f73db3cdf06ad7cd1a90b2d87c3f72fe0", + "0x28293b9606de0a243661bbe1c43e8d44cc783868962d5b7a3a6eecb2b5ad408d", + "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "3", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x23e8e6a7687f062cee03a13c3e0426866b79df64ad49c125922637280c19fdcc", + "0x124d89dd70372dba27647422b4f21e16b695af7fa30b9fef0f8cfd84937afe5f", + "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "4", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xefc52a8ae49d559464311ff08aa7d3b6e0aba1cd90e9d3a61acacff618ed759c", + "0xf940b8844f5b91a2e6c8de61aed6ae5d9af3131241c879300f18194c4e334750", + "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "5", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xb7f72879343b4ba0f64ff6e84bf578a8b0f58ed5a01a409ed6d7546ecad8474b", + "0x5ab59ad50bb08281d49e09bdfa4d6ee5f2e7ff561224c0a3101771b27821b7ff", + "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", + "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "6", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x3a3ad190e28779872c33e23da9558faf9b80e646bb705ad3017e06b0bb2e3554", + "0x4508a422c83038544b53951aaf4c45377eed39a94cc052d05dcd8d75d38d8550", + "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "7", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x5519aeb27cee598a9c845acf9f33d2261be109c4d8dd32aefbd7f320a78b8c6b", + "0x28293b9606de0a243661bbe1c43e8d44cc783868962d5b7a3a6eecb2b5ad408d", + "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", + "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" + ] + } + ] + }, + "configArtifacts": {} +} \ No newline at end of file diff --git a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json new file mode 100644 index 0000000..4f4ef60 --- /dev/null +++ b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json @@ -0,0 +1,14 @@ +[ + { + "signer": "0x0f14341a7f464320319025540e8fe48ad0fe5aec", + "signature": "" + }, + { + "signer": "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85", + "signature": "" + }, + { + "signer": "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "signature": "" + } +] diff --git a/script/x-token/Config.s.sol b/script/x-token/Config.s.sol index 06b2230..79fd913 100644 --- a/script/x-token/Config.s.sol +++ b/script/x-token/Config.s.sol @@ -11,7 +11,7 @@ interface XTokenBase { function setSendService(uint256 remoteChainId, address remoteBridge, address service) external; function setReceiveService(uint256 remoteChainId, address remoteBridge, address service) external; - function messagers(uint256) external returns (MessagerService memory); + function messagers(uint256) external view returns (MessagerService memory); } interface IOwnership { From 730a8f0d9b08de99fc1af7cf5485fa2e2d9f7333 Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 19 Jun 2024 15:03:13 +0800 Subject: [PATCH 4/6] fix --- .../deployment.json | 611 ------------------ .../signature.json | 14 - 2 files changed, 625 deletions(-) delete mode 100644 proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json delete mode 100644 proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json diff --git a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json deleted file mode 100644 index 2c380a1..0000000 --- a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/deployment.json +++ /dev/null @@ -1,611 +0,0 @@ -{ - "networkConfigs": [ - { - "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", - "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", - "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "nonce": "5", - "chainId": "1", - "blockGasLimit": "30000000", - "blockNumber": "20124117", - "newConfig": { - "projectName": "RING-DAO", - "orgId": "cluanacaw000111jik4xs4wkl", - "owners": [ - "0x00E3993566b34e5367d1C602439997BD08c11FF7", - "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", - "0x52386BE2397e8EAc26298F733b390684203fB580", - "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", - "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" - ], - "mainnets": [ - "ethereum", - "darwinia" - ], - "testnets": [ - "darwinia_koi" - ], - "threshold": "3", - "saltNonce": "0" - }, - "executionMode": 2, - "initialState": { - "isExecuting": false, - "isModuleDeployed": true, - "isSafeDeployed": true - }, - "isSystemDeployed": true, - "actionInputs": [ - { - "actionType": 2, - "contracts": [], - "index": "1", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x79ba5097" - ], - "address": "", - "value": "0" - }, - "gas": "142424", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x79ba5097" - }, - { - "actionType": 2, - "contracts": [], - "index": "2", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - ], - "address": "", - "value": "0" - }, - "gas": "126680", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - }, - { - "actionType": 2, - "contracts": [], - "index": "3", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - ], - "address": "", - "value": "0" - }, - "gas": "126681", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - }, - { - "actionType": 2, - "contracts": [], - "index": "4", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" - ], - "address": "", - "value": "0" - }, - "gas": "156727", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" - }, - { - "actionType": 2, - "contracts": [], - "index": "5", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" - ], - "address": "", - "value": "0" - }, - "gas": "156667", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" - }, - { - "actionType": 2, - "contracts": [], - "index": "6", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - ], - "address": "", - "value": "0" - }, - "gas": "126681", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - }, - { - "actionType": 2, - "contracts": [], - "index": "7", - "decodedAction": { - "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "functionName": "call", - "variables": [ - "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - ], - "address": "", - "value": "0" - }, - "gas": "126682", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", - "txData": "0x99a1900f000000000000000000000000000000000000000000000000000000000000002e" - } - ], - "unlabeledContracts": [], - "arbitraryChain": false, - "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", - "libraries": [], - "gitCommit": "4130eaac2f1e8969e63ccb21ff77ea368239f9dd", - "safeFundingRequest": { - "fundsRequested": "0", - "startingBalance": "0" - } - }, - { - "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", - "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", - "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "nonce": "5", - "chainId": "46", - "blockGasLimit": "20000000", - "blockNumber": "2940780", - "newConfig": { - "projectName": "RING-DAO", - "orgId": "cluanacaw000111jik4xs4wkl", - "owners": [ - "0x00E3993566b34e5367d1C602439997BD08c11FF7", - "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", - "0x52386BE2397e8EAc26298F733b390684203fB580", - "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", - "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" - ], - "mainnets": [ - "ethereum", - "darwinia" - ], - "testnets": [ - "darwinia_koi" - ], - "threshold": "3", - "saltNonce": "0" - }, - "executionMode": 2, - "initialState": { - "isExecuting": false, - "isModuleDeployed": true, - "isSafeDeployed": true - }, - "isSystemDeployed": true, - "actionInputs": [ - { - "actionType": 2, - "contracts": [], - "index": "1", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x79ba5097" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x79ba5097" - }, - { - "actionType": 2, - "contracts": [], - "index": "2", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - }, - { - "actionType": 2, - "contracts": [], - "index": "3", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - }, - { - "actionType": 2, - "contracts": [], - "index": "4", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" - }, - { - "actionType": 2, - "contracts": [], - "index": "5", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" - }, - { - "actionType": 2, - "contracts": [], - "index": "6", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - }, - { - "actionType": 2, - "contracts": [], - "index": "7", - "decodedAction": { - "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "functionName": "call", - "variables": [ - "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - ], - "address": "", - "value": "0" - }, - "gas": "11200000", - "requireSuccess": true, - "value": "0", - "operation": 0, - "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", - "txData": "0x99a1900f0000000000000000000000000000000000000000000000000000000000000001" - } - ], - "unlabeledContracts": [], - "arbitraryChain": false, - "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", - "libraries": [], - "gitCommit": "4130eaac2f1e8969e63ccb21ff77ea368239f9dd", - "safeFundingRequest": { - "fundsRequested": "0", - "startingBalance": "0" - } - } - ], - "buildInfos": {}, - "inputs": [], - "version": "0.2.0", - "merkleTree": { - "root": "0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1", - "leavesWithProofs": [ - { - "leaf": { - "chainId": "1", - "index": "0", - "leafType": 0, - "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000080000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xcaaefe1e1bffe3869dd60a09a328b1f6fcb469e7c28303dee62fd7a355141163", - "0x5ab59ad50bb08281d49e09bdfa4d6ee5f2e7ff561224c0a3101771b27821b7ff", - "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "1", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022c5800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x43fb7ba839fb13aaddf2bcd6da4ac46a0fb8ccc43fa120d89f33a5f766d1a196", - "0x4508a422c83038544b53951aaf4c45377eed39a94cc052d05dcd8d75d38d8550", - "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "2", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xa9ab746fca44466731407cd86d9ae1462ddc5f689ef49cd211bf9c142183a993", - "0x21214f43ff4ee370ed3da974769ce778973426d91260e5280188524917a00574", - "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "3", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xee957e38f6bdf69c6f40590d131a13ef011a2f22b4593711873cf380078a2e66", - "0xf940b8844f5b91a2e6c8de61aed6ae5d9af3131241c879300f18194c4e334750", - "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "4", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002643700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x7c93f14fdc8f122d6262d67c9ed01ace19df347809541c3309d7a19d01702be4", - "0x21214f43ff4ee370ed3da974769ce778973426d91260e5280188524917a00574", - "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "5", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000263fb00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xe77f9f75017ae7156ab895f875273af26088c2881ae6ae3301f836a5a0288552", - "0x78a4a0770b53373e1842be10c5524232f1041aa17cb7f6f48e11a6f8ac2cb698", - "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "6", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eed900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x4f63bb84d1295380800c0bbb4c345dba2deec546788349fd2df58f2903d285aa", - "0xc6c7e2336dd5e1d85c2aac438b5bea11bf7eb4253d287910c1009ef66e84e092", - "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "1", - "index": "7", - "leafType": 1, - "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001eeda00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x1bd3db380d7a4195f916b3274b37a178dfed1312356afa7df0f83c6b30faa538", - "0x124d89dd70372dba27647422b4f21e16b695af7fa30b9fef0f8cfd84937afe5f", - "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "0", - "leafType": 0, - "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000080000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x4c9215eced53d06a48610833d59f30e326414f48382702e668210300579f7275", - "0xc6c7e2336dd5e1d85c2aac438b5bea11bf7eb4253d287910c1009ef66e84e092", - "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "1", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xdd217254a28421bf940051fb3df8b5e5a1ecfae01ec9bac80af202ba68d1bd2c", - "0x78a4a0770b53373e1842be10c5524232f1041aa17cb7f6f48e11a6f8ac2cb698", - "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "2", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x625de593798382e5c446803c9bba1e7f73db3cdf06ad7cd1a90b2d87c3f72fe0", - "0x28293b9606de0a243661bbe1c43e8d44cc783868962d5b7a3a6eecb2b5ad408d", - "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "3", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x23e8e6a7687f062cee03a13c3e0426866b79df64ad49c125922637280c19fdcc", - "0x124d89dd70372dba27647422b4f21e16b695af7fa30b9fef0f8cfd84937afe5f", - "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "4", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xefc52a8ae49d559464311ff08aa7d3b6e0aba1cd90e9d3a61acacff618ed759c", - "0xf940b8844f5b91a2e6c8de61aed6ae5d9af3131241c879300f18194c4e334750", - "0xa1fc95eef6dbfe9473aa8a7b4a3b06227ff3e50e62b6c3797e332f9af61f83eb", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "5", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0xb7f72879343b4ba0f64ff6e84bf578a8b0f58ed5a01a409ed6d7546ecad8474b", - "0x5ab59ad50bb08281d49e09bdfa4d6ee5f2e7ff561224c0a3101771b27821b7ff", - "0x9ded2f85e4381e1ad10cbc186b0ab27ed09137a57aa3b8b15d23b11201b730f8", - "0x61a385a9c7eed12151996f287b86c664ecfa3429956516967f9d02cb4bc73dd8" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "6", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x3a3ad190e28779872c33e23da9558faf9b80e646bb705ad3017e06b0bb2e3554", - "0x4508a422c83038544b53951aaf4c45377eed39a94cc052d05dcd8d75d38d8550", - "0x5fd3498d640f36c25bc4ac011fd17022be628d1fd746c6d817588537caa8cf39", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - }, - { - "leaf": { - "chainId": "46", - "index": "7", - "leafType": 1, - "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002499a1900f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" - }, - "proof": [ - "0x5519aeb27cee598a9c845acf9f33d2261be109c4d8dd32aefbd7f320a78b8c6b", - "0x28293b9606de0a243661bbe1c43e8d44cc783868962d5b7a3a6eecb2b5ad408d", - "0xafc10524bc66723e899f0a56fda083931287b945efdee4f72a87db527293751e", - "0xcf92a6a61ef92933f9f2f219685e95325738127b907af0ecaa5d8f090a569678" - ] - } - ] - }, - "configArtifacts": {} -} \ No newline at end of file diff --git a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json b/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json deleted file mode 100644 index 4f4ef60..0000000 --- a/proposal/0x48e0fefcf0ec8d6b17cb8e6fefc8b8812bb98050e1cc6a4be5bb8ef49e8a46c1/signature.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "signer": "0x0f14341a7f464320319025540e8fe48ad0fe5aec", - "signature": "" - }, - { - "signer": "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85", - "signature": "" - }, - { - "signer": "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", - "signature": "" - } -] From 8c1eb56318af5a7a8efd7b7c74171f03aa0b0642 Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 19 Jun 2024 16:24:18 +0800 Subject: [PATCH 5/6] executed --- .../deployment.json | 401 ++++++++++++++++++ .../signature.json | 14 + 2 files changed, 415 insertions(+) create mode 100644 proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/deployment.json create mode 100644 proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/signature.json diff --git a/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/deployment.json b/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/deployment.json new file mode 100644 index 0000000..75da0f7 --- /dev/null +++ b/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/deployment.json @@ -0,0 +1,401 @@ +{ + "networkConfigs": [ + { + "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", + "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", + "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "5", + "chainId": "1", + "blockGasLimit": "30000000", + "blockNumber": "20124437", + "newConfig": { + "projectName": "RING-DAO", + "orgId": "cluanacaw000111jik4xs4wkl", + "owners": [ + "0x00E3993566b34e5367d1C602439997BD08c11FF7", + "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", + "0x52386BE2397e8EAc26298F733b390684203fB580", + "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" + ], + "mainnets": [ + "ethereum", + "darwinia" + ], + "testnets": [ + "darwinia_koi" + ], + "threshold": "3", + "saltNonce": "0" + }, + "executionMode": 2, + "initialState": { + "isExecuting": false, + "isModuleDeployed": true, + "isSafeDeployed": true + }, + "isSystemDeployed": true, + "actionInputs": [ + { + "actionType": 2, + "contracts": [], + "index": "1", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "142430", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "2", + "decodedAction": { + "referenceName": "0x02e5C0a36Fb0C83CCEBCD4D6177A7E223D6f0b7c", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "135459", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x02e5C0a36Fb0C83CCEBCD4D6177A7E223D6f0b7c", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "3", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + ], + "address": "", + "value": "0" + }, + "gas": "156734", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x2fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + }, + { + "actionType": 2, + "contracts": [], + "index": "4", + "decodedAction": { + "referenceName": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "functionName": "call", + "variables": [ + "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + ], + "address": "", + "value": "0" + }, + "gas": "156675", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0xDc0C760c0fB4672D06088515F6446a71Df0c64C1", + "txData": "0x8c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c" + } + ], + "unlabeledContracts": [], + "arbitraryChain": false, + "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", + "libraries": [], + "gitCommit": "730a8f0d9b08de99fc1af7cf5485fa2e2d9f7333", + "safeFundingRequest": { + "fundsRequested": "0", + "startingBalance": "0" + } + }, + { + "safeAddress": "0x040f331774Ed6BB161412B4cEDb1358B382aF3A5", + "moduleAddress": "0x3D75d338B4711F8a33d293a2008f07a712513402", + "safeInitData": "0xb63e800d00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000e3993566b34e5367d1c602439997bd08c11ff70000000000000000000000000f14341a7f464320319025540e8fe48ad0fe5aec00000000000000000000000052386be2397e8eac26298f733b390684203fb58000000000000000000000000053405fb4d71591e33fe07bfbc90bd82e65720ad00000000000000000000000009f33a4809aa708d7a399fedba514e0a0d15efa8500000000000000000000000000000000000000000000000000000000000001448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f2008f3301c9eada5642b5bb12fd047d3ebb2932e619000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248236d0b80000000000000000000000000000000000000000000000000000000000000000018f3301c9eada5642b5bb12fd047d3ebb2932e6190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002411ea37fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "5", + "chainId": "46", + "blockGasLimit": "20000000", + "blockNumber": "2941101", + "newConfig": { + "projectName": "RING-DAO", + "orgId": "cluanacaw000111jik4xs4wkl", + "owners": [ + "0x00E3993566b34e5367d1C602439997BD08c11FF7", + "0x0f14341A7f464320319025540E8Fe48Ad0fe5aec", + "0x52386BE2397e8EAc26298F733b390684203fB580", + "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85" + ], + "mainnets": [ + "ethereum", + "darwinia" + ], + "testnets": [ + "darwinia_koi" + ], + "threshold": "3", + "saltNonce": "0" + }, + "executionMode": 2, + "initialState": { + "isExecuting": false, + "isModuleDeployed": true, + "isSafeDeployed": true + }, + "isSystemDeployed": true, + "actionInputs": [ + { + "actionType": 2, + "contracts": [], + "index": "1", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "2", + "decodedAction": { + "referenceName": "0x682294D1c00A9CA13290b53B7544b8F734D6501f", + "functionName": "call", + "variables": [ + "0x79ba5097" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x682294D1c00A9CA13290b53B7544b8F734D6501f", + "txData": "0x79ba5097" + }, + { + "actionType": 2, + "contracts": [], + "index": "3", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x2fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + }, + { + "actionType": 2, + "contracts": [], + "index": "4", + "decodedAction": { + "referenceName": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "functionName": "call", + "variables": [ + "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + ], + "address": "", + "value": "0" + }, + "gas": "11200000", + "requireSuccess": true, + "value": "0", + "operation": 0, + "to": "0x2B496f19A420C02490dB859fefeCCD71eDc2c046", + "txData": "0x8c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f" + } + ], + "unlabeledContracts": [], + "arbitraryChain": false, + "executorAddress": "0x7e16116661CA8d66C73612382833153911Fa03B1", + "libraries": [], + "gitCommit": "730a8f0d9b08de99fc1af7cf5485fa2e2d9f7333", + "safeFundingRequest": { + "fundsRequested": "0", + "startingBalance": "0" + } + } + ], + "buildInfos": {}, + "inputs": [], + "version": "0.2.0", + "merkleTree": { + "root": "0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8", + "leavesWithProofs": [ + { + "leaf": { + "chainId": "1", + "index": "0", + "leafType": 0, + "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x385c9f3b5374fd73676a600e5312ebee5b8c68ce055cf9788d062c0346154113", + "0x8d1b1fde15070f5ac6c2befa5d11dcade154343b20307ece62de4cf1781548b8", + "0x1abdeb86f7849e2808a0b930edde87b94af2c8cefc07c60a21754e86fb8e8f26", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "1", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022c5e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xb63f9020380b356095ed492dd1d8a2df4527afdb900efdda54cd1bc9934adc74", + "0x3fe0b3230de5a80debe941589230e6b296f8f0e18f5817ce5a5486bb24f9e8ee", + "0x29961eab36763635437434c2fa9f6011313c25862211255981b95fa36b38bda1" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "2", + "leafType": 1, + "data": "0x00000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002112300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x27cdefb0d205922b56d1a7646c6b59d6615d62295ed8fedc0bbdd9bf5f7dcf59", + "0x8d1b1fde15070f5ac6c2befa5d11dcade154343b20307ece62de4cf1781548b8", + "0x1abdeb86f7849e2808a0b930edde87b94af2c8cefc07c60a21754e86fb8e8f26", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "3", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002643e00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xe00df01e1b6cf48479d88f1333d419ef1e5b943940f5694a84671a2d091f8b4e", + "0x3f52f78d3c4f757f91e9c59fc270abbbf39159e4dace78310f779c4b519aeec1", + "0x29961eab36763635437434c2fa9f6011313c25862211255981b95fa36b38bda1" + ] + }, + { + "leaf": { + "chainId": "1", + "index": "4", + "leafType": 1, + "data": "0x000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002640300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff20000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000002e5c0a36fb0c83ccebcd4d6177a7e223d6f0b7c00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x60a47108b1705651cecad18c444f37a2ea5d2f1e531736aae8607befe3550c8c", + "0x9ce093fd609cf3670f6de6f0a319858d6836fb166148714cd6fb4d5d506f9793", + "0x1abdeb86f7849e2808a0b930edde87b94af2c8cefc07c60a21754e86fb8e8f26", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "0", + "leafType": 0, + "data": "0x000000000000000000000000040f331774ed6bb161412b4cedb1358b382af3a50000000000000000000000003d75d338b4711f8a33d293a2008f07a712513402000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000007e16116661ca8d66c73612382833153911fa03b100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xe77f9f75017ae7156ab895f875273af26088c2881ae6ae3301f836a5a0288552", + "0x373f4703eafd5f5d2a38fd05c3d191baa786627ea58a617d9fb65678767c943f", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "1", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xe9b17c23fa34db691e87365ec1d5da2f8d3df353331a75b5060b6824102464e3", + "0x373f4703eafd5f5d2a38fd05c3d191baa786627ea58a617d9fb65678767c943f", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "2", + "leafType": 1, + "data": "0x000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000479ba509700000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0xdcd71cc9c6df56d92e7eb395f6e289f1526dde8897c37d993d367181d81e88eb", + "0x3f52f78d3c4f757f91e9c59fc270abbbf39159e4dace78310f779c4b519aeec1", + "0x29961eab36763635437434c2fa9f6011313c25862211255981b95fa36b38bda1" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "3", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000642fe5718b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x85cd190070f8e866873eaad133582e89bda762435d4fa8efca25331a813cb29d", + "0x3fe0b3230de5a80debe941589230e6b296f8f0e18f5817ce5a5486bb24f9e8ee", + "0x29961eab36763635437434c2fa9f6011313c25862211255981b95fa36b38bda1" + ] + }, + { + "leaf": { + "chainId": "46", + "index": "4", + "leafType": 1, + "data": "0x0000000000000000000000002b496f19a420c02490db859fefeccd71edc2c04600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aae60000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000648c4cff200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc0c760c0fb4672d06088515f6446a71df0c64c1000000000000000000000000682294d1c00a9ca13290b53b7544b8f734d6501f00000000000000000000000000000000000000000000000000000000" + }, + "proof": [ + "0x772dcecdb98054e92d7387bedd1ccba7e6c15b4fe0d56b1cef0caaa229f0df5e", + "0x9ce093fd609cf3670f6de6f0a319858d6836fb166148714cd6fb4d5d506f9793", + "0x1abdeb86f7849e2808a0b930edde87b94af2c8cefc07c60a21754e86fb8e8f26", + "0xd1b3e7ea94795443c4cfca151f784189f379b73e7f9f65d6cc0c91b40354556b" + ] + } + ] + }, + "configArtifacts": {} +} \ No newline at end of file diff --git a/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/signature.json b/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/signature.json new file mode 100644 index 0000000..37c6a95 --- /dev/null +++ b/proposal/0x80959172dd26e35858e5af42cbaf2946df61e5c7f2b7abd7561ec5cd182510f8/signature.json @@ -0,0 +1,14 @@ +[ + { + "signer": "0x0f14341a7f464320319025540e8fe48ad0fe5aec", + "signature": "0x56c9f2b3a77279688cf079198351b49084858408240ece9d9d61548cd2d990f87f9e740c79eec4068f8fccab9eacff19b1200cad6bdbdee3654963a4c303567e1c" + }, + { + "signer": "0x9F33a4809aA708d7a399fedBa514e0A0d15EfA85", + "signature": "0x591f7084ecfad8f70e9859e49358738fb2cc273d0192bcd29dbbc3305bae75742b09bdfc153d82481b6994ac26d9fc456166589c7c54bc070be2ad4da88269c21c" + }, + { + "signer": "0x53405FB4d71591E33fe07bFbC90bD82E65720ad0", + "signature": "0xdda79a0cc93458c914e949a35855a1a5a1c17c5a3cf4f9b6e77f5876148e3b0d38919e07b1ad22b902d694e83aed4435201075dac4b1bfa532d34461953e19381b" + } +] From 5c543d35e38abe0d354432a1068142512c63ff90 Mon Sep 17 00:00:00 2001 From: echo Date: Thu, 20 Jun 2024 13:37:44 +0800 Subject: [PATCH 6/6] fix --- .../deployment.json | 6 +++--- .../deployment.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/proposal/0x56657e50ef8879c896a9869b7bf07a9da8d809fbbbe38ce4fe91227328768871/deployment.json b/proposal/0x56657e50ef8879c896a9869b7bf07a9da8d809fbbbe38ce4fe91227328768871/deployment.json index 741261c..1499b92 100644 --- a/proposal/0x56657e50ef8879c896a9869b7bf07a9da8d809fbbbe38ce4fe91227328768871/deployment.json +++ b/proposal/0x56657e50ef8879c896a9869b7bf07a9da8d809fbbbe38ce4fe91227328768871/deployment.json @@ -435,7 +435,7 @@ "ecb9a2d5bf63b21013524697f08bc7f6": { "id": "ecb9a2d5bf63b21013524697f08bc7f6", "solcVersion": "0.8.17", - "solcLongVersion": "0.8.17", + "solcLongVersion": "0.8.17+commit.8df45f5f", "input": { "language": "Solidity", "sources": { @@ -813,7 +813,7 @@ "inputs": [ { "solcVersion": "0.8.17", - "solcLongVersion": "0.8.17", + "solcLongVersion": "0.8.17+commit.8df45f5f", "id": "ecb9a2d5bf63b21013524697f08bc7f6", "input": { "language": "Solidity", @@ -6456,4 +6456,4 @@ "buildInfoId": "ecb9a2d5bf63b21013524697f08bc7f6" } } -} \ No newline at end of file +} diff --git a/proposal/0xb44ec8b7eba7706dd210c7f4cbfe8942dfa7bfbf26b583a0cb991d151b0b2ad6/deployment.json b/proposal/0xb44ec8b7eba7706dd210c7f4cbfe8942dfa7bfbf26b583a0cb991d151b0b2ad6/deployment.json index c18e901..c4857f6 100644 --- a/proposal/0xb44ec8b7eba7706dd210c7f4cbfe8942dfa7bfbf26b583a0cb991d151b0b2ad6/deployment.json +++ b/proposal/0xb44ec8b7eba7706dd210c7f4cbfe8942dfa7bfbf26b583a0cb991d151b0b2ad6/deployment.json @@ -1940,7 +1940,7 @@ "522074bb77d1035acef60d9b20c041da": { "id": "522074bb77d1035acef60d9b20c041da", "solcVersion": "0.8.17", - "solcLongVersion": "0.8.17", + "solcLongVersion": "0.8.17+commit.8df45f5f", "input": { "language": "Solidity", "sources": { @@ -2318,7 +2318,7 @@ "inputs": [ { "solcVersion": "0.8.17", - "solcLongVersion": "0.8.17", + "solcLongVersion": "0.8.17+commit.8df45f5f", "id": "522074bb77d1035acef60d9b20c041da", "input": { "language": "Solidity", @@ -9747,4 +9747,4 @@ "buildInfoId": "522074bb77d1035acef60d9b20c041da" } } -} \ No newline at end of file +}