|
1 | | -import { |
2 | | - AuditDecryptedKeyParams, |
3 | | - BaseCoin, |
4 | | - BitGoBase, |
5 | | - KeyPair, |
6 | | - ParsedTransaction, |
7 | | - ParseTransactionOptions, |
8 | | - SignedTransaction, |
9 | | - SignTransactionOptions, |
10 | | - VerifyAddressOptions, |
11 | | - VerifyTransactionOptions, |
12 | | -} from '@bitgo/sdk-core'; |
| 1 | +import { AuditDecryptedKeyParams, BaseCoin, BitGoBase } from '@bitgo/sdk-core'; |
13 | 2 | import { BaseCoin as StaticsBaseCoin } from '@bitgo/statics'; |
14 | 3 | import { SubstrateCoin } from '@bitgo/abstract-substrate'; |
15 | 4 | import { BatchStakingBuilder } from './lib/batchStakingBuilder'; |
@@ -46,34 +35,6 @@ export class Polyx extends SubstrateCoin { |
46 | 35 | return 'Polymesh'; |
47 | 36 | } |
48 | 37 |
|
49 | | - verifyTransaction(params: VerifyTransactionOptions): Promise<boolean> { |
50 | | - throw new Error('Method not implemented.'); |
51 | | - } |
52 | | - |
53 | | - isWalletAddress(params: VerifyAddressOptions): Promise<boolean> { |
54 | | - throw new Error('Method not implemented.'); |
55 | | - } |
56 | | - |
57 | | - parseTransaction(params: ParseTransactionOptions): Promise<ParsedTransaction> { |
58 | | - throw new Error('Method not implemented.'); |
59 | | - } |
60 | | - |
61 | | - generateKeyPair(seed?: Buffer): KeyPair { |
62 | | - throw new Error('Method not implemented.'); |
63 | | - } |
64 | | - |
65 | | - isValidPub(pub: string): boolean { |
66 | | - throw new Error('Method not implemented.'); |
67 | | - } |
68 | | - |
69 | | - isValidAddress(address: string): boolean { |
70 | | - throw new Error('Method not implemented.'); |
71 | | - } |
72 | | - |
73 | | - signTransaction(params: SignTransactionOptions): Promise<SignedTransaction> { |
74 | | - throw new Error('Method not implemented.'); |
75 | | - } |
76 | | - |
77 | 38 | /** @inheritDoc */ |
78 | 39 | auditDecryptedKey({ publicKey, prv, multiSigType }: AuditDecryptedKeyParams) { |
79 | 40 | super.auditDecryptedKey({ publicKey, prv, multiSigType }); |
|
0 commit comments