Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rotten-games-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@across-protocol/app-sdk": patch
---

Update fork blocks in sdk tests
8 changes: 4 additions & 4 deletions packages/sdk/test/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ export const FORK_URL_ARBITRUM = `https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY
export const FORK_URL_SEPOLIA = `https://eth-sepolia.g.alchemy.com/v2/${ALCHEMY_KEY}`;

// FORK BLOCK NUMBERS
export const BLOCK_NUMBER_OPTIMISM = BigInt(131833751);
export const BLOCK_NUMBER_BASE = BigInt(26238472);
export const BLOCK_NUMBER_MAINNET = BigInt(21915632);
export const BLOCK_NUMBER_ARBITRUM = BigInt(309377890);
export const BLOCK_NUMBER_OPTIMISM = BigInt(141042255);
export const BLOCK_NUMBER_BASE = BigInt(35446991);
export const BLOCK_NUMBER_MAINNET = BigInt(23347252);
export const BLOCK_NUMBER_ARBITRUM = BigInt(378381418);

export const TENDERLY_KEY = getMaybeEnv("VITE_TENDERLY_KEY");
export const MOCK_API = getMaybeEnv("VITE_MOCK_API") === "true";