@fuel-ts/account 0.89.2 → 0.91.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.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/dist/account.d.ts +8 -0
- package/dist/account.d.ts.map +1 -1
- package/dist/configs.d.ts +3 -1
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +4 -2
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +10 -4
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +7 -3
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +3228 -2762
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +246 -178
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +150 -81
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +8 -0
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +711 -505
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/assets/utils/network.d.ts.map +1 -1
- package/dist/providers/chains.d.ts +1 -1
- package/dist/providers/provider.d.ts +12 -2
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/utils/auto-retry-fetch.d.ts.map +1 -1
- package/dist/providers/utils/extract-tx-error.d.ts +2 -8
- package/dist/providers/utils/extract-tx-error.d.ts.map +1 -1
- package/dist/providers/utils/index.d.ts +0 -1
- package/dist/providers/utils/index.d.ts.map +1 -1
- package/dist/test-utils/asset-id.d.ts +8 -0
- package/dist/test-utils/asset-id.d.ts.map +1 -0
- package/dist/test-utils/launchNode.d.ts +10 -5
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts +34 -0
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts.map +1 -0
- package/dist/test-utils/test-message.d.ts +29 -0
- package/dist/test-utils/test-message.d.ts.map +1 -0
- package/dist/test-utils/wallet-config.d.ts +55 -0
- package/dist/test-utils/wallet-config.d.ts.map +1 -0
- package/dist/test-utils.d.ts +8 -0
- package/dist/test-utils.d.ts.map +1 -0
- package/dist/test-utils.global.js +2277 -1467
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +546 -234
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +452 -144
- package/dist/test-utils.mjs.map +1 -1
- package/dist/wallet/base-wallet-unlocked.d.ts +1 -1
- package/package.json +26 -25
- package/dist/providers/utils/sleep.d.ts +0 -3
- package/dist/providers/utils/sleep.d.ts.map +0 -1
- package/dist/test-utils/index.d.ts +0 -4
- package/dist/test-utils/index.d.ts.map +0 -1
@@ -64,7 +64,7 @@ export declare class BaseWalletUnlocked extends Account {
|
|
64
64
|
*/
|
65
65
|
sendTransaction(transactionRequestLike: TransactionRequestLike, { estimateTxDependencies, awaitExecution }?: ProviderSendTxParams): Promise<TransactionResponse>;
|
66
66
|
/**
|
67
|
-
* Populates the witness signature for a transaction and sends a call to the network using `provider.
|
67
|
+
* Populates the witness signature for a transaction and sends a call to the network using `provider.dryRun`.
|
68
68
|
*
|
69
69
|
* @param transactionRequestLike - The transaction request to simulate.
|
70
70
|
* @returns A promise that resolves to the CallResult object.
|
package/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fuel-ts/account",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.91.0",
|
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": "^18.
|
10
|
+
"node": "^18.20.3 || ^20.0.0 || ^22.0.0"
|
11
11
|
},
|
12
12
|
"exports": {
|
13
13
|
".": {
|
@@ -32,7 +32,7 @@
|
|
32
32
|
"./dist/configs.d.ts"
|
33
33
|
],
|
34
34
|
"test-utils": [
|
35
|
-
"./dist/test-utils
|
35
|
+
"./dist/test-utils.d.ts"
|
36
36
|
]
|
37
37
|
}
|
38
38
|
},
|
@@ -41,8 +41,8 @@
|
|
41
41
|
],
|
42
42
|
"license": "Apache-2.0",
|
43
43
|
"dependencies": {
|
44
|
-
"@fuels/vm-asm": "0.
|
45
|
-
"@noble/curves": "^1.
|
44
|
+
"@fuels/vm-asm": "0.54.0",
|
45
|
+
"@noble/curves": "^1.4.0",
|
46
46
|
"events": "^3.3.0",
|
47
47
|
"graphql": "^16.8.1",
|
48
48
|
"graphql-request": "5.0.0",
|
@@ -50,35 +50,36 @@
|
|
50
50
|
"portfinder": "^1.0.32",
|
51
51
|
"ramda": "^0.29.0",
|
52
52
|
"tree-kill": "^1.2.2",
|
53
|
-
"uuid": "^
|
54
|
-
"@fuel-ts/abi-coder": "0.
|
55
|
-
"@fuel-ts/address": "0.
|
56
|
-
"@fuel-ts/crypto": "0.
|
57
|
-
"@fuel-ts/errors": "0.
|
58
|
-
"@fuel-ts/hasher": "0.
|
59
|
-
"@fuel-ts/interfaces": "0.
|
60
|
-
"@fuel-ts/math": "0.
|
61
|
-
"@fuel-ts/merkle": "0.
|
62
|
-
"@fuel-ts/transactions": "0.
|
63
|
-
"@fuel-ts/utils": "0.
|
64
|
-
"@fuel-ts/versions": "0.
|
53
|
+
"uuid": "^10.0.0",
|
54
|
+
"@fuel-ts/abi-coder": "0.91.0",
|
55
|
+
"@fuel-ts/address": "0.91.0",
|
56
|
+
"@fuel-ts/crypto": "0.91.0",
|
57
|
+
"@fuel-ts/errors": "0.91.0",
|
58
|
+
"@fuel-ts/hasher": "0.91.0",
|
59
|
+
"@fuel-ts/interfaces": "0.91.0",
|
60
|
+
"@fuel-ts/math": "0.91.0",
|
61
|
+
"@fuel-ts/merkle": "0.91.0",
|
62
|
+
"@fuel-ts/transactions": "0.91.0",
|
63
|
+
"@fuel-ts/utils": "0.91.0",
|
64
|
+
"@fuel-ts/versions": "0.91.0"
|
65
65
|
},
|
66
66
|
"devDependencies": {
|
67
|
-
"
|
68
|
-
"@graphql-codegen/
|
69
|
-
"@graphql-codegen/typescript
|
70
|
-
"@graphql-codegen/typescript-
|
67
|
+
"type-fest": "^4.6.0",
|
68
|
+
"@graphql-codegen/cli": "^5.0.2",
|
69
|
+
"@graphql-codegen/typescript": "^4.0.8",
|
70
|
+
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
|
71
|
+
"@graphql-codegen/typescript-operations": "^4.2.2",
|
71
72
|
"@types/ramda": "^0.29.3",
|
72
73
|
"@types/uuid": "^9.0.1",
|
73
74
|
"get-graphql-schema": "^2.1.2",
|
74
|
-
"@fuel-ts/hasher": "0.
|
75
|
-
"@fuel-ts/math": "0.
|
76
|
-
"@fuel-ts/utils": "0.
|
75
|
+
"@fuel-ts/hasher": "0.91.0",
|
76
|
+
"@fuel-ts/math": "0.91.0",
|
77
|
+
"@fuel-ts/utils": "0.91.0"
|
77
78
|
},
|
78
79
|
"scripts": {
|
79
80
|
"build": "tsup",
|
80
81
|
"prebuild": "pnpm build:operations",
|
81
|
-
"build:schema": "get-graphql-schema http://
|
82
|
+
"build:schema": "get-graphql-schema http://127.0.0.1:4000/v1/graphql > src/providers/fuel-core-schema.graphql && prettier --write src/providers/fuel-core-schema.graphql",
|
82
83
|
"build:operations": "pnpm graphql-codegen",
|
83
84
|
"postbuild": "tsx ../../scripts/postbuild.ts"
|
84
85
|
}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"sleep.d.ts","sourceRoot":"","sources":["../../../src/providers/utils/sleep.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,oBAMjC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/test-utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC"}
|