@trezor/connect 9.1.10 → 9.1.12
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/CHANGELOG.md +32 -0
- package/README.md +1 -1
- package/lib/api/binance/api/binanceSignTransaction.js +1 -1
- package/lib/api/cardano/api/cardanoSignTransaction.js +1 -1
- package/lib/api/eos/api/eosSignTransaction.js +1 -1
- package/lib/api/eos/eosSignTx.d.ts +3 -3
- package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +2 -2
- package/lib/api/firmware/uploadFirmware.d.ts +2 -2
- package/lib/api/getAddress.js +6 -0
- package/lib/api/getCoinInfo.d.ts +3 -3
- package/lib/api/nem/api/nemSignTransaction.js +5 -1
- package/lib/api/nem/nemSignTx.d.ts +1 -1
- package/lib/api/ripple/api/rippleSignTransaction.js +1 -1
- package/lib/api/solana/api/solanaSignTransaction.js +1 -1
- package/lib/api/stellar/api/stellarSignTransaction.js +1 -1
- package/lib/api/tezos/api/tezosSignTransaction.js +1 -1
- package/lib/backend/Blockchain.d.ts +2 -2
- package/lib/core/AbstractMethod.d.ts +3 -3
- package/lib/core/AbstractMethod.js +20 -18
- package/lib/core/index.d.ts +3 -6
- package/lib/core/index.js +57 -48
- package/lib/core/method.d.ts +1 -3
- package/lib/core/method.native.d.ts +1 -3
- package/lib/data/analyticsInfo.d.ts +2 -2
- package/lib/data/coinInfo.d.ts +14 -14
- package/lib/data/deviceAuthenticityConfig.js +4 -1
- package/lib/data/version.d.ts +1 -1
- package/lib/data/version.js +1 -1
- package/lib/device/Device.d.ts +2 -2
- package/lib/events/call.d.ts +1 -1
- package/lib/events/core.d.ts +8 -10
- package/lib/events/iframe.d.ts +1 -1
- package/lib/events/popup.d.ts +1 -1
- package/lib/events/ui-request.d.ts +1 -2
- package/lib/index.d.ts +0 -4
- package/lib/index.js +23 -40
- package/lib/types/api/ethereum/index.d.ts +4 -4
- package/lib/types/api/ethereum/index.js +1 -1
- package/lib/types/api/nem/index.d.ts +46 -46
- package/lib/types/api/nem/index.js +1 -1
- package/lib/utils/promiseUtils.d.ts +0 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trezor/connect",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.12",
|
|
4
4
|
"author": "Trezor <info@trezor.io>",
|
|
5
5
|
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect",
|
|
6
6
|
"description": "High-level javascript interface for Trezor hardware wallet.",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"version:patch": "tsx scripts/bump-version.ts patch",
|
|
44
44
|
"version:minor": "tsx scripts/bump-version.ts minor",
|
|
45
45
|
"version:major": "tsx scripts/bump-version.ts major",
|
|
46
|
-
"test:e2e:web": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/run.ts web",
|
|
47
|
-
"test:e2e:node": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/run.ts node",
|
|
46
|
+
"test:e2e:web": "ts-node -O '{\"module\": \"commonjs\", \"moduleResolution\": \"node\"}' ./e2e/run.ts web",
|
|
47
|
+
"test:e2e:node": "ts-node -O '{\"module\": \"commonjs\", \"moduleResolution\": \"node\"}' ./e2e/run.ts node",
|
|
48
48
|
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
|
49
49
|
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
|
50
50
|
},
|
|
@@ -52,16 +52,16 @@
|
|
|
52
52
|
"@ethereumjs/common": "^4.1.0",
|
|
53
53
|
"@ethereumjs/tx": "^5.1.0",
|
|
54
54
|
"@fivebinaries/coin-selection": "2.2.1",
|
|
55
|
-
"@trezor/blockchain-link": "2.1.
|
|
56
|
-
"@trezor/blockchain-link-types": "1.0.
|
|
57
|
-
"@trezor/connect-analytics": "1.0.
|
|
58
|
-
"@trezor/connect-common": "0.0.
|
|
59
|
-
"@trezor/protobuf": "1.0.
|
|
55
|
+
"@trezor/blockchain-link": "2.1.25",
|
|
56
|
+
"@trezor/blockchain-link-types": "1.0.13",
|
|
57
|
+
"@trezor/connect-analytics": "1.0.12",
|
|
58
|
+
"@trezor/connect-common": "0.0.28",
|
|
59
|
+
"@trezor/protobuf": "1.0.8",
|
|
60
60
|
"@trezor/protocol": "1.0.5",
|
|
61
|
-
"@trezor/schema-utils": "1.0.
|
|
62
|
-
"@trezor/transport": "1.1.
|
|
63
|
-
"@trezor/utils": "9.0.
|
|
64
|
-
"@trezor/utxo-lib": "2.0.
|
|
61
|
+
"@trezor/schema-utils": "1.0.1",
|
|
62
|
+
"@trezor/transport": "1.1.24",
|
|
63
|
+
"@trezor/utils": "9.0.21",
|
|
64
|
+
"@trezor/utxo-lib": "2.0.6",
|
|
65
65
|
"bignumber.js": "^9.1.1",
|
|
66
66
|
"blakejs": "^1.2.1",
|
|
67
67
|
"bs58": "^5.0.0",
|