# Test \[Entrypoint for test utilities and constants]

ABIType exports some test utilities and constants to make playing around and testing your code easier via the `'abitype/abis'` entrypoint.

### ABIs

```ts twoslash
import {
  customSolidityErrorsAbi,
  ensAbi,
  ensRegistryWithFallbackAbi,
  erc20Abi,
  nestedTupleArrayAbi,
  nounsAuctionHouseAbi,
  seaportAbi,
  wagmiMintExampleAbi,
  wethAbi,
  writingEditionsFactoryAbi,
  eip165Abi,
} from 'abitype/abis'
```

### Human-Readable ABIs

```ts twoslash
import {
  customSolidityErrorsHumanReadableAbi,
  ensHumanReadableAbi,
  ensRegistryWithFallbackHumanReadableAbi,
  erc20HumanReadableAbi,
  nestedTupleArrayHumanReadableAbi,
  nounsAuctionHouseHumanReadableAbi,
  seaportHumanReadableAbi,
  wagmiMintExampleHumanReadableAbi,
  wethHumanReadableAbi,
  writingEditionsFactoryHumanReadableAbi,
} from 'abitype/abis'
```
