UNPKG

@arkane-network/arkane-connect

Version:

Arkane Connect - api library for 3th parties

12 lines (11 loc) 309 B
import { SignatureRequestType } from '../SignatureRequestType'; import { Network } from '../Network'; export interface GenericSignatureRequest { walletId: string; type: SignatureRequestType; data?: string; hash?: boolean; prefix?: boolean; network?: Network; [key: string]: any; }