@circle-fin/app-kit 1.14.0 → 1.15.1

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 +72 -0
  2. package/README.md +3 -3
  3. package/bridge.cjs +7464 -454
  4. package/bridge.d.cts +585 -61
  5. package/bridge.d.mts +585 -61
  6. package/bridge.d.ts +585 -61
  7. package/bridge.mjs +7464 -454
  8. package/chains.cjs +146 -5
  9. package/chains.d.cts +108 -2
  10. package/chains.d.mts +108 -2
  11. package/chains.d.ts +108 -2
  12. package/chains.mjs +146 -6
  13. package/context.d.cts +522 -57
  14. package/context.d.mts +522 -57
  15. package/context.d.ts +522 -57
  16. package/earn.cjs +478 -181
  17. package/earn.d.cts +522 -57
  18. package/earn.d.mts +522 -57
  19. package/earn.d.ts +522 -57
  20. package/earn.mjs +478 -181
  21. package/estimateBridge.cjs +7464 -457
  22. package/estimateBridge.d.cts +643 -82
  23. package/estimateBridge.d.mts +643 -82
  24. package/estimateBridge.d.ts +643 -82
  25. package/estimateBridge.mjs +7464 -457
  26. package/estimateSwap.cjs +528 -185
  27. package/estimateSwap.d.cts +522 -57
  28. package/estimateSwap.d.mts +522 -57
  29. package/estimateSwap.d.ts +522 -57
  30. package/estimateSwap.mjs +528 -185
  31. package/index.cjs +11548 -2936
  32. package/index.d.cts +5073 -1738
  33. package/index.d.mts +5073 -1738
  34. package/index.d.ts +5073 -1738
  35. package/index.mjs +11547 -2937
  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 +528 -185
  45. package/swap.d.cts +522 -57
  46. package/swap.d.mts +522 -57
  47. package/swap.d.ts +522 -57
  48. package/swap.mjs +528 -185
  49. package/unifiedBalance.cjs +742 -44
  50. package/unifiedBalance.d.cts +223 -1
  51. package/unifiedBalance.d.mts +223 -1
  52. package/unifiedBalance.d.ts +223 -1
  53. package/unifiedBalance.mjs +742 -44
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@circle-fin/app-kit",
3
- "version": "1.14.0",
3
+ "version": "1.15.1",
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.6.0",
40
- "@circle-fin/provider-gateway-v1": "1.4.0",
41
- "@circle-fin/earn-kit": "1.6.1",
42
- "@circle-fin/bridge-kit": "1.14.1",
43
- "@circle-fin/swap-kit": "1.6.1",
39
+ "@circle-fin/onramp-kit": "1.0.1",
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",