forked from cerc-io/laconic-wallet
* Connect with dapp using WalletConnect * Pair dapp with wallet * Sign message taken from dapp and return the signature * Add todos * Move wallet connect functions to seperate screen * Change ui * Change ui for wc modals * Add styles * Remove border radius at the bottom * Make review changes * Add dependancy to useEffect * Move pairing modal methods --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com>
107 lines
2.3 KiB
TypeScript
107 lines
2.3 KiB
TypeScript
import { SignClientTypes } from '@walletconnect/types';
|
|
|
|
export type StackParamsList = {
|
|
Laconic: undefined;
|
|
SignMessage: { selectedNetwork: string; accountInfo: Account } | undefined;
|
|
SignRequest:
|
|
| { network: string; address: string; message: string }
|
|
| undefined;
|
|
InvalidPath: undefined;
|
|
QRScanner: undefined;
|
|
WalletConnect: undefined;
|
|
};
|
|
|
|
export type Account = {
|
|
counterId: number;
|
|
pubKey: string;
|
|
address: string;
|
|
hdPath: string;
|
|
};
|
|
|
|
export type WalletDetails = {
|
|
mnemonic: string;
|
|
ethAccounts: Account | undefined;
|
|
cosmosAccounts: Account | undefined;
|
|
};
|
|
|
|
export type AccountsProps = {
|
|
network: string;
|
|
accounts: {
|
|
ethAccounts: Account[];
|
|
cosmosAccounts: Account[];
|
|
};
|
|
currentIndex: number;
|
|
updateIndex: (index: number) => void;
|
|
updateAccounts: (account: Account) => void;
|
|
};
|
|
|
|
export type NetworkDropdownProps = {
|
|
selectedNetwork: string;
|
|
updateNetwork: (network: string) => void;
|
|
};
|
|
|
|
export type AccountsState = {
|
|
ethAccounts: Account[];
|
|
cosmosAccounts: Account[];
|
|
};
|
|
|
|
export type SignMessageParams = {
|
|
message: string;
|
|
network: string;
|
|
accountId: number;
|
|
};
|
|
|
|
export type CreateWalletProps = {
|
|
isWalletCreating: boolean;
|
|
createWalletHandler: () => Promise<void>;
|
|
};
|
|
|
|
export type ResetDialogProps = {
|
|
visible: boolean;
|
|
hideDialog: () => void;
|
|
onConfirm: () => void;
|
|
};
|
|
|
|
export type HDPathDialogProps = {
|
|
pathCode: string;
|
|
visible: boolean;
|
|
hideDialog: () => void;
|
|
updateIndex: (index: number) => void;
|
|
updateAccounts: (account: Account) => void;
|
|
};
|
|
|
|
export type CustomDialogProps = {
|
|
visible: boolean;
|
|
hideDialog: () => void;
|
|
contentText: string;
|
|
titleText?: string;
|
|
};
|
|
|
|
export type GridViewProps = {
|
|
words: string[];
|
|
};
|
|
|
|
export type PathState = {
|
|
firstNumber: string;
|
|
secondNumber: string;
|
|
thirdNumber: string;
|
|
};
|
|
|
|
export interface PairingModalProps {
|
|
visible: boolean;
|
|
setModalVisible: (arg1: boolean) => void;
|
|
currentProposal:
|
|
| SignClientTypes.EventArguments['session_proposal']
|
|
| undefined;
|
|
setCurrentProposal: (
|
|
arg1: SignClientTypes.EventArguments['session_proposal'] | undefined,
|
|
) => void;
|
|
}
|
|
|
|
export interface SignModalProps {
|
|
visible: boolean;
|
|
setModalVisible: (arg1: boolean) => void;
|
|
requestSession: any;
|
|
requestEvent: SignClientTypes.EventArguments['session_request'] | undefined;
|
|
}
|