@fuel-ts/account 0.94.8 → 0.95.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/dist/index.global.js +721 -702
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +204 -231
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +205 -233
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +9 -1
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +264 -1421
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/fuel-graphql-subscriber.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +10 -9
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/create-transaction-request.d.ts +2 -2
- package/dist/providers/transaction-request/create-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/upload-transaction-request.d.ts +2 -3
- package/dist/providers/transaction-request/upload-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-summary/types.d.ts +16 -0
- package/dist/providers/transaction-summary/types.d.ts.map +1 -1
- package/dist/test-utils.global.js +696 -700
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +177 -229
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +178 -230
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +16 -16
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fuel-ts/account",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.95.0",
|
4
4
|
"description": "",
|
5
5
|
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
|
6
6
|
"main": "dist/index.js",
|
@@ -41,24 +41,24 @@
|
|
41
41
|
],
|
42
42
|
"license": "Apache-2.0",
|
43
43
|
"dependencies": {
|
44
|
-
"@fuels/vm-asm": "0.
|
44
|
+
"@fuels/vm-asm": "0.58.0",
|
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
50
|
"ramda": "^0.30.1",
|
51
|
-
"@fuel-ts/abi-coder": "0.
|
52
|
-
"@fuel-ts/address": "0.
|
53
|
-
"@fuel-ts/crypto": "0.
|
54
|
-
"@fuel-ts/errors": "0.
|
55
|
-
"@fuel-ts/hasher": "0.
|
56
|
-
"@fuel-ts/interfaces": "0.
|
57
|
-
"@fuel-ts/math": "0.
|
58
|
-
"@fuel-ts/merkle": "0.
|
59
|
-
"@fuel-ts/transactions": "0.
|
60
|
-
"@fuel-ts/utils": "0.
|
61
|
-
"@fuel-ts/versions": "0.
|
51
|
+
"@fuel-ts/abi-coder": "0.95.0",
|
52
|
+
"@fuel-ts/address": "0.95.0",
|
53
|
+
"@fuel-ts/crypto": "0.95.0",
|
54
|
+
"@fuel-ts/errors": "0.95.0",
|
55
|
+
"@fuel-ts/hasher": "0.95.0",
|
56
|
+
"@fuel-ts/interfaces": "0.95.0",
|
57
|
+
"@fuel-ts/math": "0.95.0",
|
58
|
+
"@fuel-ts/merkle": "0.95.0",
|
59
|
+
"@fuel-ts/transactions": "0.95.0",
|
60
|
+
"@fuel-ts/utils": "0.95.0",
|
61
|
+
"@fuel-ts/versions": "0.95.0"
|
62
62
|
},
|
63
63
|
"devDependencies": {
|
64
64
|
"type-fest": "^4.26.1",
|
@@ -68,9 +68,9 @@
|
|
68
68
|
"@graphql-codegen/typescript-operations": "^4.2.3",
|
69
69
|
"@types/ramda": "^0.30.2",
|
70
70
|
"get-graphql-schema": "^2.1.2",
|
71
|
-
"@fuel-ts/hasher": "0.
|
72
|
-
"@fuel-ts/math": "0.
|
73
|
-
"@fuel-ts/utils": "0.
|
71
|
+
"@fuel-ts/hasher": "0.95.0",
|
72
|
+
"@fuel-ts/math": "0.95.0",
|
73
|
+
"@fuel-ts/utils": "0.95.0",
|
74
74
|
"@internal/utils": "0.0.2"
|
75
75
|
},
|
76
76
|
"scripts": {
|