UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

18 lines (17 loc) 1.19 kB
import { ApiVersion } from './apiVersion'; import { TransactionType } from './transactionType'; import { TransactionArbitrarySubtype } from './transactionArbitrarySubtype'; import { TransactionAssetSubtype } from './transactionAssetSubtype'; import { TransactionLeasingSubtype } from './transactionLeasingSubtype'; import { TransactionMarketplaceSubtype } from './transactionMarketplaceSubtype'; import { TransactionPaymentSubtype } from './transactionPaymentSubtype'; import { TransactionMiningSubtype } from './transactionMiningSubtype'; import { TransactionAdvancedPaymentSubtype } from './transactionAdvancedPaymentSubtype'; import { TransactionSmartContractSubtype } from './transactionSmartContractSubtype'; declare const DefaultDeadline = 1440; declare const DefaultApiEndpoint = "/api"; declare enum AddressPrefix { MainNet = "S", TestNet = "TS" } export { ApiVersion, AddressPrefix, DefaultDeadline, DefaultApiEndpoint, TransactionType, TransactionPaymentSubtype, TransactionMarketplaceSubtype, TransactionLeasingSubtype, TransactionAssetSubtype, TransactionArbitrarySubtype, TransactionMiningSubtype, TransactionAdvancedPaymentSubtype, TransactionSmartContractSubtype };