import { Identifier } from '@dashevo/wasm-dpp'; import { Platform } from '../../Platform'; declare type ContractIdentifier = string | Identifier; /** * Get contracts from the platform * * @param {ContractIdentifier} identifier - identifier of the contract to fetch * @param {bigint} startAtMs * @param {number} limit * @param {number} offset * @returns contracts */ export declare function history(this: Platform, identifier: ContractIdentifier, startAtMs: bigint, limit: number, offset: number): Promise; /** * Fetch data contract history without authenticating it against Platform state. * * The selected DAPI endpoint controls this result. Prefer `history` with an * authenticated `platformProofVerifier` for security-sensitive uses. */ export declare function historyUnproved(this: Platform, identifier: ContractIdentifier, startAtMs: bigint, limit: number, offset: number): Promise; export default history;