@fuel-ts/account 0.78.0 → 0.80.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/configs.d.ts +1 -0
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +1 -0
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +3 -0
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +2 -0
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +388 -210
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +668 -550
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +422 -299
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +0 -1
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +13 -2
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/input.d.ts.map +1 -1
- package/dist/providers/transaction-request/script-transaction-request.d.ts +3 -0
- package/dist/providers/transaction-request/script-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/types.d.ts +5 -0
- package/dist/providers/transaction-request/types.d.ts.map +1 -1
- package/dist/providers/transaction-response/getDecodedLogs.d.ts +2 -2
- package/dist/providers/transaction-response/getDecodedLogs.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts +5 -2
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/providers/utils/extract-tx-error.d.ts +36 -0
- package/dist/providers/utils/extract-tx-error.d.ts.map +1 -0
- package/dist/providers/utils/index.d.ts +1 -0
- package/dist/providers/utils/index.d.ts.map +1 -1
- package/dist/test-utils.global.js +390 -196
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +625 -499
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +392 -258
- 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.80.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -56,18 +56,18 @@
|
|
|
56
56
|
"portfinder": "^1.0.32",
|
|
57
57
|
"tree-kill": "^1.2.2",
|
|
58
58
|
"uuid": "^9.0.0",
|
|
59
|
-
"@fuel-ts/abi-coder": "0.
|
|
60
|
-
"@fuel-ts/address": "0.
|
|
61
|
-
"@fuel-ts/crypto": "0.
|
|
62
|
-
"@fuel-ts/errors": "0.
|
|
63
|
-
"@fuel-ts/fuel-core": "0.
|
|
64
|
-
"@fuel-ts/hasher": "0.
|
|
65
|
-
"@fuel-ts/interfaces": "0.
|
|
66
|
-
"@fuel-ts/math": "0.
|
|
67
|
-
"@fuel-ts/merkle": "0.
|
|
68
|
-
"@fuel-ts/transactions": "0.
|
|
69
|
-
"@fuel-ts/utils": "0.
|
|
70
|
-
"@fuel-ts/versions": "0.
|
|
59
|
+
"@fuel-ts/abi-coder": "0.80.0",
|
|
60
|
+
"@fuel-ts/address": "0.80.0",
|
|
61
|
+
"@fuel-ts/crypto": "0.80.0",
|
|
62
|
+
"@fuel-ts/errors": "0.80.0",
|
|
63
|
+
"@fuel-ts/fuel-core": "0.80.0",
|
|
64
|
+
"@fuel-ts/hasher": "0.80.0",
|
|
65
|
+
"@fuel-ts/interfaces": "0.80.0",
|
|
66
|
+
"@fuel-ts/math": "0.80.0",
|
|
67
|
+
"@fuel-ts/merkle": "0.80.0",
|
|
68
|
+
"@fuel-ts/transactions": "0.80.0",
|
|
69
|
+
"@fuel-ts/utils": "0.80.0",
|
|
70
|
+
"@fuel-ts/versions": "0.80.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@graphql-codegen/cli": "^2.13.7",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"get-graphql-schema": "^2.1.2",
|
|
78
78
|
"@types/ramda": "^0.29.3",
|
|
79
79
|
"@types/uuid": "^9.0.1",
|
|
80
|
-
"@fuel-ts/hasher": "0.
|
|
81
|
-
"@fuel-ts/math": "0.
|
|
82
|
-
"@fuel-ts/utils": "0.
|
|
80
|
+
"@fuel-ts/hasher": "0.80.0",
|
|
81
|
+
"@fuel-ts/math": "0.80.0",
|
|
82
|
+
"@fuel-ts/utils": "0.80.0"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
85
|
"build": "tsup",
|