@dappykit/sdk
Version:
Web3 SDK for DApps
39 lines (38 loc) • 798 B
TypeScript
export interface INetworkAccountInfo {
isDeployed: boolean;
verifiedBy: ('google' | 'telegram' | 'farcaster')[];
}
export interface ISmartAccountInfoResponse {
smartAccountAddress: string;
optimismMainnet: INetworkAccountInfo;
}
/**
* Verify response interface
*/
export interface IVerifyResponse {
/**
* Status
*/
status: string;
/**
* Data
*/
data: {
/**
* Recovered EOA address
*/
recoveredAddress: string;
/**
* Verified smart account address
*/
verifiedSmartAccountAddress: string;
/**
* Deployment task ID
*/
deploymentTaskId: number;
/**
* Verification task ID
*/
verificationTaskId: number;
};
}