UNPKG

@fioprotocol/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

45 lines (34 loc) 1.42 kB
import {EndPoint, FioFeeResponse} from '../../entities' import {feeNoAddressOperation} from '../../utils/constants' import {validationRules} from '../../utils/validation' import {RequestConfig} from '../Transactions' import {Query} from './Query' export type FioFeeQueryProps = { endPoint: string fioAddress?: string, } export type FioFeeQueryData = { end_point: string fio_address?: string, } export class GetFee extends Query<FioFeeQueryData, FioFeeResponse> { public ENDPOINT = `chain/${EndPoint.getFee}` as const public props: ReturnType<GetFee['getResolvedProps']> constructor(config: RequestConfig, props: FioFeeQueryProps) { super(config) this.props = this.getResolvedProps(props) if (feeNoAddressOperation.findIndex((element) => element === this.props.endPoint) > -1 && this.props.fioAddress.length > 0) { throw new Error(`End point ${this.props.endPoint} should not have any fio address, when requesting fee`) } if (props.fioAddress) { this.validationData = {fioAddress: this.props.fioAddress} this.validationRules = validationRules.getFee } } public getData = () => ({end_point: this.props.endPoint, fio_address: this.props.fioAddress}) public getResolvedProps = (props: FioFeeQueryProps) => ({ ...props, fioAddress: props.fioAddress ?? '', }) }