-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: updating scripts and deploying token-based service contracts on chiado #114
Conversation
kupermind
commented
Sep 18, 2023
- Deploying OperatorWhitelist, ServiceRegistryTokenUtility and Service ManagerToken on chiado;
- Verifying the ServiceManagerToken setup using the ServiceRegistryL2 contract.
apiURL: "https://blockscout.com/gnosis/chiado/api", | ||
browserURL: "https://blockscout.com/gnosis/chiado", | ||
apiURL: "https://gnosis-chiado.blockscout.com/api", | ||
browserURL: "https://gnosis-chiado.blockscout.com/", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are new URLs for the chiado network to correctly do the contract verification.
if (chainId === "1" || chainId === "5") { | ||
// ServiceRegistryManagerToken for L1 | ||
if (chainId === "1" || chainId === "5" || chainId === "10200") { | ||
// ServiceRegistryManagerToken for L1 and L2 that currently have the full setup |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accounting for chiado modification setup
const { ethers } = require("ethers"); | ||
|
||
async function main() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Script to change the manager for the ServiceRegistryL2 to swap ServiceManager with ServiceManagerToken on chiado.
const { ethers } = require("ethers"); | ||
|
||
async function main() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Script fo change the drainer on chiado
const { ethers } = require("ethers"); | ||
|
||
async function main() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A proposal to change the manager for the ServiceRegistry on gnosis mainnet to swap ServiceManager to ServiceManagerToken contract.
const { ethers } = require("ethers"); | ||
|
||
async function main() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A proposal script to change the manager for the ServiceRegistryL2 to swap ServiceManager with ServiceManagerToken on gnosis.
scripts/proposals/proposal_04_service_registry_l2_change_manager_gnosis.js
Outdated
Show resolved
Hide resolved
…er_gnosis.js Co-authored-by: mariapiamo <[email protected]>