Web app for the Hyperlane Explorer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
declare type Address = string;
|
|
declare type HexString = string;
|
|
declare type ChainId = number | string;
|
|
declare type DomainId = number;
|
|
declare type AddressTo<T> = Record<Address, T>;
|
|
declare type Fn = () => void;
|
|
|