UNPKG

@f5i23q999d/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

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;