Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/interfaces/error.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ export enum IErrorNotary {
InternalServerError = 'Internal Server Error',
NotaryNotAuthorized = 'Notary not authorized for operation',
AddressConstructionFailed = 'Address construction from public keys failed',
TransactionOutputsHaveNoZeno = 'Transaction outputs do not contain Zeno tokens',
TransactionOutputsHaveNoABC = 'Transaction outputs do not contain ABC tokens',
InputsDoNotBelongToPk = 'Previous inputs do not belong to the provided public keys',
InvalidSignatures = 'Invalid signatures provided',
InvalidBurnTransaction = 'Transaction outputs to burn address do not contain Zeno tokens',
TransactionOutputsEmpty = 'Transaction outputs contain no Zeno tokens assigned to provided burn address',
InvalidBurnTransaction = 'Transaction outputs to burn address do not contain ABC tokens',
TransactionOutputsEmpty = 'Transaction outputs contain no ABC tokens assigned to provided burn address',
KeypairUndefined = 'Key-pair undefined',
}

Expand Down
2 changes: 1 addition & 1 deletion src/mgmt/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const ADDRESS_VERSION_OLD = 1; /* Old (depreciated) address structure */
export const ADDRESS_VERSION = null; /* Always use `null` for latest address version */
export const TEMP_ADDRESS_VERSION = 99999; /* Depreciate after temporary addresses have retired */
export const RECEIPT_DEFAULT = 1000;
export const ZENO_FRACTION = 25200;
export const ABC_FRACTION = 25200;
export const DEFAULT_DRS_TX_HASH = 'default_drs_tx_hash';
export const DEFAULT_HEADERS = {
headers: {
Expand Down