@circle-fin/app-kit 1.7.0 → 1.8.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 +215 -0
- package/README.md +28 -5
- package/bridge.cjs +19951 -0
- package/bridge.cjs.map +1 -0
- package/bridge.d.cts +6603 -0
- package/bridge.d.mts +6603 -0
- package/bridge.d.ts +6603 -0
- package/bridge.mjs +19944 -0
- package/bridge.mjs.map +1 -0
- package/chains.cjs +1018 -1087
- package/chains.d.cts +2060 -0
- package/chains.d.mts +2060 -0
- package/chains.d.ts +40 -37
- package/chains.mjs +1018 -1087
- package/context.cjs +59 -0
- package/context.cjs.map +1 -0
- package/context.d.cts +6428 -0
- package/context.d.mts +6428 -0
- package/context.d.ts +6428 -0
- package/context.mjs +57 -0
- package/context.mjs.map +1 -0
- package/earn.cjs +7316 -4800
- package/earn.d.cts +8340 -0
- package/earn.d.mts +8340 -0
- package/earn.d.ts +987 -85
- package/earn.mjs +7313 -4801
- package/estimateBridge.cjs +19889 -0
- package/estimateBridge.cjs.map +1 -0
- package/estimateBridge.d.cts +6483 -0
- package/estimateBridge.d.mts +6483 -0
- package/estimateBridge.d.ts +6483 -0
- package/estimateBridge.mjs +19882 -0
- package/estimateBridge.mjs.map +1 -0
- package/estimateSwap.cjs +21577 -0
- package/estimateSwap.cjs.map +1 -0
- package/estimateSwap.d.cts +6625 -0
- package/estimateSwap.d.mts +6625 -0
- package/estimateSwap.d.ts +6625 -0
- package/estimateSwap.mjs +21571 -0
- package/estimateSwap.mjs.map +1 -0
- package/index.cjs +15241 -11453
- package/index.d.cts +26657 -0
- package/index.d.mts +26657 -0
- package/index.d.ts +5230 -585
- package/index.mjs +15230 -11453
- package/package.json +66 -32
- package/swap.cjs +21577 -0
- package/swap.cjs.map +1 -0
- package/swap.d.cts +6721 -0
- package/swap.d.mts +6721 -0
- package/swap.d.ts +6721 -0
- package/swap.mjs +21571 -0
- package/swap.mjs.map +1 -0
- package/unifiedBalance.cjs +20557 -0
- package/unifiedBalance.cjs.map +1 -0
- package/unifiedBalance.d.cts +7276 -0
- package/unifiedBalance.d.mts +7276 -0
- package/unifiedBalance.d.ts +7276 -0
- package/unifiedBalance.mjs +20551 -0
- package/unifiedBalance.mjs.map +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@circle-fin/app-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"bridge-kit"
|
|
31
31
|
],
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=20.0.0"
|
|
34
34
|
},
|
|
35
35
|
"main": "./index.cjs",
|
|
36
36
|
"module": "./index.mjs",
|
|
37
|
-
"types": "./index.d.
|
|
37
|
+
"types": "./index.d.cts",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@circle-fin/unified-balance-kit": "1.
|
|
40
|
-
"@circle-fin/provider-gateway-v1": "1.0
|
|
41
|
-
"@circle-fin/earn-kit": "1.
|
|
42
|
-
"@circle-fin/bridge-kit": "1.
|
|
43
|
-
"@circle-fin/swap-kit": "1.
|
|
39
|
+
"@circle-fin/unified-balance-kit": "1.2.0",
|
|
40
|
+
"@circle-fin/provider-gateway-v1": "1.1.0",
|
|
41
|
+
"@circle-fin/earn-kit": "1.2.0",
|
|
42
|
+
"@circle-fin/bridge-kit": "1.11.0",
|
|
43
|
+
"@circle-fin/swap-kit": "1.3.0",
|
|
44
44
|
"zod": "3.25.67",
|
|
45
45
|
"@ethersproject/address": "^5.8.0",
|
|
46
46
|
"@ethersproject/bytes": "^5.8.0",
|
|
@@ -52,55 +52,88 @@
|
|
|
52
52
|
"exports": {
|
|
53
53
|
"./package.json": "./package.json",
|
|
54
54
|
".": {
|
|
55
|
-
"types":
|
|
55
|
+
"types": {
|
|
56
|
+
"import": "./index.d.mts",
|
|
57
|
+
"require": "./index.d.cts"
|
|
58
|
+
},
|
|
56
59
|
"import": "./index.mjs",
|
|
57
60
|
"require": "./index.cjs",
|
|
58
61
|
"default": "./index.cjs"
|
|
59
62
|
},
|
|
60
63
|
"./chains": {
|
|
61
|
-
"types":
|
|
64
|
+
"types": {
|
|
65
|
+
"import": "./chains.d.mts",
|
|
66
|
+
"require": "./chains.d.cts"
|
|
67
|
+
},
|
|
62
68
|
"import": "./chains.mjs",
|
|
63
69
|
"require": "./chains.cjs",
|
|
64
70
|
"default": "./chains.cjs"
|
|
65
71
|
},
|
|
66
72
|
"./context": {
|
|
67
|
-
"types":
|
|
68
|
-
|
|
69
|
-
|
|
73
|
+
"types": {
|
|
74
|
+
"import": "./context.d.mts",
|
|
75
|
+
"require": "./context.d.cts"
|
|
76
|
+
},
|
|
77
|
+
"import": "./context.mjs",
|
|
78
|
+
"require": "./context.cjs"
|
|
70
79
|
},
|
|
71
80
|
"./bridge": {
|
|
72
|
-
"types":
|
|
73
|
-
|
|
74
|
-
|
|
81
|
+
"types": {
|
|
82
|
+
"import": "./bridge.d.mts",
|
|
83
|
+
"require": "./bridge.d.cts"
|
|
84
|
+
},
|
|
85
|
+
"import": "./bridge.mjs",
|
|
86
|
+
"require": "./bridge.cjs"
|
|
75
87
|
},
|
|
76
88
|
"./estimateBridge": {
|
|
77
|
-
"types":
|
|
78
|
-
|
|
79
|
-
|
|
89
|
+
"types": {
|
|
90
|
+
"import": "./estimateBridge.d.mts",
|
|
91
|
+
"require": "./estimateBridge.d.cts"
|
|
92
|
+
},
|
|
93
|
+
"import": "./estimateBridge.mjs",
|
|
94
|
+
"require": "./estimateBridge.cjs"
|
|
80
95
|
},
|
|
81
96
|
"./swap": {
|
|
82
|
-
"types":
|
|
83
|
-
|
|
84
|
-
|
|
97
|
+
"types": {
|
|
98
|
+
"import": "./swap.d.mts",
|
|
99
|
+
"require": "./swap.d.cts"
|
|
100
|
+
},
|
|
101
|
+
"import": "./swap.mjs",
|
|
102
|
+
"require": "./swap.cjs"
|
|
85
103
|
},
|
|
86
104
|
"./earn": {
|
|
87
|
-
"types":
|
|
105
|
+
"types": {
|
|
106
|
+
"import": "./earn.d.mts",
|
|
107
|
+
"require": "./earn.d.cts"
|
|
108
|
+
},
|
|
88
109
|
"import": "./earn.mjs",
|
|
89
110
|
"require": "./earn.cjs"
|
|
90
111
|
},
|
|
91
112
|
"./estimateSwap": {
|
|
92
|
-
"types":
|
|
93
|
-
|
|
94
|
-
|
|
113
|
+
"types": {
|
|
114
|
+
"import": "./estimateSwap.d.mts",
|
|
115
|
+
"require": "./estimateSwap.d.cts"
|
|
116
|
+
},
|
|
117
|
+
"import": "./estimateSwap.mjs",
|
|
118
|
+
"require": "./estimateSwap.cjs"
|
|
95
119
|
},
|
|
96
120
|
"./unifiedBalance": {
|
|
97
|
-
"types":
|
|
98
|
-
|
|
99
|
-
|
|
121
|
+
"types": {
|
|
122
|
+
"import": "./unifiedBalance.d.mts",
|
|
123
|
+
"require": "./unifiedBalance.d.cts"
|
|
124
|
+
},
|
|
125
|
+
"import": "./unifiedBalance.mjs",
|
|
126
|
+
"require": "./unifiedBalance.cjs"
|
|
100
127
|
}
|
|
101
128
|
},
|
|
102
129
|
"files": [
|
|
103
130
|
"chains.*",
|
|
131
|
+
"context.*",
|
|
132
|
+
"bridge.*",
|
|
133
|
+
"estimateBridge.*",
|
|
134
|
+
"swap.*",
|
|
135
|
+
"estimateSwap.*",
|
|
136
|
+
"unifiedBalance.*",
|
|
104
137
|
"earn.*",
|
|
105
138
|
"index.*",
|
|
106
139
|
"README.md",
|
|
@@ -110,7 +143,8 @@
|
|
|
110
143
|
"LICENSE"
|
|
111
144
|
],
|
|
112
145
|
"publishConfig": {
|
|
113
|
-
"access": "public"
|
|
114
|
-
|
|
115
|
-
|
|
146
|
+
"access": "public"
|
|
147
|
+
},
|
|
148
|
+
"type": "module",
|
|
149
|
+
"sideEffects": false
|
|
116
150
|
}
|