UNPKG

@test-org122/hypernet-core

Version:

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

7 lines (5 loc) 270 B
import { BigNumber, EthereumAddress, ResultAsync } from "@interfaces/objects"; import { LogicalError } from "@interfaces/objects/errors"; export interface IDevelopmentService { mintTestToken(amount: BigNumber, to: EthereumAddress): ResultAsync<void, LogicalError>; }