Skip to content

Commit

Permalink
enable/disable l2 transaction sync from .env (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
torztomasz committed Aug 11, 2023
1 parent f4f1232 commit 1030024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/config/starkex/apex-mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function getApexMainnetConfig(env: Env): StarkexConfig {
auth: clientAuth,
},
l2Transactions: {
enabled: true,
enabled: env.boolean('L2_TRANSACTIONS_ENABLED', true),
excludeTypes: ['OraclePricesTick'],
feederGateway: {
getUrl: (batchId: number) => {
Expand Down

0 comments on commit 1030024

Please sign in to comment.