diff --git a/package.json b/package.json index 681fefa..ed03d42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reservoir0x/relay-protocol-sdk", - "version": "0.0.61", + "version": "0.0.62", "description": "Relay protocol SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 5d65690..2ba191c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -67,6 +67,7 @@ import { WithdrawalAddressParams, WithdrawalInitiationMessage, WithdrawalInitiatedMessage, + WithdrawalAddressRequest, } from "./messages/v2.2/withdrawal-execution"; export { @@ -136,4 +137,5 @@ export { WithdrawalAddressParams, WithdrawalInitiationMessage, WithdrawalInitiatedMessage, + WithdrawalAddressRequest, }; diff --git a/src/messages/v2.2/withdrawal-execution.ts b/src/messages/v2.2/withdrawal-execution.ts index 41ca64c..1a6423e 100644 --- a/src/messages/v2.2/withdrawal-execution.ts +++ b/src/messages/v2.2/withdrawal-execution.ts @@ -55,8 +55,9 @@ export type WithdrawalAddressParams = { depositoryAddress: string; depositoryChainId: bigint; currency: string; - owner: string; recipientAddress: string; + owner: string; + ownerChainId: string; amount: bigint; withdrawalNonce: string; };