Files
FrenoCorp/node_modules/viem/experimental/erc7821/index.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- 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>
2026-04-25 00:08:01 -04:00

49 lines
1.4 KiB
TypeScript

// biome-ignore lint/performance/noBarrelFile: entrypoint
export {
type ExecuteErrorType,
type ExecuteParameters,
type ExecuteReturnType,
execute,
} from './actions/execute.js'
export {
type ExecuteBatchesErrorType,
type ExecuteBatchesParameters,
type ExecuteBatchesReturnType,
executeBatches,
} from './actions/executeBatches.js'
export {
type SupportsExecutionModeErrorType,
type SupportsExecutionModeParameters,
type SupportsExecutionModeReturnType,
supportsExecutionMode,
} from './actions/supportsExecutionMode.js'
export { type Erc7821Actions, erc7821Actions } from './decorators/erc7821.js'
export {
ExecuteUnsupportedError,
type ExecuteUnsupportedErrorType,
FunctionSelectorNotRecognizedError,
type FunctionSelectorNotRecognizedErrorType,
} from './errors.js'
export {
type EncodeCallsErrorType,
encodeCalls,
} from './utils/encodeCalls.js'
export {
type EncodeExecuteBatchesDataErrorType,
type EncodeExecuteBatchesDataParameters,
type EncodeExecuteBatchesDataReturnType,
encodeExecuteBatchesData,
} from './utils/encodeExecuteBatchesData.js'
export {
type EncodeExecuteDataErrorType,
type EncodeExecuteDataParameters,
type EncodeExecuteDataReturnType,
encodeExecuteData,
} from './utils/encodeExecuteData.js'
export {
type GetExecuteErrorParameters,
type GetExecuteErrorReturnType,
getExecuteError,
} from './utils/getExecuteError.js'