@fuel-ts/account 0.101.0 → 0.101.2
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/account.d.ts +3 -1
- package/dist/account.d.ts.map +1 -1
- package/dist/connectors/fuel-connector.d.ts +3 -3
- package/dist/connectors/fuel-connector.d.ts.map +1 -1
- package/dist/connectors/types/connector-types.d.ts +1 -0
- package/dist/connectors/types/connector-types.d.ts.map +1 -1
- package/dist/index.global.js +223 -82
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +379 -243
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +312 -176
- package/dist/index.mjs.map +1 -1
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/providers/transaction-summary/call.d.ts +4 -7
- package/dist/providers/transaction-summary/call.d.ts.map +1 -1
- package/dist/providers/transaction-summary/operations.d.ts +1 -1
- package/dist/providers/transaction-summary/operations.d.ts.map +1 -1
- package/dist/providers/utils/extract-tx-error.d.ts +10 -1
- package/dist/providers/utils/extract-tx-error.d.ts.map +1 -1
- package/dist/test-utils.global.js +221 -81
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +337 -204
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +273 -139
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fuel-ts/account",
|
3
|
-
"version": "0.101.
|
3
|
+
"version": "0.101.2",
|
4
4
|
"description": "",
|
5
5
|
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
|
6
6
|
"main": "dist/index.js",
|
7
7
|
"module": "dist/index.mjs",
|
8
8
|
"types": "dist/index.d.ts",
|
9
9
|
"engines": {
|
10
|
-
"node": "^
|
10
|
+
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
|
11
11
|
},
|
12
12
|
"exports": {
|
13
13
|
".": {
|
@@ -48,16 +48,16 @@
|
|
48
48
|
"graphql-request": "6.1.0",
|
49
49
|
"graphql-tag": "2.12.6",
|
50
50
|
"ramda": "0.30.1",
|
51
|
-
"@fuel-ts/abi-coder": "0.101.
|
52
|
-
"@fuel-ts/address": "0.101.
|
53
|
-
"@fuel-ts/crypto": "0.101.
|
54
|
-
"@fuel-ts/errors": "0.101.
|
55
|
-
"@fuel-ts/hasher": "0.101.
|
56
|
-
"@fuel-ts/math": "0.101.
|
57
|
-
"@fuel-ts/merkle": "0.101.
|
58
|
-
"@fuel-ts/transactions": "0.101.
|
59
|
-
"@fuel-ts/utils": "0.101.
|
60
|
-
"@fuel-ts/versions": "0.101.
|
51
|
+
"@fuel-ts/abi-coder": "0.101.2",
|
52
|
+
"@fuel-ts/address": "0.101.2",
|
53
|
+
"@fuel-ts/crypto": "0.101.2",
|
54
|
+
"@fuel-ts/errors": "0.101.2",
|
55
|
+
"@fuel-ts/hasher": "0.101.2",
|
56
|
+
"@fuel-ts/math": "0.101.2",
|
57
|
+
"@fuel-ts/merkle": "0.101.2",
|
58
|
+
"@fuel-ts/transactions": "0.101.2",
|
59
|
+
"@fuel-ts/utils": "0.101.2",
|
60
|
+
"@fuel-ts/versions": "0.101.2"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@graphql-codegen/cli": "5.0.5",
|
@@ -67,9 +67,9 @@
|
|
67
67
|
"@types/ramda": "0.30.2",
|
68
68
|
"get-graphql-schema": "2.1.2",
|
69
69
|
"type-fest": "4.34.1",
|
70
|
-
"@fuel-ts/hasher": "0.101.
|
71
|
-
"@fuel-ts/math": "0.101.
|
72
|
-
"@fuel-ts/utils": "0.101.
|
70
|
+
"@fuel-ts/hasher": "0.101.2",
|
71
|
+
"@fuel-ts/math": "0.101.2",
|
72
|
+
"@fuel-ts/utils": "0.101.2"
|
73
73
|
},
|
74
74
|
"scripts": {
|
75
75
|
"build": "tsup",
|