@dapix/react-native-fio
Version:
The FIO react-native-fio SDK communicates with the FIO Blockchain.
29 lines (23 loc) • 790 B
text/typescript
export class Constants{
static endPoints:any = {
AddPublicAddress:"add_pub_address",
RecordSend:"record_send",
RegisterFioAddress:"register_fio_address",
RegisterFioDomain:"register_fio_domain",
RejectFundsRequest:"reject_funds_request",
RequestNewFunds:"new_funds_request",
TransferTokensKey:"transfer_tokens_pub_key"
}
static feeNoAddressOperation:Array<string> = [
Constants.endPoints.RegisterFioDomain,
Constants.endPoints.RegisterFioAddress,
Constants.endPoints.TransferTokensKey,
'transfer_tokens_by_pub_key',
]
static rawAbiAccountName:Array<string> = [
"fio.system",
"fio.reqobt",
"fio.token"
]
static multiplier = 1000000000;
}