@proofchain/sdk 2.12.1 → 2.12.2

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
@@ -1025,9 +1025,12 @@ interface SwapQuote {
1025
1025
  to_token: string;
1026
1026
  from_amount: string;
1027
1027
  to_amount: string;
1028
+ min_to_amount: string;
1028
1029
  exchange_rate: string;
1029
- price_impact: string;
1030
- gas_estimate: string;
1030
+ quote_id: string;
1031
+ slippage_bps: number;
1032
+ network: string;
1033
+ liquidity_available: boolean;
1031
1034
  expires_at: string;
1032
1035
  }
1033
1036
  interface SwapResult {
package/dist/index.d.ts CHANGED
@@ -1025,9 +1025,12 @@ interface SwapQuote {
1025
1025
  to_token: string;
1026
1026
  from_amount: string;
1027
1027
  to_amount: string;
1028
+ min_to_amount: string;
1028
1029
  exchange_rate: string;
1029
- price_impact: string;
1030
- gas_estimate: string;
1030
+ quote_id: string;
1031
+ slippage_bps: number;
1032
+ network: string;
1033
+ liquidity_available: boolean;
1031
1034
  expires_at: string;
1032
1035
  }
1033
1036
  interface SwapResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proofchain/sdk",
3
- "version": "2.12.1",
3
+ "version": "2.12.2",
4
4
  "description": "Official JavaScript/TypeScript SDK for ProofChain - blockchain-anchored document attestation",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",