UNPKG

@shapeshiftoss/fiosdk

Version:

The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryp

35 lines (29 loc) 980 B
export class Constants { public static endPoints: any = { AddPublicAddress: 'add_pub_address', SetFioDomainVisibility: 'set_fio_domain_public', RecordObtData: 'record_obt_data', RegisterFioAddress: 'register_fio_address', RegisterFioDomain: 'register_fio_domain', RejectFundsRequest: 'reject_funds_request', RequestNewFunds: 'new_funds_request', TransferTokensKey: 'transfer_tokens_pub_key', TransferTokensFioAddress: 'transfer_tokens_fio_address', } public static feeNoAddressOperation: string[] = [ Constants.endPoints.RegisterFioDomain, Constants.endPoints.RegisterFioAddress, Constants.endPoints.TransferTokensKey, Constants.endPoints.TransferTokensFioAddress, ] public static rawAbiAccountName: string[] = [ 'fio.address', 'fio.reqobt', 'fio.token', 'eosio', 'fio.fee', 'eosio.msig' ] public static multiplier = 1000000000 public static defaultAccount: string = 'fio.address' }