UNPKG

@vechain/sdk-network

Version:

This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain

12 lines (8 loc) 268 B
// Synchronous Polling import { SyncPoll } from './sync'; // Asynchronous Event Polling import { createEventPoll, type EventPoll } from './event'; // Types export type * from './types.d'; const Poll = { SyncPoll, createEventPoll }; export { Poll, type EventPoll };