Files
FrenoCorp/node_modules/viem/experimental/erc7739/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

37 lines
978 B
TypeScript

// biome-ignore lint/performance/noBarrelFile: entrypoint
export {
type SignMessageErrorType,
type SignMessageParameters,
type SignMessageReturnType,
signMessage,
} from './actions/signMessage.js'
export {
type SignTypedDataErrorType,
type SignTypedDataParameters,
type SignTypedDataReturnType,
signTypedData,
} from './actions/signTypedData.js'
export {
type Erc7739Actions,
type Erc7739ActionsParameters,
erc7739Actions,
} from './decorators/erc7739.js'
export {
type HashMessageErrorType,
type HashMessageParameters,
type HashMessageReturnType,
hashMessage,
} from './utils/hashMessage.js'
export {
type HashTypedDataErrorType,
type HashTypedDataParameters,
type HashTypedDataReturnType,
hashTypedData,
} from './utils/hashTypedData.js'
export {
type WrapTypedDataSignatureErrorType,
type WrapTypedDataSignatureParameters,
type WrapTypedDataSignatureReturnType,
wrapTypedDataSignature,
} from './utils/wrapTypedDataSignature.js'