Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nickadamson committed Oct 18, 2023
1 parent 56d9ef6 commit 942c182
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/entities/contracts/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './base-contract';
export * from './clearinghouse';
export * from './erc20';
export * from './seaport';
Expand Down
2 changes: 1 addition & 1 deletion src/entities/options/exercisable-option.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Trader } from '../trader/base-trader';
import type { SimulatedTxRequest } from '../../types';
import type { ClearinghouseContract } from '../contracts';
import { OptionType } from './option-type';
import { ClearinghouseContract } from '../contracts';

export class Option extends OptionType {
public async exerciseOption({
Expand Down
2 changes: 1 addition & 1 deletion src/entities/options/redeemable-claim.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Trader } from '../trader/base-trader';
import type { SimulatedTxRequest } from '../../types';
import type { ClearinghouseContract } from '../contracts';
import { OptionType } from './option-type';
import { ClearinghouseContract } from '../contracts';

export class Claim extends OptionType {
public async redeemClaim(trader: Trader) {
Expand Down
1 change: 0 additions & 1 deletion src/entities/trader/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './base-trader';
export * from './maker';
export * from './taker';
export * from './web-taker';

0 comments on commit 942c182

Please sign in to comment.