@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.
- package/CHANGELOG.md +122 -0
- package/README.md +3 -3
- package/bridge.cjs +8388 -515
- package/bridge.d.cts +640 -61
- package/bridge.d.mts +640 -61
- package/bridge.d.ts +640 -61
- package/bridge.mjs +8389 -516
- package/chains.cjs +275 -15
- package/chains.d.cts +117 -2
- package/chains.d.mts +117 -2
- package/chains.d.ts +117 -2
- package/chains.mjs +275 -16
- package/context.d.cts +577 -57
- package/context.d.mts +577 -57
- package/context.d.ts +577 -57
- package/earn.cjs +973 -271
- package/earn.d.cts +577 -57
- package/earn.d.mts +577 -57
- package/earn.d.ts +577 -57
- package/earn.mjs +919 -221
- package/estimateBridge.cjs +8388 -518
- package/estimateBridge.d.cts +704 -82
- package/estimateBridge.d.mts +704 -82
- package/estimateBridge.d.ts +704 -82
- package/estimateBridge.mjs +8390 -520
- package/estimateSwap.cjs +982 -237
- package/estimateSwap.d.cts +577 -57
- package/estimateSwap.d.mts +577 -57
- package/estimateSwap.d.ts +577 -57
- package/estimateSwap.mjs +981 -237
- package/index.cjs +21401 -8522
- package/index.d.cts +6045 -2149
- package/index.d.mts +6045 -2149
- package/index.d.ts +6045 -2149
- package/index.mjs +21401 -8524
- package/package.json +17 -6
- package/server.cjs +10040 -0
- package/server.cjs.map +1 -0
- package/server.d.cts +2467 -0
- package/server.d.mts +2467 -0
- package/server.d.ts +2467 -0
- package/server.mjs +10028 -0
- package/server.mjs.map +1 -0
- package/swap.cjs +982 -237
- package/swap.d.cts +577 -57
- package/swap.d.mts +577 -57
- package/swap.d.ts +577 -57
- package/swap.mjs +981 -237
- package/unifiedBalance.cjs +20510 -7599
- package/unifiedBalance.d.cts +807 -201
- package/unifiedBalance.d.mts +807 -201
- package/unifiedBalance.d.ts +807 -201
- 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.
|
|
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/
|
|
40
|
-
"@circle-fin/
|
|
41
|
-
"@circle-fin/
|
|
42
|
-
"@circle-fin/
|
|
43
|
-
"@circle-fin/
|
|
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",
|