@frontiertower/frontier-sdk 0.12.0 → 0.13.0
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.
- package/dist/index.d.mts +6 -4
- package/dist/index.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -174,6 +174,8 @@ interface OnRampResponse<T = UsdDepositInstructions | EurDepositInstructions> {
|
|
|
174
174
|
depositInstructions: T;
|
|
175
175
|
/** Destination address where stablecoins will be sent */
|
|
176
176
|
destinationAddress: string;
|
|
177
|
+
/** Destination network */
|
|
178
|
+
destinationNetwork: string;
|
|
177
179
|
}
|
|
178
180
|
/**
|
|
179
181
|
* Linked bank account for withdrawals (off-ramp)
|
|
@@ -187,8 +189,8 @@ interface LinkedBank {
|
|
|
187
189
|
last4: string;
|
|
188
190
|
/** Withdrawal address for this bank */
|
|
189
191
|
withdrawalAddress: string;
|
|
190
|
-
/**
|
|
191
|
-
|
|
192
|
+
/** Network for withdrawals */
|
|
193
|
+
network: string;
|
|
192
194
|
}
|
|
193
195
|
/**
|
|
194
196
|
* Response containing linked bank accounts
|
|
@@ -207,8 +209,8 @@ interface LinkBankResponse {
|
|
|
207
209
|
bankName: string;
|
|
208
210
|
/** Withdrawal address for this bank */
|
|
209
211
|
withdrawalAddress: string;
|
|
210
|
-
/**
|
|
211
|
-
|
|
212
|
+
/** Network for withdrawals */
|
|
213
|
+
network: string;
|
|
212
214
|
}
|
|
213
215
|
/**
|
|
214
216
|
* Billing address for bank account linking
|
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,8 @@ interface OnRampResponse<T = UsdDepositInstructions | EurDepositInstructions> {
|
|
|
174
174
|
depositInstructions: T;
|
|
175
175
|
/** Destination address where stablecoins will be sent */
|
|
176
176
|
destinationAddress: string;
|
|
177
|
+
/** Destination network */
|
|
178
|
+
destinationNetwork: string;
|
|
177
179
|
}
|
|
178
180
|
/**
|
|
179
181
|
* Linked bank account for withdrawals (off-ramp)
|
|
@@ -187,8 +189,8 @@ interface LinkedBank {
|
|
|
187
189
|
last4: string;
|
|
188
190
|
/** Withdrawal address for this bank */
|
|
189
191
|
withdrawalAddress: string;
|
|
190
|
-
/**
|
|
191
|
-
|
|
192
|
+
/** Network for withdrawals */
|
|
193
|
+
network: string;
|
|
192
194
|
}
|
|
193
195
|
/**
|
|
194
196
|
* Response containing linked bank accounts
|
|
@@ -207,8 +209,8 @@ interface LinkBankResponse {
|
|
|
207
209
|
bankName: string;
|
|
208
210
|
/** Withdrawal address for this bank */
|
|
209
211
|
withdrawalAddress: string;
|
|
210
|
-
/**
|
|
211
|
-
|
|
212
|
+
/** Network for withdrawals */
|
|
213
|
+
network: string;
|
|
212
214
|
}
|
|
213
215
|
/**
|
|
214
216
|
* Billing address for bank account linking
|