UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

10 lines 596 B
import { IDevelopmentService } from "@interfaces/business"; import { IAccountsRepository } from "@interfaces/data"; import { BigNumber, EthereumAddress, ResultAsync } from "@interfaces/objects"; import { BlockchainUnavailableError } from "@interfaces/objects/errors"; export declare class DevelopmentService implements IDevelopmentService { protected accountRepo: IAccountsRepository; constructor(accountRepo: IAccountsRepository); mintTestToken(amount: BigNumber, to: EthereumAddress): ResultAsync<void, BlockchainUnavailableError>; } //# sourceMappingURL=DevelopmentService.d.ts.map