Skip to content

Commit

Permalink
feat(deployed-holesky.json): add Aragon std apps Repo addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
arwer13 committed Oct 10, 2023
1 parent 085a60f commit 517c01d
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 5 deletions.
4 changes: 0 additions & 4 deletions dao-local-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,5 @@ export GAS_MAX_FEE=100
#
export NETWORK_STATE_FILE="deployed-${NETWORK}.json"
export NETWORK_STATE_DEFAULTS_FILE="deployed-testnet-defaults.json"
# TODO export SCRATCH_DEPLOY_DEPOSIT_CONTRACT=1

# Set the variable to skip long Aragon apps frontend rebuild step on repetetive deploys
# export SKIP_APPS_LONG_BUILD_STEPS=1

bash dao-deploy.sh
49 changes: 49 additions & 0 deletions deployed-holesky.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,18 @@
]
}
},
"aragon-app-repo-agent": {
"implementation": {
"contract": "@aragon/os/contracts/apm/Repo.sol",
"address": "0x8959360c48D601a6817BAf2449E5D00cC543FA3A",
"constructorArgs": []
},
"proxy": {
"address": "0xe7b4567913AaF2bD54A26E742cec22727D8109eA",
"contract": "@aragon/os/contracts/apps/AppProxyUpgradeable.sol",
"constructorArgs": []
}
},
"app:aragon-finance": {
"implementation": {
"contract": "@aragon/apps-finance/contracts/Finance.sol",
Expand All @@ -377,6 +389,18 @@
]
}
},
"aragon-app-repo-finance": {
"implementation": {
"contract": "@aragon/os/contracts/apm/Repo.sol",
"address": "0x8959360c48D601a6817BAf2449E5D00cC543FA3A",
"constructorArgs": []
},
"proxy": {
"address": "0x0df65b7c78Dc42a872010d031D3601C284D8fE71",
"contract": "@aragon/os/contracts/apps/AppProxyUpgradeable.sol",
"constructorArgs": []
}
},
"app:aragon-token-manager": {
"implementation": {
"contract": "@aragon/apps-lido/apps/token-manager/contracts/TokenManager.sol",
Expand All @@ -398,6 +422,18 @@
]
}
},
"aragon-app-repo-token-manager": {
"implementation": {
"contract": "@aragon/os/contracts/apm/Repo.sol",
"address": "0x8959360c48D601a6817BAf2449E5D00cC543FA3A",
"constructorArgs": []
},
"proxy": {
"address": "0xD327b4Fb87fa01599DaD491Aa63B333c44C74472",
"contract": "@aragon/os/contracts/apps/AppProxyUpgradeable.sol",
"constructorArgs": []
}
},
"app:aragon-voting": {
"implementation": {
"contract": "@aragon/apps-lido/apps/voting/contracts/Voting.sol",
Expand All @@ -419,6 +455,18 @@
]
}
},
"aragon-app-repo-voting": {
"implementation": {
"contract": "@aragon/os/contracts/apm/Repo.sol",
"address": "0x8959360c48D601a6817BAf2449E5D00cC543FA3A",
"constructorArgs": []
},
"proxy": {
"address": "0x2997EA0D07D79038D83Cb04b3BB9A2Bc512E3fDA",
"contract": "@aragon/os/contracts/apps/AppProxyUpgradeable.sol",
"constructorArgs": []
}
},
"lidoTemplate": {
"contract": "contracts/0.4.24/template/LidoTemplate.sol",
"address": "0x0e065Dd0Bc85Ca53cfDAf8D9ed905e692260De2E",
Expand Down Expand Up @@ -539,6 +587,7 @@
"lidoApmAddress": "0x4605Dc9dC4BD0442F850eB8226B94Dd0e27C3Ce7",
"createAppReposTx": "0xd8a9b10e16b5e75b984c90154a9cb51fbb06bf560a3c424e2e7ad81951008502",
"lidoTemplateNewDaoTx": "0x3346246f09f91ffbc260b6c300b11ababce9f5ca54d7880a277860961f343112",
"lidoTemplateCreateStdAppReposTx": "0x3f5b8918667bd3e971606a54a907798720158587df355a54ce07c0d0f9750d3c",
"newDaoTx": "0x3346246f09f91ffbc260b6c300b11ababce9f5ca54d7880a277860961f343112",
"ldo": {
"address": "0x14ae7daeecdf57034f3E9db8564e46Dba8D97344",
Expand Down
1 change: 1 addition & 0 deletions scripts/scratch/07-create-app-repos.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ async function createAppRepos({ web3, artifacts }) {

const aragonStdAppsReceipt = await log.makeTx(template, 'createStdAragonRepos', createStdAragonReposArguments, { from })
console.log(`=== Aragon Std Apps Repos (Agent, Finance, TokenManager, Voting deployed: ${aragonStdAppsReceipt.tx} ===`)
state.lidoTemplateCreateStdAppReposTx = aragonStdAppsReceipt.tx

logSplitter()
persistNetworkState(network.name, netId, state)
Expand Down
3 changes: 2 additions & 1 deletion scripts/scratch/verify-contracts-code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ verify aragon-apm-registry.implementation
verify aragon-apm-registry.factory
verify aragon-app-repo-lido.implementation
verify aragon-app-repo-node-operators-registry.implementation
# NB: App Repos of lido, oracle and node-operators-registry share same implementation
# NB: App Repos of lido, oracle, node-operators-registry, finance, agent, token-manager, voting
# share same implementation of Repo contract
verify aragon-evm-script-registry.proxy
verify aragon-evm-script-registry.implementation
verify app:simple-dvt.proxy
Expand Down

0 comments on commit 517c01d

Please sign in to comment.