@perawallet/connect
Version:
JavaScript SDK for integrating Pera Wallet to web applications.
21 lines (17 loc) • 495 B
text/typescript
type PeraWalletType = "pera-wallet" | "pera-wallet-web";
type PeraWalletPlatformType = "mobile" | "web" | null;
type PeraWalletFlowType = "EMBEDDED" | "NEW_TAB";
// eslint-disable-next-line no-magic-numbers
type AlgorandChainIDs = 416001 | 416002 | 416003 | 4160;
interface PeraWalletDetails {
type: PeraWalletType;
accounts: string[];
selectedAccount: string;
}
export type {
PeraWalletType,
PeraWalletPlatformType,
PeraWalletDetails,
AlgorandChainIDs,
PeraWalletFlowType
};