File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
packages/wallet/backend/src Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,8 @@ export class AccountService implements IAccountService {
225
225
uid : uuid ( ) ,
226
226
receiving_address : account . gateHubWalletId ,
227
227
vault_uuid : this . gateHubClient . getVaultUuid ( account . assetCode ) ,
228
- type : TransactionTypeEnum . DEPOSIT
228
+ type : TransactionTypeEnum . DEPOSIT ,
229
+ absolute_fee : 0
229
230
} )
230
231
}
231
232
}
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ export enum TransactionTypeEnum {
30
30
export const SANDBOX_VAULT_IDS : Record < string , string > = {
31
31
USD : '450d2156-132a-4d3f-88c5-74822547658d' ,
32
32
EUR : 'a09a0a2c-1a3a-44c5-a1b9-603a6eea9341' ,
33
- GBP : '8dd6345f-a021-4eda-9047-a5fc8887973a ' ,
34
- ZAR : 'd3a74151-b855-4e6d-86c5-e916bd9dcdf1 '
33
+ GBP : '992b932d-7e9e-44b0-90ea-b82a530b6784 ' ,
34
+ ZAR : 'f1c412ce-5e2b-4737-9121-b7c11d6c3f93 '
35
35
}
36
36
export const PRODUCTION_VAULT_IDS : Record < string , string > = {
37
37
USD : '5e1ff913-96d4-45ab-b7a3-04197a59fe06' ,
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ export interface IFundAccountRequest {
87
87
receiving_address : string
88
88
type : TransactionTypeEnum . DEPOSIT
89
89
vault_uuid : string
90
+ absolute_fee ?: number
90
91
}
91
92
92
93
export interface ICreateTransactionResponse { }
You can’t perform that action at this time.
0 commit comments