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

TD-1359: chore: add zone v2 in production config. #1818

Merged
merged 2 commits into from
May 22, 2024
Merged
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
7 changes: 1 addition & 6 deletions packages/orderbook/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ export function getOrderbookConfig(
case Environment.SANDBOX:
return {
seaportContractAddress: '0x7d117aA8BD6D31c4fa91722f246388f38ab1942c',
// eslint-disable-next-line max-len
// zoneContractAddress: '0x8831867E347AB87FA30199C5B695F0A31604Bb52', // ImmutableSignedZoneV1
zoneContractAddress: '0x1004f9615E79462c711Ff05a386BdbA91a7628C3', // ImmutableSignedZoneV2
apiEndpoint: 'https://api.sandbox.immutable.com',
chainName: TESTNET_CHAIN_NAME,
Expand All @@ -51,10 +49,7 @@ export function getOrderbookConfig(
case Environment.PRODUCTION:
return {
seaportContractAddress: '0x6c12aD6F0bD274191075Eb2E78D7dA5ba6453424',
// eslint-disable-next-line max-len
zoneContractAddress: '0x00338b92Bec262078B3e49BF12bbEA058916BF91', // ImmutableSignedZoneV1
// eslint-disable-next-line max-len
// zoneContractAddress: '0x1004f9615E79462c711Ff05a386BdbA91a7628C3', // ImmutableSignedZoneV2
zoneContractAddress: '0x1004f9615E79462c711Ff05a386BdbA91a7628C3', // ImmutableSignedZoneV2
apiEndpoint: 'https://api.immutable.com',
chainName: MAINNET_CHAIN_NAME,
provider: getConfiguredProvider('https://rpc.immutable.com', config.baseConfig.rateLimitingKey),
Expand Down
Loading