Error toast in suggest button!

This commit is contained in:
muzam1l
2022-06-01 15:51:08 +05:30
parent 6f636645f7
commit b2dc49754f
3 changed files with 24 additions and 14 deletions

View File

@@ -15,6 +15,7 @@ import Flex from "../Flex";
import { TxJson } from "./json";
import { TxUI } from "./ui";
import { default as _estimateFee } from "../../utils/estimateFee";
import toast from 'react-hot-toast';
export interface TransactionProps {
header: string;
@@ -147,18 +148,23 @@ const Transaction: FC<TransactionProps> = ({
);
const estimateFee = useCallback(
async (st?: TransactionState) => {
async (st?: TransactionState, opts?: { silent?: boolean }) => {
const state = st || txState;
const ptx = prepareOptions(state);
const account = accounts.find(
acc => acc.address === state.selectedAccount?.value
);
if (!account) return;
if (!account) {
if (!opts?.silent) {
toast.error("Please select account from the list.")
}
return
};
ptx.Account = account.address;
ptx.Sequence = account.sequence;
const res = await _estimateFee(ptx, account, { silent: true });
const res = await _estimateFee(ptx, account, opts);
const fee = res?.base_fee;
setState({ estimatedFee: fee });
return fee;

View File

@@ -21,7 +21,7 @@ interface UIProps {
pTx?: Partial<TransactionState> | undefined
) => TransactionState | undefined;
state: TransactionState;
estimateFee?: (state?: TransactionState) => Promise<string | undefined>;
estimateFee?: (...arg: any) => Promise<string | undefined>;
}
export const TxUI: FC<UIProps> = ({
@@ -85,10 +85,10 @@ export const TxUI: FC<UIProps> = ({
);
const handleEstimateFee = useCallback(
async (state?: TransactionState) => {
async (state?: TransactionState, silent?: boolean) => {
setFeeLoading(true);
const fee = await estimateFee?.(state);
const fee = await estimateFee?.(state, { silent });
if (fee) handleSetField("Fee", fee, state?.txFields);
setFeeLoading(false);
@@ -101,7 +101,7 @@ export const TxUI: FC<UIProps> = ({
const newState = resetOptions(tt.value);
handleEstimateFee(newState);
handleEstimateFee(newState, true);
};
const specialFields = ["TransactionType", "Account", "Destination"];