import { NetworkType } from './NetworkType';

export type AddressJson = {
  network: NetworkType;
  address: string;
};
