diff --git a/package.json b/package.json index a06f7a9..d803f14 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@deltadefi-protocol/sdk", "description": "The Typescript SDK for DeltaDeFi protocol", - "version": "1.1.3", + "version": "1.1.4", "main": "./dist/index.cjs", "browser": "./dist/index.js", "module": "./dist/index.js", diff --git a/src/types/requests/index.ts b/src/types/requests/index.ts index f20819c..385a42e 100644 --- a/src/types/requests/index.ts +++ b/src/types/requests/index.ts @@ -24,6 +24,8 @@ export type Asset = { export type BuildDepositTransactionRequest = { deposit_amount: Asset[]; input_utxos: UTxO[]; + deposit_type?: 'vault'; + vault_id?: string; }; export type SubmitDepositTransactionRequest = { @@ -32,6 +34,8 @@ export type SubmitDepositTransactionRequest = { export type BuildWithdrawalTransactionRequest = { withdrawal_amount: Asset[]; + withdraw_type?: 'vault'; + vault_id?: string; }; export type SubmitWithdrawalTransactionRequest = {