@fuel-ts/account 0.94.6 → 0.94.8
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/connectors/fuel-connector.d.ts +1 -0
- package/dist/connectors/fuel-connector.d.ts.map +1 -1
- package/dist/index.global.js +450 -381
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +28 -80
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -80
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +1 -0
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/assets/assets.d.ts.map +1 -1
- package/dist/providers/transaction-summary/receipt.d.ts.map +1 -1
- package/dist/providers/utils/receipts.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +798 -3601
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +28 -87
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +28 -87
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +24 -25
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fuel-ts/account",
|
3
|
-
"version": "0.94.
|
3
|
+
"version": "0.94.8",
|
4
4
|
"description": "",
|
5
5
|
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
|
6
6
|
"main": "dist/index.js",
|
@@ -11,19 +11,19 @@
|
|
11
11
|
},
|
12
12
|
"exports": {
|
13
13
|
".": {
|
14
|
+
"types": "./dist/index.d.ts",
|
14
15
|
"require": "./dist/index.js",
|
15
|
-
"import": "./dist/index.mjs"
|
16
|
-
"types": "./dist/index.d.ts"
|
16
|
+
"import": "./dist/index.mjs"
|
17
17
|
},
|
18
18
|
"./configs": {
|
19
|
+
"types": "./dist/configs.d.ts",
|
19
20
|
"require": "./dist/configs.js",
|
20
|
-
"import": "./dist/configs.mjs"
|
21
|
-
"types": "./dist/configs.d.ts"
|
21
|
+
"import": "./dist/configs.mjs"
|
22
22
|
},
|
23
23
|
"./test-utils": {
|
24
|
+
"types": "./dist/test-utils.d.ts",
|
24
25
|
"require": "./dist/test-utils.js",
|
25
|
-
"import": "./dist/test-utils.mjs"
|
26
|
-
"types": "./dist/test-utils.d.ts"
|
26
|
+
"import": "./dist/test-utils.mjs"
|
27
27
|
}
|
28
28
|
},
|
29
29
|
"typesVersions": {
|
@@ -41,25 +41,24 @@
|
|
41
41
|
],
|
42
42
|
"license": "Apache-2.0",
|
43
43
|
"dependencies": {
|
44
|
-
"@fuels/vm-asm": "0.
|
44
|
+
"@fuels/vm-asm": "0.57.1",
|
45
45
|
"@noble/curves": "^1.6.0",
|
46
46
|
"events": "^3.3.0",
|
47
47
|
"graphql": "^16.9.0",
|
48
48
|
"graphql-request": "5.0.0",
|
49
49
|
"graphql-tag": "^2.12.6",
|
50
|
-
"portfinder": "^1.0.32",
|
51
50
|
"ramda": "^0.30.1",
|
52
|
-
"@fuel-ts/abi-coder": "0.94.
|
53
|
-
"@fuel-ts/address": "0.94.
|
54
|
-
"@fuel-ts/crypto": "0.94.
|
55
|
-
"@fuel-ts/errors": "0.94.
|
56
|
-
"@fuel-ts/hasher": "0.94.
|
57
|
-
"@fuel-ts/interfaces": "0.94.
|
58
|
-
"@fuel-ts/math": "0.94.
|
59
|
-
"@fuel-ts/merkle": "0.94.
|
60
|
-
"@fuel-ts/transactions": "0.94.
|
61
|
-
"@fuel-ts/utils": "0.94.
|
62
|
-
"@fuel-ts/versions": "0.94.
|
51
|
+
"@fuel-ts/abi-coder": "0.94.8",
|
52
|
+
"@fuel-ts/address": "0.94.8",
|
53
|
+
"@fuel-ts/crypto": "0.94.8",
|
54
|
+
"@fuel-ts/errors": "0.94.8",
|
55
|
+
"@fuel-ts/hasher": "0.94.8",
|
56
|
+
"@fuel-ts/interfaces": "0.94.8",
|
57
|
+
"@fuel-ts/math": "0.94.8",
|
58
|
+
"@fuel-ts/merkle": "0.94.8",
|
59
|
+
"@fuel-ts/transactions": "0.94.8",
|
60
|
+
"@fuel-ts/utils": "0.94.8",
|
61
|
+
"@fuel-ts/versions": "0.94.8"
|
63
62
|
},
|
64
63
|
"devDependencies": {
|
65
64
|
"type-fest": "^4.26.1",
|
@@ -69,15 +68,15 @@
|
|
69
68
|
"@graphql-codegen/typescript-operations": "^4.2.3",
|
70
69
|
"@types/ramda": "^0.30.2",
|
71
70
|
"get-graphql-schema": "^2.1.2",
|
72
|
-
"@fuel-ts/hasher": "0.94.
|
73
|
-
"@fuel-ts/math": "0.94.
|
74
|
-
"@fuel-ts/utils": "0.94.
|
75
|
-
"@internal/utils": "0.0.
|
71
|
+
"@fuel-ts/hasher": "0.94.8",
|
72
|
+
"@fuel-ts/math": "0.94.8",
|
73
|
+
"@fuel-ts/utils": "0.94.8",
|
74
|
+
"@internal/utils": "0.0.2"
|
76
75
|
},
|
77
76
|
"scripts": {
|
78
77
|
"build": "tsup",
|
79
78
|
"prebuild": "pnpm build:operations",
|
80
|
-
"build:schema": "
|
79
|
+
"build:schema": "tsx ./scripts/generate-fuel-core-schema.mts",
|
81
80
|
"build:operations": "pnpm graphql-codegen",
|
82
81
|
"postbuild": "tsx ../../scripts/postbuild.ts"
|
83
82
|
}
|