UNPKG

@cowprotocol/cow-sdk

Version:

## 📚 [Docs website](https://docs.cow.fi/)

6 lines (5 loc) • 241 B
import { Signer } from 'ethers'; import type { ExternalProvider } from '@ethersproject/providers'; export type PrivateKey = string; export type AccountAddress = `0x${string}`; export type SignerLike = Signer | ExternalProvider | PrivateKey;