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

refactor: Minor updates post SDK-v2 bump #1125

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@across-protocol/constants-v2": "1.0.8",
"@across-protocol/contracts-v2": "2.4.7",
"@across-protocol/sdk-v2": "0.20.3",
"@across-protocol/sdk-v2": "0.20.5",
"@arbitrum/sdk": "^3.1.3",
"@defi-wonderland/smock": "^2.3.5",
"@eth-optimism/sdk": "^3.1.0",
Expand Down
18 changes: 9 additions & 9 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ export type TokensBridged = interfaces.TokensBridged;
export type CachingMechanismInterface = interfaces.CachingMechanismInterface;

// V2 / V3 interfaces
export type V2Deposit = interfaces.v2Deposit;
export type V2DepositWithBlock = interfaces.v2DepositWithBlock;
export type V2SpeedUp = interfaces.v2SpeedUp;
export type V2Fill = interfaces.v2Fill;
export type V2FillWithBlock = interfaces.v2FillWithBlock;
export type V2RelayData = interfaces.v2RelayData;
export type V3RelayData = interfaces.v3RelayData;
export type V2SlowFillLeaf = interfaces.v2SlowFillLeaf;
export type V3SlowFillLeaf = interfaces.v3SlowFillLeaf;
export type V2Deposit = interfaces.V2Deposit;
export type V2DepositWithBlock = interfaces.V2DepositWithBlock;
export type V2SpeedUp = interfaces.V2SpeedUp;
export type V2Fill = interfaces.V2Fill;
export type V2FillWithBlock = interfaces.V2FillWithBlock;
export type V2RelayData = interfaces.V2RelayData;
export type V3RelayData = interfaces.V3RelayData;
export type V2SlowFillLeaf = interfaces.V2SlowFillLeaf;
export type V3SlowFillLeaf = interfaces.V3SlowFillLeaf;
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"@openzeppelin/contracts" "4.1.0"
"@uma/core" "^2.18.0"

"@across-protocol/[email protected].3":
version "0.20.3"
resolved "https://registry.yarnpkg.com/@across-protocol/sdk-v2/-/sdk-v2-0.20.3.tgz#087976dbc2d1334d19354afaf332754439fb9fae"
integrity sha512-mmpMjv4cPaDzwso9bS34Kw/SR7UW6oo1kSCGtq/2kbCXHoZgDsjIFYHHo2neaAozDV8Hhqp0ZVYDEc7Uaf9hBQ==
"@across-protocol/[email protected].5":
version "0.20.5"
resolved "https://registry.yarnpkg.com/@across-protocol/sdk-v2/-/sdk-v2-0.20.5.tgz#d55f3229aa0ab48979079a275370b8d5ab59b424"
integrity sha512-uTTyCu6qx99cjSfeG/ytHPFcf4pIoiOFQ2/ZzfdxAtAK5FFGC0mWOhz4vJA7jckzm2WxPPJXJqVxKYCeFQioqw==
dependencies:
"@across-protocol/across-token" "^1.0.0"
"@across-protocol/constants-v2" "^1.0.8"
Expand Down
Loading