Skip to content

Commit

Permalink
- updated external interfaces for softsigner 505
Browse files Browse the repository at this point in the history
- import path fix for wxtz wrapper
  • Loading branch information
anonymoussprocket committed Dec 8, 2020
1 parent 1df6284 commit f3ae6f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/chain/tezos/contracts/WrappedTezosHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { TezosNodeReader } from '../TezosNodeReader';
import { TezosNodeWriter } from '../TezosNodeWriter';
import { TezosContractUtils } from './TezosContractUtils';
import { TezosConseilClient } from '../../../reporting/tezos/TezosConseilClient'
import { ConseilServerInfo } from 'types/conseil/QueryTypes';
import { ContractMapDetailsItem } from 'types/conseil/ConseilTezosTypes';
import { ConseilServerInfo } from '../../../types/conseil/QueryTypes';
import { ContractMapDetailsItem } from '../../../types/conseil/ConseilTezosTypes';
import { TezosParameterFormat } from '../../../types/tezos/TezosChainTypes';

/** The expected checksum for the Wrapped Tezos contracts. */
Expand Down
6 changes: 3 additions & 3 deletions src/types/ExternalInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export enum SignerCurve {

export interface Signer {
getSignerCurve: () => SignerCurve;
signOperation: (bytes: Buffer) => Promise<Buffer>;
signText: (message: string) => Promise<string>;
signTextHash: (message: string) => Promise<string>;
signOperation: (bytes: Buffer, password?: string) => Promise<Buffer>;
signText: (message: string, password?: string) => Promise<string>;
signTextHash: (message: string, password?: string) => Promise<string>;
}

export interface KeyStore {
Expand Down

0 comments on commit f3ae6f3

Please sign in to comment.