@ledgerhq/coin-filecoin
Version:
Ledger Filecoin Coin integration
25 lines (21 loc) • 898 B
text/typescript
import { TEST_ADDRESSES } from "../../test/fixtures";
import { estimateFees } from "./estimateFees";
describe("estimateFees (integration)", () => {
it("returns a FeeEstimation with value > 0 and gas parameters for native intent", async () => {
const intent = {
intentType: "transaction" as const,
type: "send" as const,
sender: TEST_ADDRESSES.F1_ADDRESS,
recipient: TEST_ADDRESSES.RECIPIENT_F1,
amount: 1_000_000_000_000_000_000n,
asset: { type: "native" as const },
useAllAmount: false,
};
const result = await estimateFees(intent);
expect(typeof result.value).toBe("bigint");
expect(result.value).toBeGreaterThan(0n);
expect(typeof result.parameters!["gasFeeCap"]).toBe("string");
expect(typeof result.parameters!["gasLimit"]).toBe("string");
expect(typeof result.parameters!["gasPremium"]).toBe("string");
});
});