-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.ts
More file actions
24 lines (21 loc) · 1.04 KB
/
index.ts
File metadata and controls
24 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// index.ts
export { createEthersClient as createClient } from './client';
export * from './client';
export * from './sdk';
// Adapter-specific resources/utilities
export * from './resources/utils';
export { createDepositsResource } from './resources/deposits';
export type { DepositsResource } from './resources/deposits';
export { getL2TransactionHashFromLogs } from './resources/deposits/services/verification';
export { createWithdrawalsResource } from './resources/withdrawals';
export { createFinalizationServices } from './resources/withdrawals';
export type { WithdrawalsResource, FinalizationServices } from './resources/withdrawals';
export { createTokensResource } from './resources/tokens';
export { createInteropResource } from './resources/interop';
export { createInteropFinalizationServices } from './resources/interop';
export type { InteropResource, InteropFinalizationServices } from './resources/interop';
// Errors adapted for ethers
export * from './errors/error-ops';
export * from './errors/revert';
// Types
export type * from './typechain';