Skip to content

Commit

Permalink
fix: mainnet deployed data
Browse files Browse the repository at this point in the history
  • Loading branch information
krogla committed Dec 7, 2023
1 parent 23dad88 commit b4038dd
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 7 deletions.
36 changes: 36 additions & 0 deletions deployed-mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,42 @@
"contentURI": "0x697066733a516d656138394d5533504852503763513157616b3672327355654d554146324c39727132624c6d5963644b764c57"
}
},
"app:simple-dvt": {
"stakingRouterModuleParams": {
"moduleName": "SimpleDVT",
"moduleType": "curated-onchain-v1",
"targetShare": 50,
"moduleFee": 800,
"treasuryFee": 200,
"penaltyDelay": 432000,
"easyTrackTrustedCaller": "",
"easyTrackAddress": "0xF0211b7660680B49De1A7E9f25C65660F0a13Fea",
"easyTrackFactories": {
"AddNodeOperators": "",
"ActivateNodeOperators": "",
"DeactivateNodeOperators": "",
"SetVettedValidatorsLimits": "",
"SetNodeOperatorNames": "",
"SetNodeOperatorRewardAddresses": "",
"UpdateTargetValidatorLimits": "",
"ChangeNodeOperatorManager": ""
}
},
"aragonApp": {
"name": "simple-dvt",
"fullName": "simple-dvt.lidopm.eth",
"id": "0xe1635b63b5f7b5e545f2a637558a4029dea7905361a2f0fc28c66e9136cf86a4"
},
"proxy": {
"address": "0xaE7B191A31f627b4eB1d4DaC64eaB9976995b433",
"contract": "@aragon/os/contracts/apps/AppProxyUpgradeable.sol",
"constructorArgs": [
"0xb8FFC3Cd6e7Cf5a098A1c92F48009765B24088Dc",
"0xe1635b63b5f7b5e545f2a637558a4029dea7905361a2f0fc28c66e9136cf86a4",
"0x"
]
}
},
"aragon-kernel": {
"implementation": {
"contract": "@aragon/os/contracts/kernel/Kernel.sol",
Expand Down
18 changes: 11 additions & 7 deletions scripts/simpledvt/02-clone-nor.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,13 +408,17 @@ async function deploySimpleDVT({ web3, artifacts, trgAppName = APP_TRG, ipfsCid
// save app info
persistNetworkState(network.name, netId, state, {
[`app:${trgAppName}`]: {
fullName: trgAppFullName,
name: trgAppName,
id: trgAppId,
ipfsCid,
contentURI,
implementation: contractAddress,
contract: trgAppArtifact,
aragonApp: {
name: trgAppName,
fullName: trgAppFullName,
id: trgAppId,
ipfsCid,
contentURI,
},
implementation: {
address: contractAddress,
contract: 'contracts/0.4.24/nos/NodeOperatorsRegistry.sol',
},
},
})
}
Expand Down

0 comments on commit b4038dd

Please sign in to comment.