@fuel-ts/account 0.0.0-rc-2037-20240510180649 → 0.0.0-rc-1356-20240513141855
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/hdwallet/hdwallet.d.ts.map +1 -1
- package/dist/index.global.js +1287 -1545
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +118 -129
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -16
- package/dist/index.mjs.map +1 -1
- package/dist/mnemonic/mnemonic.d.ts.map +1 -1
- package/dist/providers/utils/auto-retry-fetch.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/index.d.ts +4 -0
- package/dist/test-utils/index.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts +8 -1
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts +33 -0
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts.map +1 -0
- package/dist/test-utils/test-message.d.ts +28 -0
- package/dist/test-utils/test-message.d.ts.map +1 -0
- package/dist/test-utils/wallet-config.d.ts +49 -0
- package/dist/test-utils/wallet-config.d.ts.map +1 -0
- package/dist/test-utils.global.js +1648 -1584
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +400 -172
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +295 -71
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +16 -16
- package/dist/providers/utils/sleep.d.ts +0 -3
- package/dist/providers/utils/sleep.d.ts.map +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fuel-ts/account",
|
3
|
-
"version": "0.0.0-rc-
|
3
|
+
"version": "0.0.0-rc-1356-20240513141855",
|
4
4
|
"description": "",
|
5
5
|
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
|
6
6
|
"main": "dist/index.js",
|
@@ -43,7 +43,6 @@
|
|
43
43
|
"dependencies": {
|
44
44
|
"@fuels/vm-asm": "0.49.0",
|
45
45
|
"@noble/curves": "^1.3.0",
|
46
|
-
"ethers": "^6.7.1",
|
47
46
|
"events": "^3.3.0",
|
48
47
|
"graphql": "^16.8.1",
|
49
48
|
"graphql-request": "5.0.0",
|
@@ -52,19 +51,20 @@
|
|
52
51
|
"ramda": "^0.29.0",
|
53
52
|
"tree-kill": "^1.2.2",
|
54
53
|
"uuid": "^9.0.0",
|
55
|
-
"@fuel-ts/abi-coder": "0.0.0-rc-
|
56
|
-
"@fuel-ts/address": "0.0.0-rc-
|
57
|
-
"@fuel-ts/crypto": "0.0.0-rc-
|
58
|
-
"@fuel-ts/errors": "0.0.0-rc-
|
59
|
-
"@fuel-ts/hasher": "0.0.0-rc-
|
60
|
-
"@fuel-ts/interfaces": "0.0.0-rc-
|
61
|
-
"@fuel-ts/math": "0.0.0-rc-
|
62
|
-
"@fuel-ts/merkle": "0.0.0-rc-
|
63
|
-
"@fuel-ts/transactions": "0.0.0-rc-
|
64
|
-
"@fuel-ts/utils": "0.0.0-rc-
|
65
|
-
"@fuel-ts/versions": "0.0.0-rc-
|
54
|
+
"@fuel-ts/abi-coder": "0.0.0-rc-1356-20240513141855",
|
55
|
+
"@fuel-ts/address": "0.0.0-rc-1356-20240513141855",
|
56
|
+
"@fuel-ts/crypto": "0.0.0-rc-1356-20240513141855",
|
57
|
+
"@fuel-ts/errors": "0.0.0-rc-1356-20240513141855",
|
58
|
+
"@fuel-ts/hasher": "0.0.0-rc-1356-20240513141855",
|
59
|
+
"@fuel-ts/interfaces": "0.0.0-rc-1356-20240513141855",
|
60
|
+
"@fuel-ts/math": "0.0.0-rc-1356-20240513141855",
|
61
|
+
"@fuel-ts/merkle": "0.0.0-rc-1356-20240513141855",
|
62
|
+
"@fuel-ts/transactions": "0.0.0-rc-1356-20240513141855",
|
63
|
+
"@fuel-ts/utils": "0.0.0-rc-1356-20240513141855",
|
64
|
+
"@fuel-ts/versions": "0.0.0-rc-1356-20240513141855"
|
66
65
|
},
|
67
66
|
"devDependencies": {
|
67
|
+
"type-fest": "^4.6.0",
|
68
68
|
"@graphql-codegen/cli": "^2.13.7",
|
69
69
|
"@graphql-codegen/typescript": "^2.8.0",
|
70
70
|
"@graphql-codegen/typescript-generic-sdk": "^3.1.0",
|
@@ -72,9 +72,9 @@
|
|
72
72
|
"@types/ramda": "^0.29.3",
|
73
73
|
"@types/uuid": "^9.0.1",
|
74
74
|
"get-graphql-schema": "^2.1.2",
|
75
|
-
"@fuel-ts/hasher": "0.0.0-rc-
|
76
|
-
"@fuel-ts/math": "0.0.0-rc-
|
77
|
-
"@fuel-ts/utils": "0.0.0-rc-
|
75
|
+
"@fuel-ts/hasher": "0.0.0-rc-1356-20240513141855",
|
76
|
+
"@fuel-ts/math": "0.0.0-rc-1356-20240513141855",
|
77
|
+
"@fuel-ts/utils": "0.0.0-rc-1356-20240513141855"
|
78
78
|
},
|
79
79
|
"scripts": {
|
80
80
|
"build": "tsup",
|
@@ -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"}
|