@shapeshiftoss/hdwallet-metamask-multichain 1.55.10-mipd.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.
Files changed (66) hide show
  1. package/LICENSE.md +21 -0
  2. package/dist/adapter.d.ts +11 -0
  3. package/dist/adapter.d.ts.map +1 -0
  4. package/dist/adapter.js +95 -0
  5. package/dist/adapter.js.map +1 -0
  6. package/dist/bitcoin.d.ts +8 -0
  7. package/dist/bitcoin.d.ts.map +1 -0
  8. package/dist/bitcoin.js +43 -0
  9. package/dist/bitcoin.js.map +1 -0
  10. package/dist/bitcoincash.d.ts +8 -0
  11. package/dist/bitcoincash.d.ts.map +1 -0
  12. package/dist/bitcoincash.js +43 -0
  13. package/dist/bitcoincash.js.map +1 -0
  14. package/dist/common.d.ts +2 -0
  15. package/dist/common.d.ts.map +1 -0
  16. package/dist/common.js +6 -0
  17. package/dist/common.js.map +1 -0
  18. package/dist/cosmos.d.ts +7 -0
  19. package/dist/cosmos.d.ts.map +1 -0
  20. package/dist/cosmos.js +64 -0
  21. package/dist/cosmos.js.map +1 -0
  22. package/dist/dogecoin.d.ts +8 -0
  23. package/dist/dogecoin.d.ts.map +1 -0
  24. package/dist/dogecoin.js +43 -0
  25. package/dist/dogecoin.js.map +1 -0
  26. package/dist/ethereum.d.ts +9 -0
  27. package/dist/ethereum.d.ts.map +1 -0
  28. package/dist/ethereum.js +159 -0
  29. package/dist/ethereum.js.map +1 -0
  30. package/dist/index.d.ts +3 -0
  31. package/dist/index.d.ts.map +1 -0
  32. package/dist/index.js +19 -0
  33. package/dist/index.js.map +1 -0
  34. package/dist/litecoin.d.ts +8 -0
  35. package/dist/litecoin.d.ts.map +1 -0
  36. package/dist/litecoin.js +43 -0
  37. package/dist/litecoin.js.map +1 -0
  38. package/dist/shapeshift-multichain.d.ts +203 -0
  39. package/dist/shapeshift-multichain.d.ts.map +1 -0
  40. package/dist/shapeshift-multichain.js +883 -0
  41. package/dist/shapeshift-multichain.js.map +1 -0
  42. package/dist/thorchain.d.ts +7 -0
  43. package/dist/thorchain.d.ts.map +1 -0
  44. package/dist/thorchain.js +64 -0
  45. package/dist/thorchain.js.map +1 -0
  46. package/dist/utxo.d.ts +6 -0
  47. package/dist/utxo.d.ts.map +1 -0
  48. package/dist/utxo.js +205 -0
  49. package/dist/utxo.js.map +1 -0
  50. package/package.json +32 -0
  51. package/src/adapter.ts +62 -0
  52. package/src/bitcoin.ts +32 -0
  53. package/src/bitcoincash.ts +32 -0
  54. package/src/common.ts +2 -0
  55. package/src/cosmos.ts +30 -0
  56. package/src/dogecoin.ts +32 -0
  57. package/src/ethereum.ts +125 -0
  58. package/src/index.ts +2 -0
  59. package/src/litecoin.ts +31 -0
  60. package/src/shapeshift-multichain.test.ts +170 -0
  61. package/src/shapeshift-multichain.ts +871 -0
  62. package/src/thorchain.ts +30 -0
  63. package/src/utxo.ts +201 -0
  64. package/tsconfig.json +10 -0
  65. package/tsconfig.tsbuildinfo +1 -0
  66. package/yarn-error.log +18555 -0
package/dist/index.js ADDED
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./adapter"), exports);
18
+ __exportStar(require("./shapeshift-multichain"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,0DAAwC"}
@@ -0,0 +1,8 @@
1
+ import * as core from "@shapeshiftoss/hdwallet-core";
2
+ import { BitcoinGetPublicKeysResponse, LitecoinGetAddressResponse } from "@shapeshiftoss/metamask-snaps-types";
3
+ export declare function litecoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
4
+ export declare function litecoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
5
+ export declare function litecoinGetAddress(msg: core.BTCGetAddress): Promise<LitecoinGetAddressResponse>;
6
+ export declare function litecoinGetPublicKeys(msg: core.BTCGetAddress): Promise<BitcoinGetPublicKeysResponse>;
7
+ export declare function litecoinSignTx(msg: core.BTCSignTx): Promise<core.BTCSignedTx | null>;
8
+ //# sourceMappingURL=litecoin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"litecoin.d.ts","sourceRoot":"","sources":["../src/litecoin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,8BAA8B,CAAC;AAMrD,OAAO,EAAE,4BAA4B,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AAK/G,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC,IAAI,CAAC,cAAc,CAAC,CAEhG;AAGD,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,cAAc,GAAG,SAAS,CAGjG;AAED,wBAAsB,kBAAkB,CAAC,GAAG,EAAE,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAErG;AACD,wBAAsB,qBAAqB,CAAC,GAAG,EAAE,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAE1G;AAED,wBAAsB,cAAc,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,CAE1F"}
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.litecoinGetAccountPaths = litecoinGetAccountPaths;
13
+ exports.litecoinNextAccountPath = litecoinNextAccountPath;
14
+ exports.litecoinGetAddress = litecoinGetAddress;
15
+ exports.litecoinGetPublicKeys = litecoinGetPublicKeys;
16
+ exports.litecoinSignTx = litecoinSignTx;
17
+ const metamask_snaps_adapter_1 = require("@shapeshiftoss/metamask-snaps-adapter");
18
+ const common_1 = require("./common");
19
+ const utxo_1 = require("./utxo");
20
+ function litecoinGetAccountPaths(msg) {
21
+ return (0, utxo_1.utxoGetAccountPaths)(msg);
22
+ }
23
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
24
+ function litecoinNextAccountPath(msg) {
25
+ // Only support one account for now (like portis).
26
+ return undefined;
27
+ }
28
+ function litecoinGetAddress(msg) {
29
+ return __awaiter(this, void 0, void 0, function* () {
30
+ return yield (0, metamask_snaps_adapter_1.LTCGetAddress)({ snapId: common_1.SNAP_ID, addressParams: msg });
31
+ });
32
+ }
33
+ function litecoinGetPublicKeys(msg) {
34
+ return __awaiter(this, void 0, void 0, function* () {
35
+ return yield (0, metamask_snaps_adapter_1.LTCGetPublicKeys)({ snapId: common_1.SNAP_ID, addressParams: msg });
36
+ });
37
+ }
38
+ function litecoinSignTx(msg) {
39
+ return __awaiter(this, void 0, void 0, function* () {
40
+ return yield (0, metamask_snaps_adapter_1.LTCSignTransaction)({ snapId: common_1.SNAP_ID, transaction: msg });
41
+ });
42
+ }
43
+ //# sourceMappingURL=litecoin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"litecoin.js","sourceRoot":"","sources":["../src/litecoin.ts"],"names":[],"mappings":";;;;;;;;;;;AAWA,0DAEC;AAGD,0DAGC;AAED,gDAEC;AACD,sDAEC;AAED,wCAEC;AA7BD,kFAI+C;AAG/C,qCAAmC;AACnC,iCAA6C;AAE7C,SAAgB,uBAAuB,CAAC,GAA4B;IAClE,OAAO,IAAA,0BAAmB,EAAC,GAAG,CAAC,CAAC;AAClC,CAAC;AAED,6DAA6D;AAC7D,SAAgB,uBAAuB,CAAC,GAAwB;IAC9D,kDAAkD;IAClD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED,SAAsB,kBAAkB,CAAC,GAAuB;;QAC9D,OAAO,MAAM,IAAA,sCAAsB,EAAC,EAAE,MAAM,EAAE,gBAAO,EAAE,aAAa,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/E,CAAC;CAAA;AACD,SAAsB,qBAAqB,CAAC,GAAuB;;QACjE,OAAO,MAAM,IAAA,yCAAyB,EAAC,EAAE,MAAM,EAAE,gBAAO,EAAE,aAAa,EAAE,GAAG,EAAE,CAAC,CAAC;IAClF,CAAC;CAAA;AAED,SAAsB,cAAc,CAAC,GAAmB;;QACtD,OAAO,MAAM,IAAA,2CAA2B,EAAC,EAAE,MAAM,EAAE,gBAAO,EAAE,WAAW,EAAE,GAAG,EAAE,CAAC,CAAC;IAClF,CAAC;CAAA"}
@@ -0,0 +1,203 @@
1
+ import * as core from "@shapeshiftoss/hdwallet-core";
2
+ import { AddEthereumChainParameter } from "@shapeshiftoss/hdwallet-core";
3
+ export declare function isMetaMask(wallet: core.HDWallet): wallet is MetaMaskShapeShiftMultiChainHDWallet;
4
+ export declare class MetaMaskShapeShiftMultiChainHDWalletInfo implements core.HDWalletInfo, core.ETHWalletInfo {
5
+ ethGetChainId?(): Promise<number | null>;
6
+ ethSwitchChain?(params: core.AddEthereumChainParameter): Promise<void>;
7
+ ethAddChain?(params: core.AddEthereumChainParameter): Promise<void>;
8
+ readonly _supportsBTCInfo = true;
9
+ readonly _supportsETHInfo = true;
10
+ readonly _supportsCosmosInfo = true;
11
+ readonly _supportsBinanceInfo = false;
12
+ readonly _supportsRippleInfo = false;
13
+ readonly _supportsEosInfo = false;
14
+ readonly _supportsFioInfo = false;
15
+ readonly _supportsThorchainInfo = true;
16
+ getVendor(): string;
17
+ hasOnDevicePinEntry(): boolean;
18
+ hasOnDevicePassphrase(): boolean;
19
+ hasOnDeviceDisplay(): boolean;
20
+ hasOnDeviceRecovery(): boolean;
21
+ hasNativeShapeShift(srcCoin: core.Coin, dstCoin: core.Coin): boolean;
22
+ supportsBip44Accounts(): boolean;
23
+ supportsOfflineSigning(): boolean;
24
+ supportsBroadcast(): boolean;
25
+ describePath(msg: core.DescribePath): core.PathDescription;
26
+ bitcoinSupportsNetwork(chainId?: number): Promise<boolean>;
27
+ bitcoinSupportsSecureTransfer(): Promise<boolean>;
28
+ bitcoinSupportsNativeShapeShift(): boolean;
29
+ bitcoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
30
+ bitcoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
31
+ bitcoinCashSupportsNetwork(chainId?: number): Promise<boolean>;
32
+ bitcoinCashSupportsSecureTransfer(): Promise<boolean>;
33
+ bitcoinCashSupportsNativeShapeShift(): boolean;
34
+ bitcoinCashGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
35
+ bitcoinCashNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
36
+ cosmosSupportsNetwork(chainId?: number): Promise<boolean>;
37
+ cosmosSupportsSecureTransfer(): Promise<boolean>;
38
+ cosmosSupportsNativeShapeShift(): boolean;
39
+ cosmosGetAccountPaths(msg: core.CosmosGetAccountPaths): Array<core.CosmosAccountPath>;
40
+ cosmosNextAccountPath(msg: core.CosmosAccountPath): core.CosmosAccountPath | undefined;
41
+ dogecoinSupportsNetwork(chainId?: number): Promise<boolean>;
42
+ dogecoinSupportsSecureTransfer(): Promise<boolean>;
43
+ dogecoinSupportsNativeShapeShift(): boolean;
44
+ dogecoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
45
+ dogecoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
46
+ ethSupportsNetwork(chainId: number): Promise<boolean>;
47
+ ethSupportsSecureTransfer(): Promise<boolean>;
48
+ ethSupportsNativeShapeShift(): boolean;
49
+ ethGetAccountPaths(msg: core.ETHGetAccountPath): Array<core.ETHAccountPath>;
50
+ ethNextAccountPath(msg: core.ETHAccountPath): core.ETHAccountPath | undefined;
51
+ ethSupportsEIP1559(): Promise<boolean>;
52
+ litecoinSupportsNetwork(chainId?: number): Promise<boolean>;
53
+ litecoinSupportsSecureTransfer(): Promise<boolean>;
54
+ litecoinSupportsNativeShapeShift(): boolean;
55
+ litecoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
56
+ litecoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
57
+ thorchainSupportsNetwork(chainId?: number): Promise<boolean>;
58
+ thorchainSupportsSecureTransfer(): Promise<boolean>;
59
+ thorchainSupportsNativeShapeShift(): boolean;
60
+ thorchainGetAccountPaths(msg: core.ThorchainGetAccountPaths): Array<core.ThorchainAccountPath>;
61
+ thorchainNextAccountPath(msg: core.ThorchainAccountPath): core.ThorchainAccountPath | undefined;
62
+ }
63
+ export declare class MetaMaskShapeShiftMultiChainHDWallet implements core.HDWallet, core.BTCWallet, core.ETHWallet, core.CosmosWallet, core.ThorchainWallet {
64
+ readonly _supportsETH = true;
65
+ readonly _supportsETHInfo = true;
66
+ readonly _supportsBTCInfo = true;
67
+ readonly _supportsBTC = true;
68
+ readonly _supportsCosmosInfo = true;
69
+ readonly _supportsCosmos = true;
70
+ readonly _supportsEthSwitchChain = true;
71
+ readonly _supportsAvalanche = true;
72
+ readonly _supportsOptimism = true;
73
+ readonly _supportsBSC = true;
74
+ readonly _supportsPolygon = true;
75
+ readonly _supportsGnosis = true;
76
+ readonly _supportsArbitrum = true;
77
+ readonly _supportsArbitrumNova = true;
78
+ readonly _supportsBase = true;
79
+ readonly _supportsOsmosisInfo = true;
80
+ readonly _supportsOsmosis = true;
81
+ readonly _supportsBinanceInfo = false;
82
+ readonly _supportsBinance = false;
83
+ readonly _supportsDebugLink = false;
84
+ readonly _isPortis = false;
85
+ readonly _isMetaMask = true;
86
+ readonly _supportsRippleInfo = false;
87
+ readonly _supportsRipple = false;
88
+ readonly _supportsEosInfo = false;
89
+ readonly _supportsEos = false;
90
+ readonly _supportsFioInfo = false;
91
+ readonly _supportsFio = false;
92
+ readonly _supportsThorchainInfo = true;
93
+ readonly _supportsThorchain = true;
94
+ info: MetaMaskShapeShiftMultiChainHDWalletInfo & core.HDWalletInfo;
95
+ bitcoinAddress?: string | null;
96
+ bitcoinCashAddress?: string | null;
97
+ cosmosAddress?: string | null;
98
+ dogecoinAddress?: string | null;
99
+ ethAddress?: string | null;
100
+ litecoinAddress?: string | null;
101
+ osmosisAddress?: string | null;
102
+ thorchainAddress?: string | null;
103
+ provider: any;
104
+ constructor(provider: unknown);
105
+ transport?: core.Transport | undefined;
106
+ getFeatures(): Promise<Record<string, any>>;
107
+ isLocked(): Promise<boolean>;
108
+ getVendor(): string;
109
+ getModel(): Promise<string>;
110
+ getLabel(): Promise<string>;
111
+ initialize(): Promise<void>;
112
+ hasOnDevicePinEntry(): boolean;
113
+ hasOnDevicePassphrase(): boolean;
114
+ hasOnDeviceDisplay(): boolean;
115
+ hasOnDeviceRecovery(): boolean;
116
+ hasNativeShapeShift(srcCoin: core.Coin, dstCoin: core.Coin): boolean;
117
+ supportsBip44Accounts(): boolean;
118
+ supportsOfflineSigning(): boolean;
119
+ supportsBroadcast(): boolean;
120
+ clearSession(): Promise<void>;
121
+ ping(msg: core.Ping): Promise<core.Pong>;
122
+ sendPin(pin: string): Promise<void>;
123
+ sendPassphrase(passphrase: string): Promise<void>;
124
+ sendCharacter(charater: string): Promise<void>;
125
+ sendWord(word: string): Promise<void>;
126
+ cancel(): Promise<void>;
127
+ wipe(): Promise<void>;
128
+ reset(msg: core.ResetDevice): Promise<void>;
129
+ recover(msg: core.RecoverDevice): Promise<void>;
130
+ loadDevice(msg: core.LoadDevice): Promise<void>;
131
+ describePath(msg: core.DescribePath): core.PathDescription;
132
+ publicKeysCache: Map<string, Array<core.PublicKey | null>>;
133
+ getPublicKeys(msg: Array<core.GetPublicKey>): Promise<Array<core.PublicKey | null>>;
134
+ isInitialized(): Promise<boolean>;
135
+ /** INSERT NEW CODE HERE */
136
+ /** BITCOIN */
137
+ btcSupportsSecureTransfer(): Promise<boolean>;
138
+ btcSupportsNativeShapeShift(): boolean;
139
+ btcGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
140
+ btcNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
141
+ addressCache: Map<string, string>;
142
+ btcGetAddress(msg: core.BTCGetAddress): Promise<string | null>;
143
+ btcSignTx(msg: core.BTCSignTx): Promise<core.BTCSignedTx | null>;
144
+ btcSignMessage(msg: core.BTCSignMessage): Promise<core.BTCSignedMessage | null>;
145
+ btcVerifyMessage(msg: core.BTCVerifyMessage): Promise<boolean | null>;
146
+ btcSupportsScriptType(coin: string, scriptType?: core.BTCInputScriptType | undefined): Promise<boolean>;
147
+ btcSupportsCoin(coin: core.Coin): Promise<boolean>;
148
+ /** BITCOIN CASH */
149
+ bitcoinCashSupportsSecureTransfer(): Promise<boolean>;
150
+ bitcoinCashSupportsNativeShapeShift(): boolean;
151
+ bitcoinCashGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
152
+ bitcoinCashNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
153
+ bitcoinCashGetAddress(msg: core.BTCGetAddress): Promise<string | null>;
154
+ bitcoinCashSignTx(msg: core.BTCSignTx): Promise<core.BTCSignedTx | null>;
155
+ /** COSMOS */
156
+ cosmosSupportsSecureTransfer(): Promise<boolean>;
157
+ cosmosSupportsNativeShapeShift(): boolean;
158
+ cosmosGetAccountPaths(msg: core.CosmosGetAccountPaths): Array<core.CosmosAccountPath>;
159
+ cosmosNextAccountPath(msg: core.CosmosAccountPath): core.CosmosAccountPath | undefined;
160
+ cosmosGetAddress(msg: core.CosmosGetAddress): Promise<string | null>;
161
+ cosmosSignTx(msg: core.CosmosSignTx): Promise<core.CosmosSignedTx | null>;
162
+ /** DOGECOIN */
163
+ dogecoinSupportsSecureTransfer(): Promise<boolean>;
164
+ dogecoinSupportsNativeShapeShift(): boolean;
165
+ dogecoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
166
+ dogecoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
167
+ dogecoinGetAddress(msg: core.BTCGetAddress): Promise<string | null>;
168
+ dogecoinSignTx(msg: core.BTCSignTx): Promise<core.BTCSignedTx | null>;
169
+ /** ETHEREUM */
170
+ disconnect(): Promise<void>;
171
+ ethSupportsNetwork(chainId?: number): Promise<boolean>;
172
+ ethGetChainId(): Promise<number | null>;
173
+ ethAddChain(params: AddEthereumChainParameter): Promise<void>;
174
+ ethSwitchChain(params: AddEthereumChainParameter): Promise<void>;
175
+ ethSupportsSecureTransfer(): Promise<boolean>;
176
+ ethSupportsNativeShapeShift(): boolean;
177
+ ethSupportsEIP1559(): Promise<boolean>;
178
+ ethGetAccountPaths(msg: core.ETHGetAccountPath): Array<core.ETHAccountPath>;
179
+ ethNextAccountPath(msg: core.ETHAccountPath): core.ETHAccountPath | undefined;
180
+ ethGetAddress(msg: core.ETHGetAddress): Promise<string | null>;
181
+ ethSignTx(msg: core.ETHSignTx): Promise<core.ETHSignedTx | null>;
182
+ ethSendTx(msg: core.ETHSignTx): Promise<core.ETHTxHash | null>;
183
+ ethSignMessage(msg: core.ETHSignMessage): Promise<core.ETHSignedMessage | null>;
184
+ ethSignTypedData(msg: core.ETHSignTypedData): Promise<core.ETHSignedTypedData | null>;
185
+ ethVerifyMessage(msg: core.ETHVerifyMessage): Promise<boolean | null>;
186
+ /** LITECOIN */
187
+ litecoinSupportsSecureTransfer(): Promise<boolean>;
188
+ litecoinSupportsNativeShapeShift(): boolean;
189
+ litecoinGetAccountPaths(msg: core.BTCGetAccountPaths): Array<core.BTCAccountPath>;
190
+ litecoinNextAccountPath(msg: core.BTCAccountPath): core.BTCAccountPath | undefined;
191
+ litecoinGetAddress(msg: core.BTCGetAddress): Promise<string | null>;
192
+ litecoinSignTx(msg: core.BTCSignTx): Promise<core.BTCSignedTx | null>;
193
+ /** THORCHAIN */
194
+ thorchainSupportsSecureTransfer(): Promise<boolean>;
195
+ thorchainSupportsNativeShapeShift(): boolean;
196
+ thorchainGetAccountPaths(msg: core.ThorchainGetAccountPaths): Array<core.ThorchainAccountPath>;
197
+ thorchainNextAccountPath(msg: core.ThorchainAccountPath): core.ThorchainAccountPath | undefined;
198
+ thorchainGetAddress(msg: core.ThorchainGetAddress): Promise<string | null>;
199
+ thorchainSignTx(msg: core.ThorchainSignTx): Promise<core.ThorchainSignedTx | null>;
200
+ getDeviceID(): Promise<string>;
201
+ getFirmwareVersion(): Promise<string>;
202
+ }
203
+ //# sourceMappingURL=shapeshift-multichain.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shapeshift-multichain.d.ts","sourceRoot":"","sources":["../src/shapeshift-multichain.ts"],"names":[],"mappings":"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"}