Skip to content
This repository was archived by the owner on Dec 23, 2025. It is now read-only.

Commit 50e28b1

Browse files
authored
fix merge (#26)
1 parent 4b00b8a commit 50e28b1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@reservoir0x/relay-protocol-sdk",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"description": "Relay protocol SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ import {
6767
WithdrawalAddressParams,
6868
WithdrawalInitiationMessage,
6969
WithdrawalInitiatedMessage,
70+
WithdrawalAddressRequest,
7071
} from "./messages/v2.2/withdrawal-execution";
7172

7273
export {
@@ -136,4 +137,5 @@ export {
136137
WithdrawalAddressParams,
137138
WithdrawalInitiationMessage,
138139
WithdrawalInitiatedMessage,
140+
WithdrawalAddressRequest,
139141
};

src/messages/v2.2/withdrawal-execution.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ export type WithdrawalAddressParams = {
5555
depositoryAddress: string;
5656
depositoryChainId: bigint;
5757
currency: string;
58-
owner: string;
5958
recipientAddress: string;
59+
owner: string;
60+
ownerChainId: string;
6061
amount: bigint;
6162
withdrawalNonce: string;
6263
};

0 commit comments

Comments
 (0)