Skip to content

set slp vault account withdraw timeout to zero #675

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions omnibus-base-mainnet-andromeda.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "synthetix-omnibus"
version = "90"
version = "91"
description = "Andromeda deployment"
preset = "andromeda"
deployers = [
Expand Down Expand Up @@ -299,7 +299,7 @@ include = [
]

[setting.snx_package]
defaultValue = "synthetix:3.10.1"
defaultValue = "synthetix:3.12.0"

[setting.perps_keeper_cost_package]
defaultValue = "op-gas-price-oracle:3.10.0"
Expand Down Expand Up @@ -511,3 +511,27 @@ pyth_feed_id_xmr = "0x46b8cc9347f04391764a0361e0b17c3ba394b001e7c304f7650f6376e3
pyth_feed_id_xrp = "0xec5d399846a9209f3fe5881d70aae9268c94339ff9817e8d18ff19fa05eea1c8"
pyth_feed_id_yfi = "0x425f4b198ab2504936886c1e93511bb6720fbcf2045a4f3c0723bb213846022f"
pyth_feed_id_zro = "0x3bd860bea28bf982fa06bcf358118064bb114086cc03993bd76197eaab0b8018"

[setting.slp_vault_accountid]
defaultValue = "170141183460469231731687303715884107773"

[setting.slp_migration_address]
defaultValue = "0xc0329ca9c8b61E8990d46Cd2a58D8EcD251E82Dc"

[invoke.CoreProxy_setConfig_accountOverrideWithdrawTimeout_slp_vault]
target = ["system.CoreProxy"]
fromCall.func = "owner"
func = "setConfig"
args = [
"<%= keccak256(defaultAbiCoder.encode(['bytes32', 'uint256'], [formatBytes32String('accountOverrideWithdrawTimeout'), settings.slp_vault_accountid])) %>",
"0x0000000000000000000000000000000000000000000000000000000000000001",
]

[invoke.CoreProxy_setConfig_senderOverrideWithdrawTimeout_migration_address]
target = ["system.CoreProxy"]
fromCall.func = "owner"
func = "setConfig"
args = [
"<%= keccak256(defaultAbiCoder.encode(['bytes32', 'address'], [formatBytes32String('senderOverrideWithdrawTimeout'), settings.slp_migration_address])) %>",
"0x0000000000000000000000000000000000000000000000000000000000000001",
]
4 changes: 2 additions & 2 deletions omnibus-base-sepolia-andromeda.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "synthetix-omnibus"
version = "89"
version = "90"
description = "Andromeda dev deployment"
preset = "andromeda"
deployers = ["0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9"]
Expand Down Expand Up @@ -291,7 +291,7 @@ include = [
]

[setting.snx_package]
defaultValue = "synthetix:3.10.1"
defaultValue = "synthetix:3.12.0"

[setting.oracle_manager_package]
defaultValue = "oracle-manager:3.10.1"
Expand Down