@funkit/core 2.1.2-next.1 → 2.1.2-next.3
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.js +409 -0
- package/dist/index.js.map +3 -3
- package/dist/src/common/constants.d.ts +42 -0
- package/package.json +2 -2
|
@@ -263,6 +263,47 @@ export declare const ERC20_ABI: ({
|
|
|
263
263
|
type: string;
|
|
264
264
|
anonymous?: undefined;
|
|
265
265
|
})[];
|
|
266
|
+
export declare const USDT_ABI: ({
|
|
267
|
+
constant: boolean;
|
|
268
|
+
inputs: {
|
|
269
|
+
name: string;
|
|
270
|
+
type: string;
|
|
271
|
+
}[];
|
|
272
|
+
name: string;
|
|
273
|
+
outputs: {
|
|
274
|
+
name: string;
|
|
275
|
+
type: string;
|
|
276
|
+
}[];
|
|
277
|
+
payable: boolean;
|
|
278
|
+
stateMutability: string;
|
|
279
|
+
type: string;
|
|
280
|
+
anonymous?: undefined;
|
|
281
|
+
} | {
|
|
282
|
+
inputs: {
|
|
283
|
+
name: string;
|
|
284
|
+
type: string;
|
|
285
|
+
}[];
|
|
286
|
+
payable: boolean;
|
|
287
|
+
stateMutability: string;
|
|
288
|
+
type: string;
|
|
289
|
+
constant?: undefined;
|
|
290
|
+
name?: undefined;
|
|
291
|
+
outputs?: undefined;
|
|
292
|
+
anonymous?: undefined;
|
|
293
|
+
} | {
|
|
294
|
+
anonymous: boolean;
|
|
295
|
+
inputs: {
|
|
296
|
+
indexed: boolean;
|
|
297
|
+
name: string;
|
|
298
|
+
type: string;
|
|
299
|
+
}[];
|
|
300
|
+
name: string;
|
|
301
|
+
type: string;
|
|
302
|
+
constant?: undefined;
|
|
303
|
+
outputs?: undefined;
|
|
304
|
+
payable?: undefined;
|
|
305
|
+
stateMutability?: undefined;
|
|
306
|
+
})[];
|
|
266
307
|
export declare const WALLET_ABI: ({
|
|
267
308
|
inputs: never[];
|
|
268
309
|
stateMutability: string;
|
|
@@ -956,6 +997,7 @@ export declare const ESTIMATION_PAYMASTER_ABI: ({
|
|
|
956
997
|
export declare const ENTRYPOINT_CONTRACT_INTERFACE: ContractInterface;
|
|
957
998
|
export declare const ERC721_CONTRACT_INTERFACE: ContractInterface;
|
|
958
999
|
export declare const ERC20_CONTRACT_INTERFACE: ContractInterface;
|
|
1000
|
+
export declare const USDT_CONTRACT_INTERFACE: ContractInterface;
|
|
959
1001
|
export declare const FACTORY_CONTRACT_INTERFACE: ContractInterface;
|
|
960
1002
|
export declare const GASLESS_PAYMASTER_CONTRACT_INTERFACE: ContractInterface;
|
|
961
1003
|
export declare const TOKEN_PAYMASTER_CONTRACT_INTERFACE: ContractInterface;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/core",
|
|
3
|
-
"version": "2.1.2-next.
|
|
3
|
+
"version": "2.1.2-next.3",
|
|
4
4
|
"description": "Funkit core SDK provides feature-rich and extensible smart wallets built on account abstraction",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"ethers": "5.7.2",
|
|
27
27
|
"uuid": "^9.0.0",
|
|
28
28
|
"viem": "2.9.31",
|
|
29
|
-
"@funkit/api-base": "1.0.2-next.
|
|
29
|
+
"@funkit/api-base": "1.0.2-next.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/big.js": "^6.2.2",
|