Skip to content
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

feat(networks): add Linea multisig owner #13491

Merged
merged 3 commits into from Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion governance/scripts/multisig/_helpers.js
Expand Up @@ -21,7 +21,7 @@ const safeServiceURLs = {
324: 'https://safe-transaction-zksync.safe.global/api',
1101: 'https://safe-transaction-zkevm.safe.global/api',
534352: 'https://transaction.safe.scroll.xyz/api',
59144: 'https://safe.linea.build/api',
59144: 'https://transaction.safe.linea.build/api',
}

// get safeAddress directly from unlock if needed
Expand Down
2 changes: 1 addition & 1 deletion governance/scripts/setters/transferOwnership.js
Expand Up @@ -88,7 +88,7 @@ async function main({ contractAddress, newOwner }) {
)
} catch {
console.log(
`> The current owner is not a multisig : ${address(newOwner)} \n`
`> The current owner is not a multisig : ${address(previousOwner)} \n`
)
}

Expand Down
2 changes: 1 addition & 1 deletion packages/networks/src/networks/linea.ts
Expand Up @@ -56,7 +56,7 @@ export const linea: NetworkConfig = {

maxFreeClaimCost: 10,

// multisig: '', // TODO
multisig: '0x0b441f6A255a56670B6fdb37B527e091a394eeB9',

name: 'Linea',

Expand Down