import type { EthAddress, LocationId } from './identifier'; import type { WorldCoords, WorldLocation } from './world'; /** * Represents a planet location that has been broadcast on-chain */ export declare type ClaimedCoords = WorldCoords & { hash: LocationId; claimer: EthAddress; score: number; }; export declare type ClaimedLocation = WorldLocation & { claimer: EthAddress; };