Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Dec 12, 2024
1 parent a2fae3a commit cacbacf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
12 changes: 2 additions & 10 deletions packages/abi/src/coder/abi-coder.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
import type { Abi } from '../parser';
import type { AbiSpecification } from '../parser/abi-parser';
import { AbiParser } from '../parser/abi-parser';

export class AbiCoder {
private abi: Abi;
constructor(parsableAbi: AbiSpecification) {
this.abi = AbiParser.parse(parsableAbi);
}
}
// Placeholder
export class AbiCoder {}
11 changes: 1 addition & 10 deletions packages/abi/src/gen/abi-gen.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
import type { Abi } from '../parser';
import type { AbiSpecification } from '../parser/abi-parser';
import { AbiParser } from '../parser/abi-parser';

export class AbiGen {
private abi: Abi;
constructor(parsableAbi: AbiSpecification) {
this.abi = AbiParser.parse(parsableAbi);
}
}
export class AbiGen {}

0 comments on commit cacbacf

Please sign in to comment.