locklift
Version:
Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.
11 lines (10 loc) • 509 B
TypeScript
import { ViewTraceTree } from "../types";
import BigNumber from "bignumber.js";
import { ContractWithArtifacts } from "../../../types";
export declare const extractFeeAndSentValueFromMessage: (traceTree: ViewTraceTree) => {
totalFees: BigNumber;
sentValue: BigNumber;
value: BigNumber;
balanceChange: BigNumber;
};
export declare const mapParams: (obj: Record<any, any> | Array<any> | undefined, contracts: Array<ContractWithArtifacts | undefined>, isFullPrint?: boolean) => Record<any, any>;