@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 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
- /** Chain for withdrawals */
191
- chain: string;
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
- /** Chain for withdrawals */
211
- chain: string;
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
- /** Chain for withdrawals */
191
- chain: string;
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
- /** Chain for withdrawals */
211
- chain: string;
212
+ /** Network for withdrawals */
213
+ network: string;
212
214
  }
213
215
  /**
214
216
  * Billing address for bank account linking
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontiertower/frontier-sdk",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "SDK for building apps on Frontier Wallet",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",