Skip to content

Commit

Permalink
add index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrvk committed Jun 27, 2024
1 parent dfc0033 commit acb90ad
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/cross-chain-order/immutables/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {Immutables} from './immutables'
6 changes: 6 additions & 0 deletions src/cross-chain-order/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export {CrossChainOrder} from './cross-chain-order'
export {EscrowExtension} from './escrow-extension'
export {HashLock} from './hash-lock'
export {EscrowParams, Details, Extra, CrossChainOrderInfo} from './types'
export * from './immutables'
export * from './time-locks'
3 changes: 3 additions & 0 deletions src/cross-chain-order/time-locks/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export {TimeLocks} from './time-locks'
export {SrcTimeLocks} from './src-time-locks'
export {DstTimeLocks} from './dst-time-locks'
2 changes: 1 addition & 1 deletion src/cross-chain-order/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
IntegratorFee
} from '@1inch/fusion-sdk'
import {HashLock} from './hash-lock'
import {TimeLocks} from './time-locks/time-locks'
import {TimeLocks} from './time-locks'
import {SupportedChain} from '../chains'

export type CrossChainOrderInfo = {
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './cross-chain-order'
export {SupportedChains, SupportedChain} from './chains'

0 comments on commit acb90ad

Please sign in to comment.