天命改善提案

Destiny Improvement Proposal 0


天命神殿创世

kiyomiya.eth soltclay.destinytemple.eth xizi.destinytemple.eth suyuqing.destinytemple.eth duyuxuan.destinytemple.eth

2024-01-01[UTC+8] Sustain


@简述

以太坊(Ethereum)是一个去中心化的开源的有智能合约功能的公共区块链平台.

命运神殿是一个组织,其运行着包括链上链下的一系列业务/协议,它们都由命运治理维护;

命运治理(Destiny Governance)(亦称天命治理、治理)是命运神殿的治理组织,其通过提案与投票进行治理,此提案规范了提案格式、样式、流程和限制.

DestinyTemple(DST) 与 DestinyExecutor(DSE) 是命运神殿的治理令牌,此提案确定了发行总量,令牌机制等必需值.

命运神殿账户抽象钱包协议V7(亦称命运/天命神殿V7,命运/天命代理,命运/天命钱包等)是由命运神殿发布的第一个以太坊链上的一个去中心化应用(DAPP),由一组模块化的智能合约和一个前端网页组成,
其实现了高度可定制、gas优化、安全、高效、便捷的账户抽象钱包和链上资产管理功能.

此提案是命运神殿账户抽象钱包协议V7版本部署提案,同时也是命运神殿与命运治理创世提案,旨在于创世交易前预定义天命协议与治理运行所必需的包括合约接口、ABI,预计算的部署地址在内的环境与状态值等.

@动机

从第一次以物易物开始,到黄金、白银等一般等价物,再到由国家信用背书的纸币,对于货币的尝试,人们已经历许多;

从往钱庄的第一笔存款开始,到林立的银行、金融机构,再到央行发行的数字货币,对于财富的存储,人们已尝试许多;

然而,这一切都基于对某个中心化实体的信任,而信任的代价是高昂的.

“Less Trust, More Truth” 更少的信任,更多的真相.

信用崩塌,通货膨胀,货币贬值,通过一张纸币,上位者尽情地收割属于人们的财富.

银行破产,存款冻结,理财暴雷,一串数字而已,你的资产真的属于你吗?

“Not your keys, not your coins” 不是你的私钥,不是你的硬币.

通过比特币、以太坊等加密货币,人们第一次彻底掌控了自己的资产,没有人能够在未经授权的情况下挪用不属于他的资产.

这些不受某个单一实体控制的超越主权信用背书的加密货币更可抵抗通货膨胀,货币滥发...

但是,这也将保护资产安全的责任转移到人们自己身上,一旦泄露私钥,将可能导致丢失全部的资产;同时,相比于web2,人们也更容易遭遇黑客攻击、资产被盗等不利事件.

因此部署天命神殿V7协议,可创建专属的账户抽象钱包,自定义包括多签在内的所有权管理方案,有效保护资产安全,

并通过gas优化,多重调用等节省交易费用,

高度的可定制、可组合性能够满足个人,组织的资产管理,价值存储等不同需求.

并设立治理组织以维护协议,其通过提案对所有命运神殿发布的协议/产品进行维护与治理,因此:

-明确的提案限制有助于审查提案,保护治理的安全,降低通过提案进行治理攻击的可能性;

-规范的提案格式有助于阅读和理解提案内容,以便投票;

-明确的提案流程使天命治理能够合理的预期提案状态及其维系时间,以便分配时间来达成共识;

@提议

====>创立命运神殿;

====>部署以下命运神殿账户抽象钱包协议V7版本所有合约及前端网站:

----协议----

天命神殿V7协议 由包括但不限于以下部分组成:

--合约--

-[DestinyFactory]-:其能够使用create,create2,create3三种方式部署以下三种代理合约或者其他任意合约,并能够预计算部署地址.
部署地址:
0x777777CBE0188fe890e0824c0645ecCBe6BC7777

-接口

// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.19; // src/factory/enum/CodeType.sol enum CodeType { CreationCode, RuntimeCode } // src/factory/enum/DeployType.sol enum DeployType { Create3, Create2, Create } // src/factory/enum/ProxyType.sol enum ProxyType { DestinyTempleV7ShadowProxy, DestinyTempleV7BeaconProxy, DestinyTempleV7DiamondProxy, ERC1967UpgradeableBeacon, ERC1967UpgradeableBeaconProxy, ERC1967UniversalUpgradableProxy, ERC1167MinimalProxy, ERC7511MinimalProxy, Contract } // src/factory/interfaces/IDestinyFactory.sol interface IDestinyFactory { event Deployed(address addr); event Nonce(uint256 nonce); event ValidatorChanged(address newValidator); function verifyOwnership(address verifyContract,bytes memory verifyData ) external; function deployAddr(DeployType deployType,ProxyType proxyType,bytes memory params,bytes32 salt,uint256 nonce) external view returns(address creator,address addr); function deploy(DeployType deployType,ProxyType proxyType,address callbackAddr,bytes memory initData,bytes memory params) external payable returns(address addr); function deployCode(ProxyType proxyType,CodeType codeType,bytes memory constructorParametersABI_Encoded) external pure returns(bytes memory code); }

-模块:包括多个不同的模块合约,各自实现不同的功能函数,用户可以部署并使用自定义的模块合约,以下是我方部署的一部分模块合约:

-[Reserve]-
-实现执行交易功能,支持预授权交易、multicall、multidelegatecall;

-[ERC712]-
-实现ERC712交易编码;

-[ECDSA]-
-同时也是所有权验证合约,实现签名检查,支持预授权交易(v==1)和EIP1271签名(v==0);

其中合约签名格式为:

[32字节r值(合约地址)]+[32字节s值(合约签名数据在整个串联签名中的开始位置)]+[1字节v值(v==0)]

合约签名数据格式为:

[32字节签名数据长度]+[签名数据]

串联签名应当按签名者地址值从小到大排序,阁下可使用以下函数排序签名:

// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; struct Signature { uint8 v; bytes32 r; bytes32 s; } /// @dev divides bytes signature into `uint8 v, bytes32 r, bytes32 s`. /// @notice Make sure to peform a bounds check for @param pos, to avoid out of bounds access on @param signatures /// @param pos which signature to read. A prior bounds check of this parameter should be performed, to avoid out of bounds access /// @param signatures concatenated rsv signatures function signatureSplit(bytes memory signatures, uint256 pos) pure returns (Signature memory sign) { uint8 v; bytes32 r; bytes32 s; // The signature format is a compact form of: // {bytes32 r}{bytes32 s}{uint8 v} // Compact means, uint8 is not padded to 32 bytes. // solhint-disable-next-line no-inline-assembly assembly { let signaturePos := mul(0x41, pos) r := mload(add(signatures, add(signaturePos, 0x20))) s := mload(add(signatures, add(signaturePos, 0x40))) // Here we are loading the last 32 bytes, including 31 bytes // of 's'. There is no 'mload8' to do this. // // 'byte' is not working due to the Solidity parser, so lets // use the second best option, 'and' v := and(mload(add(signatures, add(signaturePos, 0x41))), 0xff) } sign = Signature( { v:v, r:r, s:s } ); } contract Ecrecover { function ssig ( bytes32 txHash,//keccak256 hash bytes memory signaturePacked,//ECDSA签名 bytes memory ERC1271_signatureDataPacked //如果是合约签名(v==0)输入合约签名数据,否则输入0x ) external pure returns(bytes memory signaturesSorted,address[] memory signers) { uint256 num = signaturePacked.length/65; bytes memory ERC1271_SignatureDataPacked; address signer; Signature memory sign; bytes[] memory signatures = new bytes[](num); signers = new address[](num); for (uint256 i = 0; i < num;) { sign = signatureSplit(signaturePacked, i); if (sign.v == 0 || sign.v == 1) { signer = address(uint160(uint256(sign.r))); } else if (sign.v > 30) { signer = ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", txHash)), sign.v - 4, sign.r, sign.s); } else { signer = ecrecover(txHash, sign.v, sign.r, sign.s); } signatures[i] = abi.encodePacked(sign.r,sign.s,sign.v); signers[i] = signer; unchecked { ++i; } } for (uint i = 1;i < signers.length;){ address temp = signers[i]; bytes memory _temp = signatures[i]; uint j=i; while( (j >= 1) && (temp < signers[j-1])){ signatures[j] = signatures[j-1]; signers[j] =signers[j-1]; j--; } signatures[j] = _temp; signers[j] =temp; unchecked { ++i; } } for(uint i = 0;i<signatures.length;){ signaturesSorted = abi.encodePacked(signaturesSorted,signatures[i]); unchecked { ++i; } } return(abi.encodePacked(signaturesSorted,ERC1271_signatureDataPacked),signers); } }

-[GuardManager]-
-实现在执行交易前后分别调用一系列用户设定的守卫合约检查交易;

-[Disable]-
-实现禁用合约功能;

合约禁用后仍然可以兑现支票;

合约禁用后发起交易只会在符合条件时自动续命,不会执行call

-[Permit]-
-实现允许用户设定的白名单地址无需所有权验证和守卫检查即可执行交易;

-由于不受守卫与签名检查,批准的调用者被允许:
在合约禁用时执行交易;
(如果已启用TimeLockGuard守卫)通过执行交易改变nonce使被TimeLockGuard要求等待执行的其他交易无效(这可以用于使黑客的攻击交易无效);
-警告:批准的调用者拥有合约的完全控制权,其可以不受限制的执行任意交易并可能阻止通过包括代理合约升级在内的手段撤销其权限,
请确保其受控并被完全信任;

在执行交易时,将轮询信标存储/代理自身存储检查调用者是否已被预先批准;

-[ModuleManager]-
-增删改查模块函数;

-[Dissociate]-
-如果在[天命周期]内代理合约无任何交易,任何人都可以申请自毁合约,
如在[等待期间]仍无任何交易,则任何人可自毁代理合约并与申请自毁者分别获得代理合约中1/26的[以太币奖励],
其余以太币将发送至[销毁地址].
-初始[天命周期]: 77天
-初始[等待期间]: [天命周期]
-初始[销毁地址]: 0地址
-初始[preDissociateTime]:1725321600(在此时间后能够发起预备解离交易并设置[finalDissociateTime]为block.timestamp+[天命周期],进入[等待期间]); -初始[finalDissociateTime]:0(在此时间后可发起解离交易销毁合约);

-[StorageAccessible]- -设置/读取任意存储槽

-[Twitter]-
-推文

-在部署中,上述模块实际集成在-[GenesisIntegrated]-模块中作为一个合约部署; 部署地址:
0x0000000000088f858422a11e482837EbA7d1D1D0

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-[Fallback]-
部署地址:
0x0000000000EEe455A197CEbD077b58258321B375

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-回退函数管理,实现ERC721、ERC1155、ERC777代币接收挂钩;
-实现Aave、Dydx、Uniswap闪电贷接收挂钩;

集合接口为:

// SPDX-License-Identifier: LGPL-3.0-only // SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.19; enum IsStorage{ No, Yes } enum StorageType { Struct, Array, Mapping } enum Operation { Call, DelegateCall } enum AllowFailure { Flase, True } struct Call { address target; Operation op; AllowFailure allowFailure; uint256 value; bytes callData; } struct DestinyTransaction{ Call[] calls; bytes signatures; uint256 chequeNonce; uint256 executableTime; } struct Result { bool success; bytes returnData; } struct Storage{ bytes32 slot; bytes32 value; } struct SlotRouter { StorageType storageType; bytes index; } struct Info { address owner; uint256 number; } interface IGenesisIntegrated { event Nonce(uint256 nonce); event TransactionExecuted(bytes32 indexed txHash); event Sstored(bytes32 slot, bytes32 value); event Tweeted(address indexed author, uint96 time, string tweet); event Flash(address indexed callbacker,address indexed initiator); event $PreDestinyDissociate(address indexed txOriginator,address indexed caller,uint32 finalDissociateTime); event $DestinyDissociated(address indexed txOriginator,address indexed caller,uint32 finalDissociateTime,uint256 reward,uint256 dissociate); function $Dissociate_1XNPRb() external; function DESTINYTEMPLE_OWNERSHIP_STATE_CONTRACT_1() external view returns(address); function DESTINYEXECUTOR_OWNERSHIP_STATE_CONTRACT_2() external view returns(address); function OWNERSHIP_OWNERSHIP_STATE_CONTRACT_3() external view returns(address); function verifyOwnership(bytes memory verifyData) external; function $EncodeTxHash_1b7zSf(Call[] memory calls,uint256 nonce,uint256 deadline) external view returns (bytes32 txHash); function getAllGuards_vgA7g8() external view returns (address[] memory); function getModule_0jx1MB(bytes4 funcSelector) external view returns(address module); function $ExecuteTx_mzjimr(DestinyTransaction memory dtx) external payable returns (Result[] memory results); function slot_lB_EC_(bytes32 initialSlot,SlotRouter[] memory route) external pure returns (bytes32 slot); function sload_WaneqW(bytes32 slot) external view returns (bytes32 result); function sload_YRbAA3(bytes32[] memory slot) external view returns (bytes32[] memory result); function sstore_fO62sb(Storage memory _storage) external; function sstore_0ujRM0(Storage[] memory _storage) external; function $Tweet_$Xll(IsStorage isStorage,string memory tweet) external; function supportsInterface(bytes4 interfaceId) external pure returns (bool); function onERC721Received(address,address,uint256,bytes calldata) external pure returns (bytes4); function onERC1155Received(address operator,address from,uint256 id,uint256 value,bytes calldata data) external returns (bytes4); function onERC1155BatchReceived(address operator,address from,uint256[] calldata ids,uint256[] calldata values,bytes calldata data) external returns (bytes4); function isValidSignature(bytes memory _data,bytes memory _signature) external view returns (bytes4 magicValue); function isValidSignature(bytes32 _hash,bytes memory _signature) external view returns (bytes4 magicValue); function callFunction(address initiator, Info memory accountInfo, bytes memory data) external; function executeOperation(address asset,uint256 amount,uint256 premium,address initiator,bytes calldata params) external returns (bool); function executeOperation(address[] calldata assets,uint256[] calldata amounts,uint256[] calldata premiums,address initiator,bytes calldata params) external returns (bool); function uniswapV2Call(address initiator,uint256 token0Amount,uint256 token1Amount,bytes calldata params) external; function uniswapV3FlashCallback(uint256 fee0,uint256 fee1,bytes calldata data) external; }

-[守卫]-
-包括多个不同的守卫合约,在通过[Reserve]模块执行交易时,各自运行不同的守卫检查,
用户可以部署并使用自定义的守卫合约,其应当实现并仅应存在(external或public的)以下接口函数:

// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.19; enum AllowFailure { Flase, True } enum Operation { Call, DelegateCall } struct Result { bool success; bytes returnData; } struct Call { address target; Operation op; AllowFailure allowFailure; uint256 value; bytes callData; } struct DestinyTransaction{ Call[] calls; bytes signatures; uint256 chequeNonce; uint256 executableTime; } interface IGuard { function checkTransaction(DestinyTransaction memory dtx,address executor) external payable returns(bytes memory); function checkAfterExecution(bytes32 txHash,Result[] memory results) external payable returns(bytes memory); }

-并在检查通过时返回

//Guard.Check.Passed bytes constant PASSED = hex'47756172642e436865636b2e506173736564';

-在检查驳回时返回具体原因bytes值.

以下是我方部署的一部分守卫合约:

-[DissociateGuard]-
部署地址:
0x00000000006777e120a554048F5E8AaA0d5eB7Be

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-执行交易时,检查是否延续模块[Dissociate]的[天命周期]. -启用此守卫时,此守卫应当是守卫数组中的第一个元素以保证自动续命.

为节省gas,7天内只会延续一次;

-[PraetorianGuard]-
部署地址:
0x000000000066939fB6bFBbfA81c1B68bF73705cB

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-检查合约是否被用户禁用;

-[TimeLockGuard]-
部署地址:
0x0000000000603A31A67e0854De29125f2E3723aC

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-为守卫启用后的每笔交易增加一个[锁定期],执行交易时检查是否已到时间;
-初始[锁定期]:86400秒
-此模块在部署脚本中部署但不默认启用.

-禁用守卫的交易同样被守卫检查;

-[所有权状态合约]-
-是一个或多个状态存储合约,其存储所有权状态值,并允许所有权验证合约读取;
以下是我方部署的一部分-[所有权状态合约]-:

-[Ownership]-
-基于msg.sender的nonce存储合约,为不同的msg返回和设置单独的nonce值;

-接口

// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.19; interface IOwnership { function incrementNonce() external; function $Nonce() external view returns (uint256); function $Nonce(address addr) external view returns (uint256); }

-用户可以部署自己的[所有权状态合约]

所有权状态合约应当限定仅允许终端代理合约增加nonce;

-[所有权验证合约]-
-是一个或多个模块合约,其使用所有权状态合约中的值来验证所有权;

用户可以选择所有权分配,控制方式;用户也可以自行部署所有权验证合约,其应当实现以下接口:

interface IOwnershipValidator { function DESTINYTEMPLE_OWNERSHIP_STATE_CONTRACT_1() external view returns(address); function DESTINYEXECUTOR_OWNERSHIP_STATE_CONTRACT_2() external view returns(address); function OWNERSHIP_OWNERSHIP_STATE_CONTRACT_3() external view returns(address); function verifyOwnership(bytes memory verifyData) external; }

-其中,OWNERSHIP_STATE_CONTRACT()函数为所有权状态合约的地址,
作为不可变量存储在所有权验证合约中,默认提供3个插槽,用户可根据所有权状态合约数量提供更多或更少插槽,
命名为[所有权状态合约名称前缀]OWNERSHIP_STATE_CONTRACT[编号]
上述命名也作为[所有权状态合约]的完整名称,但使用大驼峰而不是全大写命名.

所有权验证合约应当防止验证数据跨链重复使用
所有权验证合约应当在被call和delegatecall调用时保持行为一致,
所有权验证合约具有存储和不可变量,
命运工厂将在call调用所有权验证合约时,使用其ProxiesLib.proxiesStorage().Beacon存储值与不可变量,
用户应当在自行部署的所有权验证合约中增加以下代码:

constructor(address _osca_1,address _osca_2,address _osca_3) payable { _OWNERSHIP_STATE_CONTRACT_1 = _osca_1; _OWNERSHIP_STATE_CONTRACT_2 = _osca_2; _OWNERSHIP_STATE_CONTRACT_3 = _osca_3; //不可删除,设置此合约的ProxiesLib.proxiesStorage().Beacon与ProxiesLib.proxiesStorage().Storage存储槽, //命运工厂会在call调用此合约进行所有权验证时使用这些值,不会在被代理合约delegatecall时使用 assembly { sstore(0x3418148758b1f9e91a7d35447272be5d6ae049a7e84e742f66587a44d93e29cb,address()) sstore(0x3418148758b1f9e91a7d35447272be5d6ae049a7e84e742f66587a44d93e29cc,address()) } }

-天命代理合约:代理合约是用户终端合约,合约的状态更改始终保存在代理合约中;命运神殿提供以下三种不同的代理合约:

-天命信标(天命钻石代理)-
部署地址:
0x77777761d1323F14e0Bd73142839BA561C777777

注意:这是天命治理控制的代理合约,用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

其将信标与存储合约地址均设置为自身;
钻石代理是指EIP-2535提出的钻石代理方案,使一个代理合约可以拥有多个实现,并能够进行函数级别的部分升级.
钻石代理中存储一个函数选择器=>模块的映射,在被call时依据函数选择器查找对应模块函数并delegatecall模块;
钻石代理可以增删改查实现的函数.
用户可以自选使用哪些模块的哪些函数并能够增删改查模块函数. 用户也能够自行部署信标合约;
升级信标会更改所有使用此信标的信标和影子代理获取的函数实现地址.

-天命信标代理-
部署地址:
0x77777715926756A85397255dB1051a0C98747777

注意:这是天命治理控制的代理合约,用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

其将信标合约地址设置为信标合约并将存储合约地址设置为自身;
在被call时将函数选择器作为参数call天命信标合约以查找对应模块函数并直接delegatecall模块;
信标代理使用自身存储进行条件检查,每个代理可以拥有不同的值,并且需要初始化这些值;

-天命影子代理-
部署地址:
0x7777772adA658363911d27CdC95a01A87ba47777

注意:这是天命治理控制的代理合约,用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

其将信标与存储合约地址均设置为信标合约;
在被call时将函数选择器作为参数call天命信标合约以查找对应模块函数并直接delegatecall模块;
影子代理使用信标存储值进行所有权验证,使用同一信标的影子代理条件检查值相同,不需要初始化值;
在信标合约中拥有的权限也在影子代理中生效,更改信标合约条件检查值也将对影子代理生效;
更改影子代理条件检查值将存储在影子代理中,但在转换为信标或钻石代理后才会使用这些值;

在使用信标和影子代理时:
-用户可以自选使用哪个信标并可改查信标;
-通过将信标合约地址更改为信标合约或自身地址,能够与钻石代理相互转换;
-通过将存储合约地址更改为信标合约或自身地址,能够相互转换;

-如果信标中未找到对应模块函数,将尝试从自身存储中查找;

在执行交易时,将轮询信标存储/代理自身存储检查调用者是否已被预先批准;

此外,还有一种未使用的代理模式,即将信标合约地址设置为自身并将存储合约地址设置为信标合约;

当然,也可以将信标与存储合约地址设置为自身或信标合约以外的目标;

用户也可以将天命代理设置为其他代理合约的逻辑合约来使用;

可以嵌套delegatecall,与call和staticcall一样拥有调用栈,由于degatecall特性,无论嵌套的合约使用call或者delegatecall,存储修改仅在最外层合约生效,
即甲合约delegatecall乙合约,乙合约再delegatecall丙合约,存储修改都是修改甲合约的;
在丙合约中address(this),msg.sender是甲合约(最外层delegatecall合约)
乙合约call/staticcall丙合约,在丙合约中address(this)是丙合约,msg.sender是甲合约(最外层delegatecall合约)

-另外,此提案还将部署由将在接下来提到的九个初始执行者地址组成的[天命联合储备]使用的[所有权验证合约],[Reserve]模块合约(在部署中作为一个合约[_mod_Integrated_2]部署),及其信标[_beacon_2]与影子代理[_shadowProxy_2]合约,它们使用上述[_mod_Integrated_2].

-[_mod_Integrated_2]-
部署地址:
0x0000000000CBdFe53De6f5cFAA44f81898113610

-接口:

// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.19; enum IsStorage{ No, Yes } enum StorageType { Struct, Array, Mapping } enum Operation { Call, DelegateCall } enum AllowFailure { Flase, True } struct Call { address target; Operation op; AllowFailure allowFailure; uint256 value; bytes callData; } struct DestinyTransaction{ Call[] calls; bytes signatures; uint256 chequeNonce; uint256 executableTime; } struct Result { bool success; bytes returnData; } struct Storage{ bytes32 slot; bytes32 value; } struct SlotRouter { StorageType storageType; bytes index; } struct Info { address owner; uint256 number; } interface IGenesisIntegrated { event Nonce(uint256 nonce); event TransactionExecuted(bytes32 indexed txHash); event Sstored(bytes32 slot, bytes32 value); event Tweeted(address indexed author, uint96 time, string tweet); event Flash(address indexed callbacker,address indexed initiator); event $PreDestinyDissociate(address indexed txOriginator,address indexed caller,uint32 finalDissociateTime); event $DestinyDissociated(address indexed txOriginator,address indexed caller,uint32 finalDissociateTime,uint256 reward,uint256 dissociate); function OWNERSHIP_OWNERSHIP_STATE_CONTRACT_1() external view returns(address); function verifyOwnership(bytes memory verifyData) external; function $EncodeTxHash_1b7zSf(Call[] memory calls,uint256 nonce,uint256 deadline) external view returns (bytes32 txHash); function getModule_0jx1MB(bytes4 funcSelector) external view returns(address module); function $ExecuteTx_mzjimr(DestinyTransaction memory dtx) external payable returns (Result[] memory results); function slot_lB_EC_(bytes32 initialSlot,SlotRouter[] memory route) external pure returns (bytes32 slot); function sload_WaneqW(bytes32 slot) external view returns (bytes32 result); function sload_YRbAA3(bytes32[] memory slot) external view returns (bytes32[] memory result); function sstore_fO62sb(Storage memory _storage) external; function sstore_0ujRM0(Storage[] memory _storage) external; function $Tweet_$Xll(IsStorage isStorage,string memory tweet) external; function supportsInterface(bytes4 interfaceId) external pure returns (bool); function onERC721Received(address,address,uint256,bytes calldata) external pure returns (bytes4); function onERC1155Received(address operator,address from,uint256 id,uint256 value,bytes calldata data) external returns (bytes4); function onERC1155BatchReceived(address operator,address from,uint256[] calldata ids,uint256[] calldata values,bytes calldata data) external returns (bytes4); function isValidSignature(bytes memory _data,bytes memory _signature) external view returns (bytes4 magicValue); function isValidSignature(bytes32 _hash,bytes memory _signature) external view returns (bytes4 magicValue); function callFunction(address initiator, Info memory accountInfo, bytes memory data) external; function executeOperation(address asset,uint256 amount,uint256 premium,address initiator,bytes calldata params) external returns (bool); function executeOperation(address[] calldata assets,uint256[] calldata amounts,uint256[] calldata premiums,address initiator,bytes calldata params) external returns (bool); function uniswapV2Call(address initiator,uint256 token0Amount,uint256 token1Amount,bytes calldata params) external; function uniswapV3FlashCallback(uint256 fee0,uint256 fee1,bytes calldata data) external; }

注意:用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-[_beacon_2]-
部署地址:
0x7777770f3620b753353942cce61cf959f3Ee7777

注意:这是天命治理控制的代理合约,用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

-[_shadowProxy_2]-
部署地址:
0x77777713dD7ace844BAD551b347d51D1C3e67777

注意:这是天命治理控制的代理合约,用户应该部署自己的代理合约并delegatecall模块和守卫合约而不是直接call调用;

--前端--

-天命神殿V7协议提供一个由天命治理维护的前端网页,其能够与包括天命神殿V7协议在内的任何合约交互(由 remix 提供)

-要与在Etherscan开源的合约交互,仅需输入合约地址;
-要与未开源的合约交互,请上传此合约的ABi或接口/使用已知接口/发送原始数据;

要调用天命代理中的某个模块函数,请上传此模块函数的ABi文件或接口;阁下一般能够在模块的发布页找到;

前端提供的任何功能均能够直接调用合约进行操作而不依赖天命服务器;

====>设立命运治理(Destiny Governance)作为命运神殿的治理组织;

====>在命运治理内部设立[天命联合储备];

====>部署DestinyTemple(DST) 与 DestinyExecutor(DSE)代币合约,并作为治理代币;

----治理----

-治理通过提案和基于投票权的投票结果治理协议.

-DestinyTemple(DST)- 部署地址:
0x777777e1767b44191c408c044f7b7453e6a27777

-采用ERC-20标准

-无任何机制.

-可通过销毁1枚DSE铸造7777777枚.

-至多发行147777770枚.

-至少/初始发行77777777枚.

-令牌精度为0.

-在添加流动性之前开启代币私募.

-初始/私募发行价格为0.000000012850980235 ΞETH.

-初始[DST(命运神殿)]令牌分配:

-分配 | 初始发行量占比 | 最大发行量占比(不计算DSE令牌1.07倍权重时的投票权占比)

-治理:17777777枚 | 22.85% | 12.03%

-私募:15555554~0枚 | 19.99%~0% | 10.52%~0%

-流动性:38914999~54470553枚 | 50.03%~70.03% | 26.33%~36.85%

-初始执行者:614383*9=5529447枚 | 7.1% | 3.74%

-私募部分未分配完的代币将用于添加流动性.

-私募资金将用于部署gas费,多余部分将用于添加流动性,不足部分将由dstinyTemple.eth补足差额.

-流动性将在Uniswap V4部署后添加.

-DestinyExecutor(DSE)- 部署地址:
0x777777efc8f022c2938aaac183831774ba627777

-采用ERC721标准

-每个地址仅允许持有一枚,且DSE的转移与销毁需要提案通过.

-可通过销毁7777777枚DST铸造1枚.

-至多发行19枚.

-至少发行0枚.

-初始发行9枚.

-初始/恒定发行价格为7777777 DST.

-初始[DSE(命运执行者)]令牌分配:

- kiyomiya.eth

-soltclay.destinytemple.eth

-xizi.destinytemple.eth

-suyuqing.destinytemple.eth

-duyuxuan.destinytemple.eth

-cicada.destinytemple.eth

-jianyue.destinytemple.eth

-umo.destinytemple.eth

-uli.destinytemple.eth

-以上初始执行者地址将组成并控制[天命联合储备]及其信标[_beacon_2]与影子代理[_shadowProxy_2]合约;

-DSE令牌基于铸造时销毁的DST数量享有1.07倍的投票权即等同于8322221枚DST的投票权

为节省gas,仅当签名者持有DST令牌数量取余7777为0时才检查DSE令牌投票权;

-持有或不持有任何令牌均可参与由天命治理直接治理的所有项目的治理.

--提案--

-提案规则-
提案应当遵从以下规则

-提案通过所需总投票权与法定投票权门槛均为半数以上的总投票权,即为[(DST总发行量+DSE当前发行量*8322221)/2+1].

-每个提案编号应当仅使用一次.

-一般情况下,提案投票期应当为7天.

注意:并未在合约层面限制提案投票时间,请在投票时核对提案所请求交易的executableTime参数;

-在投票期结束后,提案应当进入[TimeLockGuard]守卫指定的锁定期,在锁定期后才可执行提案所请求的交易.

注意:锁定期由[TimeLockGuard]守卫实现,若未启用此守卫,则不存在锁定期(默认不启用);

-应当按时间顺序执行提案以避免状态重写.

-此后的每个提案应当仅处理一件事,即不得将多个较弱或没有因果关联性的事务并入一个提案以此迫使治理一并通过或反对,特别是在应急处理时.

-提案类型-

天命提案被分为:

--解离[DDP]:此类型提案专用于提议[解离]此前的提案及其实践.

--维系[DSP]:此类型提案可用于提议继续[维系]即将[解离]的提案、微小或保守或回退的[改善]提议、回滚提案及其实践、应对突发事件或攻击.

--改善[DIP]:此类型提案可用于创新、改进、完善协议且较为激进或长远的提议或改进、完善、更新此前的提案.

三种类型,提案流程一致.

-提案状态-

天命提案被分为:

--解离[Dissociate]:提案未通过或已废弃、已完成.

--维系[Sustain]:提案已通过并正在持续生效中.

--改善[Improvement]:提案正在接受投票或提案被新提案改善,当新提案处于改善[Improvement]或维系[Sustain]状态时,原提案被标记为改善[Improvement],当新提案解离[Dissociate]时,一并解离[Dissociate]原提案.

三种状态.

-提案流程-

-发起提案:进入改善[Improvement]状态接受投票;

-投票:只有改善[Improvement]状态的提案接受投票;持有任何一枚治理令牌即可参与治理投票,要赞成提案,需要签署提案所请求的交易并公布签名(对于不涉及链上更改的提案,仅需在链下治理赞成提案),要反对提案,则什么都不用做.

-结果:投票时间结束时,若提案通过,则提案状态转换为维系[Sustain];若提案未通过,则提案状态转换为解离[Dissociate].

-锁定:(如果启用了[timeLockGuard]守卫)提案通过后,进入[TimeLockGuard]守卫指定的锁定期,在锁定期后方可执行提案所请求的交易.

-执行:提案通过后,任何人都可以使用提案赞成者提供的签名执行提案请求的交易,若提案并非持续生效,在执行提案后提案状态转换为解离[Dissociate];

注意:提案在执行时而不是投票签名时或锁定期通过提案赞成者的签名统计签名者的实时投票权,如果在最终执行之前签名者的投票权减少,可能导致总赞成票少于法定人数进而导致提案无法执行.

注意:治理在链下由提案的形式进行,若能够手机到足够的投票权,实际上可以直接调用治理合约执行交易,在交易执行前不会有任何链上记录.

-提案格式-

提案应当遵从以下格式及样式要求

-提案md文件头部应当添加

<head> <style> h1,h2 {border-bottom: none} h1,h2,h3,a,.footer{ color:#ea3939 } b,i,p { color:#e3e3e3; } html{ background-color:#2d0a0a ; color: #e3e3e3; } div{ text-align:center; } a{ text-decoration: none; } a:hover { color: #e3e3e3; text-decoration: none; } </style> </head>

样式.

规范格式请参见此提案,由上至下依次为
logo
提案类型
提案类型(英文全称)及编号
分割线
提案标题
提案作者
提案时间与提案状态
分割线
文本"@简述"
提案简述
文本"@动机"
提案动机
文本"@提议"
提议内容
分割线
文本"命运与您同在"
超链接文本"@destinytemple.eth"
文本"©通过"、超链接文本"CC0"、文本"放弃版权和相关权利"
[提案keccak file hash值]
[提案发起者对提案keccak file hash值的ECDSA签名]

-logo处应当使用以下img标签

<img decoding="async" src="https://ipfs.io/ipfs/QmRVHCn61tZroF5j7d1jsSqoWJGNE7MfumnDjBNMvKGsaQ" height="77px" width="77px"/>

-[提案类型]应当使用一级标题,并使用[**]语法的粗体文本,文本颜色应当为#ea3939.

-[提案类型(英文全称)及编号]应当使用三级标题,并使用[**]语法的粗体文本,文本颜色应当为#ea3939.

-所有[分割线]应当使用[---]语法,其余位置不得使用[分割线]语法.

-[提案标题]应当使用二级标题,并使用[**]语法的粗体文本,文本颜色应当为#ea3939.

-[提案作者]、[提案时间与提案状态]、[提案简述]、[提案动机]、[提议内容]应当分别处于并只处于一个不可分割的

<b><i>

与不可分割的

</i></b>

之间,文本颜色应当为#e3e3e3.

-[文本"@简述"]、[文本"@动机"]、[文本"@提议"]应当使用三级标题,并使用[**]语法的粗体文本,文本颜色应当为#ea3939.

-[文本"命运与您同在"]、[超链接文本"@destinytemple.eth"]、[文本"©通过"、超链接文本"CC0"、文本"放弃版权和相关权利"]、[提案keccak file hash值]、[提案发起者对提案keccak file hash值的ECDSA签名]、应当分别处于并只处于一个

<br/> <b class="footer">

</b>

之间,文本颜色应当为#ea3939.

-所有标题,文本均不应有下划线.

-可以使用包括但不限于引用、代码块等Markdown语法.

-提案ECDSA签名与验证:
-签名:提案md文件末尾应当在-[提案格式]-指定的位置附带[提案keccak file hash值]与[提案发起者对提案keccak file hash值的ECDSA签名].

-验证:从提案的md文件末尾删除以下代码

<br/> <b class="footer">Keccak256:[提案keccak file hash值]</b> <br/> <b class="footer">ECDSA:[提案发起者对提案keccak file hash值的签名]</b>

然后keccak256提案.md文件,阁下应该能够得到与提案结尾标注一致的keccak256 hash值,
如果没有,文件可能已被篡改;

阁下可使用模块-[ECDSA]-中的签名排序函数恢复签名者地址,请比对提案发起者地址,
如果不一致,文件可能已被篡改;

-提案限制-
-除了应当遵从本提案中[-提案规则-]小节的条款以外,提案内容不受法律、规章制度、行政命令、道德要求、人道主义价值观等任何规则的限制.

参与天命治理可能会使阁下被迫承受来自某些实体的预料之中或之外的利益损害后果,尤其是在提议/赞成损害它们既得利益的提案时;
与命运神殿交互当自负因果,始终保持匿名参与天命治理/使用天命产品或服务是明智的选择;

----请求交易----
====>对天命治理合约执行在部署脚本中指定的以下交易:

Call[] memory cs = new Call[](9); bytes32 txHash; bytes memory sigs; { //genesis { //设置守卫 Storage memory ss1 = Storage({ slot:0x5566692eb2e0bc5a4f729de0a7a66a9661380f78babbd605df324ac8020cae9c, value:bytes32(uint256(uint160(_guard_DissociateGuard))) }); Storage memory ss2 = Storage({ slot:0x5566692eb2e0bc5a4f729de0a7a66a9661380f78babbd605df324ac8020cae9d, value:bytes32(uint256(uint160(_guard_PraetorianGuard))) }); //设置守卫数组长度存储槽为2 Storage memory ss3 = Storage({ slot:0x0773179f95686cfa403ee0632e2afdedc5d6cb2ad8dd1a22ab0e7b119fa0c80e, value:bytes32(uint256(2)) }); cs[0] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss1) }); cs[1] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss2) }); //设置守卫数组长度 cs[2] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss3) }); } { //设置Dissociate模块存储槽(销毁地址,解离时间,周期) bytes20 destroyAddress = bytes20(uint160(_beacon)); bytes4 finalDissociateTime = bytes4(uint32(0)); bytes4 preDissociateTime = bytes4(uint32(1725321600)); bytes4 destinyCycle = bytes4(uint32(77 days)); Storage memory ss4 = Storage({ slot:0xa557b1dd537da16544b788a825f1cea7017fe2aa0eecefea49bccd39c82035ec, value:bytes32(bytes.concat(destroyAddress,finalDissociateTime,preDissociateTime,destinyCycle)) }); cs[3] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss4) }); } { //设置permit Storage memory ss5 = Storage({ slot:keccak256( abi.encodePacked( bytes32(uint256(uint160(address(_beacon_2)))), //bytes32(uint256(keccak256("MOD_STORAGE_SLOT_PERMIT"))-7); bytes32(0xab2f7d576e02882013420b922596f119c97176f32df84e313e20c215a712fea1) ) ), value:bytes32(uint256(1)) }); cs[4] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss5) }); Storage memory ss6 = Storage({ slot:keccak256( abi.encodePacked( //AAVE_LENDING_POOL_V2 bytes32(uint256(uint160(address(0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9)))), //bytes32(uint256(keccak256("MOD_STORAGE_SLOT_PERMIT"))-7); bytes32(0xab2f7d576e02882013420b922596f119c97176f32df84e313e20c215a712fea1) ) ), value:bytes32(uint256(1)) }); cs[5] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss6) }); Storage memory ss7 = Storage({ slot:keccak256( abi.encodePacked( //AAVE_POOL_V3 bytes32(uint256(uint160(address(0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2)))), //bytes32(uint256(keccak256("MOD_STORAGE_SLOT_PERMIT"))-7); bytes32(0xab2f7d576e02882013420b922596f119c97176f32df84e313e20c215a712fea1) ) ), value:bytes32(uint256(1)) }); cs[6] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss7) }); Storage memory ss8 = Storage({ slot:keccak256( abi.encodePacked( //DYDX_SOLO_MARGIN bytes32(uint256(uint160(address(0x1E0447b19BB6EcFdAe1e4AE1694b0C3659614e4e)))), //bytes32(uint256(keccak256("MOD_STORAGE_SLOT_PERMIT"))-7); bytes32(0xab2f7d576e02882013420b922596f119c97176f32df84e313e20c215a712fea1) ) ), value:bytes32(uint256(1)) }); cs[7] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss8) }); Storage memory ss9 = Storage({ slot:keccak256( abi.encodePacked( bytes32(uint256(uint160(address(_shadowProxy_2)))), //bytes32(uint256(keccak256("MOD_STORAGE_SLOT_PERMIT"))-7); bytes32(0xab2f7d576e02882013420b922596f119c97176f32df84e313e20c215a712fea1) ) ), value:bytes32(uint256(1)) }); cs[8] = Call({ target:_beacon, op:Operation.Call, allowFailure:AllowFailure.Flase, value:0, callData:abi.encodeWithSelector(0x0000000e, ss9) }); } //计算txHash txHash = ectxHash(_beacon,cs,0,0); //签名 sigs = hex'0x9aa7cbc0ee74465ee264105c8e441865124e24e6cf4f0a1959503b2c1d9b6fdb023a81c5bc876c33b734fabee90fed269c46e4421dccc92e98c61745953e9b2e1b4e62d3bed2d2d6b061989410bc6103d5301ca1a9bcabfd3a88abee6eb160e7710b3cad668f7fdf391fc71e6e66875e4aeca5227ae9659bcfffd9a6911eb059f31c4b68d21f3999e956d0429bea6813965b573fcc9e0b74558c593ca62a55763ec446d481a977d1a2dfba6bbfb07a7365a6bce0e3c607fa743b327f909607490c4a1b6f2685b2821bc210a8bb9276f9875ceaac882151d1512899cc03e6195e056e3f7f006a29150c1a23eb375a532336e587b6e2ae54d9696a14a44fa7a9ac2f590b1b'; //排序 (sigs,) = ssig(txHash,sigs,hex''); //编码genesis交易 DestinyTransaction memory _dtx = DestinyTransaction({ calls:cs, signatures:sigs, chequeNonce:0, executableTime:0 });

Calls[0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a2000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e5566692eb2e0bc5a4f729de0a7a66a9661380f78babbd605df324ac8020cae9c00000000000000000000000000000000006777e120a554048f5e8aaa0d5eb7be0000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e5566692eb2e0bc5a4f729de0a7a66a9661380f78babbd605df324ac8020cae9d000000000000000000000000000000000066939fb6bfbbfa81c1b68bf73705cb0000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e0773179f95686cfa403ee0632e2afdedc5d6cb2ad8dd1a22ab0e7b119fa0c80e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000ea557b1dd537da16544b788a825f1cea7017fe2aa0eecefea49bccd39c82035ec77777761d1323f14e0bd73142839ba561c7777770000000066d65180006583800000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e37eddea273dcf6e2ea72533f5d4e9c385749e68148262d971b75f356938c72da00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000ebb7382a9a0017dab7736142ac67350e4a6e790f1e9529266a42d387ecbc3edec00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e1998732b83413223c31063d45e4e4b08c16e32357eda15ea9f7b1a3d31602a5200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e607fd3f56ed6ee57a8214fbe464b04c3005b40cd2047015d5c45451b0849f77900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000077777761d1323f14e0bd73142839ba561c77777700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000440000000e8a2177663c6b4a1c91b61fbe22483717e089b3d1828b0f4e5223afd977d403aa000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000]

txHash[0xa7173b9b69d121638a380bd47c90de9d9a454d6af596ed8ac5246f4614dab146]

Sigs[0x9aa7cbc0ee74465ee264105c8e441865124e24e6cf4f0a1959503b2c1d9b6fdb023a81c5bc876c33b734fabee90fed269c46e4421dccc92e98c61745953e9b2e1b4e62d3bed2d2d6b061989410bc6103d5301ca1a9bcabfd3a88abee6eb160e7710b3cad668f7fdf391fc71e6e66875e4aeca5227ae9659bcfffd9a6911eb059f31c4b68d21f3999e956d0429bea6813965b573fcc9e0b74558c593ca62a55763ec446d481a977d1a2dfba6bbfb07a7365a6bce0e3c607fa743b327f909607490c4a1b6f2685b2821bc210a8bb9276f9875ceaac882151d1512899cc03e6195e056e3f7f006a29150c1a23eb375a532336e587b6e2ae54d9696a14a44fa7a9ac2f590b1b]

这将在[天命治理(beacon)]中:
-启用以下守卫:
-[_guard_DissociateGuard]-
-[_guard_PraetorianGuard]-

-设置 -[Dissociate]- 模块的:
-[销毁地址]为
-[天命治理(beacon)]- ;
-[天命周期]为 77 days;
-[preDissociateTime]为1725321600;
-[finalDissociateTime]为0;

-批准(Permit)以下合约能够不受[守卫与签名检查]地执行交易:
-[天命联合储备信标代理(_beacon_2)]-
-[天命联合储备影子代理(_shadowProxy_2)]-
-[AAVE_LENDING_POOL_V2]-
-[AAVE_POOL_V3]-
-[DYDX_SOLO_MARGIN]-

----初始化----

-以上内容中的数值由本提案在部署之前预先指定并在创世交易被确认时初始化生效,其中的[初始[]:值]能够被用户修改,其余值不可修改;

----部署----
-使用以下部署脚本(DestinyTempleV7Deploy.sol)通过[forge script]部署本提案[----协议----]部分列出的所有合约:
部署脚本:
点此下载

-指定部署者:
kiyomiya.destinytemple.eth

-预估gas:
<=21000000

-ges-price:
<=5 gwei

-Max-Priority:
<=0.1 gwei

-预估gas fee:
<=0.1071 ΞETH

-交易发起时间:
2024-06-18 08:00[UTC] | 1718668800 前

-部署gas fee将由私募资金提供,若不足,将由dstinyTemple.eth补足差额.

====>使本提案所提议内容及其实施不可被解离.

====>使本提案所提议内容及其实施不可被改善.

====>使本提案在实施后进入维系状态.



命运与您同在
@destinytemple.eth
©通过CC0放弃版权和相关权利
Keccak256:296ec1310c4e30ae1ba723a2850912db90f5b15842c1e230bd1365bcf9fcded4
ECDSA:0x9ed79dc20ff51e770edb4eb5d2a6d92a31d3e2f91c3cb87cc8fe1d66f39fbb3240a226b695607d5c882e9f58e93343373a05aef480d6fdbf034ccdbf73a7ee321c0c68af83331f25959411106f3c68460777d03b7db253e5c6c62db91a75dbe6e83813cb16f41e3d3f30248b50483fd10aa6a14840eb28d1c27b8d780d1bc61e8d1cd500816649451c2a2de874c53c78eca6cfc46442abfc6ffe7b1195ba57ed2c140f7653325c5475c27adaf1cca5acc310ccf15c8aa91bd13d4f45bfe5ec04c4ea1b92c76bc74fb943124f149a4a5b89d632bdc124e081b1d69c95a2b8d7596bafbf67d17ee5f9015bc8989c65309d8811eaa2b9cf39177ae5a66170b8a1b3f7dbca1b681dea6338fbc172c36a152a9094049c6cdf974de3eb8477d33ace32e9b69b02335df02bc3379b42944a673988c65d2633cad7bf8ef881129d5063ba412bf78e1b913f32de14bdbce7e453bcb528e69717c6046506ef0fe12ee020006db1272160671930aee1e1e008ac966883fca5b19f5026ae5d2970af3c2020ccaea917f64e1c042bf0f4eb9712dccc49df2500058e2ed0a724a8719e8d764c2d6312391315c55c0ba9fa86a8acb1069e2dba089bb87f91f96f0ee0d0a4ad095dbf99a1ca70251c1147cafaa4df5e2dc1ff7f28709a1a5560757634288f8e6f4d8502c9b8a8e58c6bb8f7b22ab1037b63e5267b2e901cdde89fc25b1a5069076e2ccc5a5030e46a1b894ff8dcbd24d952d0f9afff6f444c47b577a1e32ebeca0767df2f102acf755926f3aafa457db63f29977b5caea7049b66dda2a814e40e89ca29224428b1496f1c