@relay-protocol/settlement-sdk 0.0.67 → 0.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -32,13 +32,16 @@ export type WithdrawalAddressParams = {
|
|
|
32
32
|
* @returns withdrawal address (in lower case)
|
|
33
33
|
*/
|
|
34
34
|
export declare function getWithdrawalAddress(withdrawalParams: WithdrawalAddressParams): string;
|
|
35
|
-
export type WithdrawalAddressRequest = Omit<WithdrawalAddressParams, "depositoryChainId" | "amount" | "depository"> & {
|
|
35
|
+
export type WithdrawalAddressRequest = Omit<WithdrawalAddressParams, "depositoryChainId" | "amount" | "depository" | "withdrawerAlias"> & {
|
|
36
|
+
withdrawer: string;
|
|
37
|
+
withdrawerChainId: string;
|
|
36
38
|
chainId: string;
|
|
37
39
|
amount: string;
|
|
38
40
|
};
|
|
39
41
|
export type WithdrawalInitiationMessage = {
|
|
40
42
|
data: WithdrawalAddressRequest & {
|
|
41
43
|
settlementChainId: string;
|
|
44
|
+
signature: string;
|
|
42
45
|
};
|
|
43
46
|
result: {
|
|
44
47
|
withdrawalAddress: string;
|