- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
/** @entrypointCategory ERCs */
|
|
// biome-ignore lint/complexity/noUselessEmptyExport: tsdoc
|
|
export type {}
|
|
|
|
/**
|
|
* Utility functions and types for working with [ERC-4337 EntryPoints](https://eips.ethereum.org/EIPS/eip-4337).
|
|
*
|
|
* @category ERC-4337
|
|
*/
|
|
export * as EntryPoint from './EntryPoint.js'
|
|
|
|
/**
|
|
* Utility types for working with ERC-4337 JSON-RPC schemas.
|
|
*
|
|
* @category ERC-4337
|
|
*/
|
|
export * as RpcSchema from './RpcSchema.js'
|
|
|
|
/**
|
|
* Utility functions and types for working with [ERC-4337 User Operations](https://eips.ethereum.org/EIPS/eip-4337).
|
|
*
|
|
* @category ERC-4337
|
|
*/
|
|
export * as UserOperation from './UserOperation.js'
|
|
|
|
/**
|
|
* Utility functions and types for working with [ERC-4337 User Operation Gas](https://eips.ethereum.org/EIPS/eip-4337).
|
|
*
|
|
* @category ERC-4337
|
|
*/
|
|
export * as UserOperationGas from './UserOperationGas.js'
|
|
|
|
/**
|
|
* Utility functions and types for working with [ERC-4337 User Operation Receipts](https://eips.ethereum.org/EIPS/eip-4337).
|
|
*
|
|
* @category ERC-4337
|
|
*/
|
|
export * as UserOperationReceipt from './UserOperationReceipt.js'
|