@circle-fin/app-kit 1.13.0 → 1.15.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.
Files changed (53) hide show
  1. package/CHANGELOG.md +122 -0
  2. package/README.md +3 -3
  3. package/bridge.cjs +8388 -515
  4. package/bridge.d.cts +640 -61
  5. package/bridge.d.mts +640 -61
  6. package/bridge.d.ts +640 -61
  7. package/bridge.mjs +8389 -516
  8. package/chains.cjs +275 -15
  9. package/chains.d.cts +117 -2
  10. package/chains.d.mts +117 -2
  11. package/chains.d.ts +117 -2
  12. package/chains.mjs +275 -16
  13. package/context.d.cts +577 -57
  14. package/context.d.mts +577 -57
  15. package/context.d.ts +577 -57
  16. package/earn.cjs +973 -271
  17. package/earn.d.cts +577 -57
  18. package/earn.d.mts +577 -57
  19. package/earn.d.ts +577 -57
  20. package/earn.mjs +919 -221
  21. package/estimateBridge.cjs +8388 -518
  22. package/estimateBridge.d.cts +704 -82
  23. package/estimateBridge.d.mts +704 -82
  24. package/estimateBridge.d.ts +704 -82
  25. package/estimateBridge.mjs +8390 -520
  26. package/estimateSwap.cjs +982 -237
  27. package/estimateSwap.d.cts +577 -57
  28. package/estimateSwap.d.mts +577 -57
  29. package/estimateSwap.d.ts +577 -57
  30. package/estimateSwap.mjs +981 -237
  31. package/index.cjs +21401 -8522
  32. package/index.d.cts +6045 -2149
  33. package/index.d.mts +6045 -2149
  34. package/index.d.ts +6045 -2149
  35. package/index.mjs +21401 -8524
  36. package/package.json +17 -6
  37. package/server.cjs +10040 -0
  38. package/server.cjs.map +1 -0
  39. package/server.d.cts +2467 -0
  40. package/server.d.mts +2467 -0
  41. package/server.d.ts +2467 -0
  42. package/server.mjs +10028 -0
  43. package/server.mjs.map +1 -0
  44. package/swap.cjs +982 -237
  45. package/swap.d.cts +577 -57
  46. package/swap.d.mts +577 -57
  47. package/swap.d.ts +577 -57
  48. package/swap.mjs +981 -237
  49. package/unifiedBalance.cjs +20510 -7599
  50. package/unifiedBalance.d.cts +807 -201
  51. package/unifiedBalance.d.mts +807 -201
  52. package/unifiedBalance.d.ts +807 -201
  53. package/unifiedBalance.mjs +20513 -7603
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@circle-fin/app-kit",
3
- "version": "1.13.0",
3
+ "version": "1.15.0",
4
4
  "description": "A one-stop Circle SDK solution for building stablecoin (e.g. USDC) applications, with bridging, swapping, and more on-chain operations",
5
5
  "keywords": [
6
6
  "circle",
@@ -36,11 +36,12 @@
36
36
  "module": "./index.mjs",
37
37
  "types": "./index.d.cts",
38
38
  "dependencies": {
39
- "@circle-fin/unified-balance-kit": "1.5.0",
40
- "@circle-fin/provider-gateway-v1": "1.3.0",
41
- "@circle-fin/earn-kit": "1.6.0",
42
- "@circle-fin/bridge-kit": "1.14.0",
43
- "@circle-fin/swap-kit": "1.6.0",
39
+ "@circle-fin/onramp-kit": "1.0.0",
40
+ "@circle-fin/unified-balance-kit": "1.7.0",
41
+ "@circle-fin/provider-gateway-v1": "1.5.0",
42
+ "@circle-fin/earn-kit": "1.7.0",
43
+ "@circle-fin/bridge-kit": "1.15.0",
44
+ "@circle-fin/swap-kit": "1.7.0",
44
45
  "@coral-xyz/anchor": "^0.31.1",
45
46
  "@noble/curves": "1.4.2",
46
47
  "bn.js": "^5.2.3",
@@ -131,6 +132,15 @@
131
132
  },
132
133
  "import": "./unifiedBalance.mjs",
133
134
  "require": "./unifiedBalance.cjs"
135
+ },
136
+ "./server": {
137
+ "types": {
138
+ "import": "./server.d.mts",
139
+ "require": "./server.d.cts"
140
+ },
141
+ "import": "./server.mjs",
142
+ "require": "./server.cjs",
143
+ "default": "./server.cjs"
134
144
  }
135
145
  },
136
146
  "files": [
@@ -143,6 +153,7 @@
143
153
  "unifiedBalance.*",
144
154
  "earn.*",
145
155
  "index.*",
156
+ "server.*",
146
157
  "README.md",
147
158
  "QUICKSTART.md",
148
159
  "CHANGELOG.md",