Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Oct 8, 2024
1 parent 1f1ea66 commit 7c65014
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/internal/ContractAddress/from.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from 'vitest'
import { AbiParameters, ContractAddress, Hash, Hex } from 'ox'
import { expect, test } from 'vitest'

test('gets contract address (CREATE)', () => {
expect(
Expand Down
2 changes: 1 addition & 1 deletion src/internal/ContractAddress/from.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Address } from '../Address/types.js'
import type { GlobalErrorType } from '../Errors/error.js'
import type { OneOf } from '../types.js'
import { ContractAddress_fromCreate2 } from './fromCreate2.js'
import { ContractAddress_fromCreate } from './fromCreate.js'
import { ContractAddress_fromCreate2 } from './fromCreate2.js'

/**
* Computes Contract Address generated by the [CREATE](https://ethereum.stackexchange.com/questions/68943/create-opcode-what-does-it-really-do/68945#68945) or [CREATE2](https://eips.ethereum.org/EIPS/eip-1014) opcode.
Expand Down
2 changes: 1 addition & 1 deletion src/internal/ContractAddress/fromCreate.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from 'vitest'
import { ContractAddress } from 'ox'
import { expect, test } from 'vitest'

test('gets contract address (CREATE)', () => {
expect(
Expand Down
2 changes: 1 addition & 1 deletion src/internal/ContractAddress/fromCreate2.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from 'vitest'
import { AbiParameters, ContractAddress, Hash, Hex } from 'ox'
import { expect, test } from 'vitest'

test('default', () => {
expect(
Expand Down

0 comments on commit 7c65014

Please sign in to comment.