UNPKG

shogun-core

Version:

SHOGUN CORE - Core library for Shogun Ecosystem

16 lines (15 loc) 756 B
// Base plugin interface and types export { BasePlugin } from './base.js'; // WebAuthn plugin exports export { Webauthn } from './webauthn/webauthn.js'; export { WebauthnPlugin } from './webauthn/webauthnPlugin.js'; // Ethereum plugin exports export { Web3Connector } from './web3/web3Connector.js'; export { Web3ConnectorPlugin } from './web3/web3ConnectorPlugin.js'; // Bitcoin plugin exports export { NostrConnector } from './nostr/nostrConnector.js'; export { NostrConnectorPlugin } from './nostr/nostrConnectorPlugin.js'; // ZK-Proof plugin exports export { ZkProofConnector } from './zkproof/zkProofConnector.js'; export { ZkProofPlugin } from './zkproof/zkProofPlugin.js'; export { ZkCredentials, CredentialType } from './zkproof/zkCredentials.js';