@t402/wdk-gasless 2.6.1 → 2.9.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/README.md +16 -2
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @t402/wdk-gasless
|
|
2
2
|
|
|
3
|
-
Gasless USDT0 payments with
|
|
3
|
+
Gasless USDT0 payments with the WDK and ERC-4337 Account Abstraction.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -230,7 +230,7 @@ const result = await client.pay({
|
|
|
230
230
|
## Related Packages
|
|
231
231
|
|
|
232
232
|
- `@t402/core` - Core protocol types and client
|
|
233
|
-
- `@t402/wdk` -
|
|
233
|
+
- `@t402/wdk` - the WDK integration
|
|
234
234
|
- `@t402/wdk-bridge` - Cross-chain LayerZero bridging
|
|
235
235
|
- `@t402/wdk-multisig` - Safe multi-sig wallets
|
|
236
236
|
- `@t402/evm` - EVM mechanism implementation
|
|
@@ -238,3 +238,17 @@ const result = await client.pay({
|
|
|
238
238
|
## License
|
|
239
239
|
|
|
240
240
|
Apache-2.0
|
|
241
|
+
|
|
242
|
+
## Trademark Notice
|
|
243
|
+
|
|
244
|
+
T402 is an independent open-source project. It is not affiliated with,
|
|
245
|
+
endorsed by, sponsored by, or in any way officially connected with
|
|
246
|
+
Tether Operations Limited, Tether Holdings, or any of their affiliates.
|
|
247
|
+
|
|
248
|
+
"Tether", "USDT", "USDT0", "USDC", and other token names and trademarks
|
|
249
|
+
referenced are the property of their respective owners and are used
|
|
250
|
+
nominatively to describe token interoperability or to reference public
|
|
251
|
+
open-source products (Apache 2.0). Compatibility with Tether's
|
|
252
|
+
open-source WDK is at the user's option and does not represent a
|
|
253
|
+
formal partnership.
|
|
254
|
+
|
package/package.json
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t402/wdk-gasless",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"main": "./dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/cjs/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsup",
|
|
9
|
+
"test": "vitest run --pool=forks",
|
|
10
|
+
"test:watch": "vitest",
|
|
11
|
+
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
|
|
12
|
+
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
|
|
13
|
+
"lint": "eslint . --ext .ts --fix",
|
|
14
|
+
"lint:check": "eslint . --ext .ts"
|
|
15
|
+
},
|
|
7
16
|
"keywords": [
|
|
8
17
|
"t402",
|
|
9
18
|
"payment",
|
|
@@ -21,7 +30,7 @@
|
|
|
21
30
|
"repository": {
|
|
22
31
|
"type": "git",
|
|
23
32
|
"url": "https://github.com/t402-io/t402.git",
|
|
24
|
-
"directory": "
|
|
33
|
+
"directory": "packages/wdk-gasless"
|
|
25
34
|
},
|
|
26
35
|
"description": "Gasless USDT0 payments with Tether WDK and ERC-4337 Account Abstraction",
|
|
27
36
|
"devDependencies": {
|
|
@@ -43,15 +52,15 @@
|
|
|
43
52
|
"vitest": "^3.2.4"
|
|
44
53
|
},
|
|
45
54
|
"dependencies": {
|
|
46
|
-
"@t402/core": "
|
|
47
|
-
"@t402/
|
|
48
|
-
"@t402/
|
|
55
|
+
"@t402/core": "workspace:*",
|
|
56
|
+
"@t402/evm": "workspace:*",
|
|
57
|
+
"@t402/wdk": "workspace:*"
|
|
49
58
|
},
|
|
50
59
|
"peerDependencies": {
|
|
51
60
|
"viem": "^2.0.0",
|
|
52
|
-
"@tetherto/wdk": ">=1.0.0-beta.
|
|
53
|
-
"@tetherto/wdk-wallet-evm": ">=1.0.0-beta.
|
|
54
|
-
"@tetherto/wdk-wallet-evm-erc-4337": ">=1.0.0-beta.
|
|
61
|
+
"@tetherto/wdk": ">=1.0.0-beta.7",
|
|
62
|
+
"@tetherto/wdk-wallet-evm": ">=1.0.0-beta.5",
|
|
63
|
+
"@tetherto/wdk-wallet-evm-erc-4337": ">=1.0.0-beta.5"
|
|
55
64
|
},
|
|
56
65
|
"peerDependenciesMeta": {
|
|
57
66
|
"@tetherto/wdk": {
|
|
@@ -82,14 +91,5 @@
|
|
|
82
91
|
"homepage": "https://t402.io",
|
|
83
92
|
"publishConfig": {
|
|
84
93
|
"access": "public"
|
|
85
|
-
},
|
|
86
|
-
"scripts": {
|
|
87
|
-
"build": "tsup",
|
|
88
|
-
"test": "vitest run --pool=forks",
|
|
89
|
-
"test:watch": "vitest",
|
|
90
|
-
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
|
|
91
|
-
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
|
|
92
|
-
"lint": "eslint . --ext .ts --fix",
|
|
93
|
-
"lint:check": "eslint . --ext .ts"
|
|
94
94
|
}
|
|
95
|
-
}
|
|
95
|
+
}
|