From 67405022f5dd4c16183776a50c8408febb0e30be Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 15 May 2024 12:52:57 +0300 Subject: [PATCH] update tests --- .../components/__tests__/BlocksCard.spec.js | 16 +- .../__tests__/TransactionsCard.spec.js | 18 +- .../__snapshots__/BlocksCard.spec.js.snap | 5218 ++++++++++++- .../TransactionsCard.spec.js.snap | 6526 ++++++++++++++++- 4 files changed, 11367 insertions(+), 411 deletions(-) diff --git a/explorer/src/lib/components/__tests__/BlocksCard.spec.js b/explorer/src/lib/components/__tests__/BlocksCard.spec.js index 87a9b7ab4e..7ec47e61d1 100644 --- a/explorer/src/lib/components/__tests__/BlocksCard.spec.js +++ b/explorer/src/lib/components/__tests__/BlocksCard.spec.js @@ -3,7 +3,7 @@ import { cleanup, fireEvent, render } from "@testing-library/svelte"; import { apiBlocks } from "$lib/mock-data"; import { transformBlock } from "$lib/chain-info"; import { BlocksCard } from ".."; -import { mapWith, slice } from "lamb"; +import { mapWith } from "lamb"; global.ResizeObserver = vi.fn().mockImplementation(() => ({ disconnect: vi.fn(), @@ -12,13 +12,13 @@ global.ResizeObserver = vi.fn().mockImplementation(() => ({ })); const transformBlocks = mapWith(transformBlock); -const data = slice(transformBlocks(apiBlocks.data.blocks), 0, 10); +const data = transformBlocks(apiBlocks.data.blocks); describe("Blocks Card", () => { vi.useFakeTimers(); vi.setSystemTime(new Date(2024, 4, 20)); const baseProps = { - blocks: data, + blocks: null, error: null, loading: false, }; @@ -53,11 +53,12 @@ describe("Blocks Card", () => { }); it("should disable the `Show More` button if there is no more data to display", async () => { - const loading = true; + const loading = false; + const blocks = data; const { container, getByRole } = render(BlocksCard, { ...baseOptions, - props: { ...baseProps, loading }, + props: { ...baseProps, blocks, loading }, }); const button = getByRole("button"); @@ -66,9 +67,10 @@ describe("Blocks Card", () => { const clicks = Math.ceil(data.length / showMoreIncrement) - 1; - Array.from({ length: clicks }).forEach(async () => { + //eslint-disable-next-line + for (const _ of Array.from({ length: clicks })) { await fireEvent.click(button); - }); + } expect(button).toBeDisabled(); diff --git a/explorer/src/lib/components/__tests__/TransactionsCard.spec.js b/explorer/src/lib/components/__tests__/TransactionsCard.spec.js index c9c0da4bcc..aeab7397c2 100644 --- a/explorer/src/lib/components/__tests__/TransactionsCard.spec.js +++ b/explorer/src/lib/components/__tests__/TransactionsCard.spec.js @@ -3,7 +3,7 @@ import { cleanup, fireEvent, render } from "@testing-library/svelte"; import { apiTransactions } from "$lib/mock-data"; import { transformTransaction } from "$lib/chain-info"; import { TransactionsCard } from ".."; -import { mapWith, slice } from "lamb"; +import { mapWith } from "lamb"; global.ResizeObserver = vi.fn().mockImplementation(() => ({ disconnect: vi.fn(), @@ -12,7 +12,7 @@ global.ResizeObserver = vi.fn().mockImplementation(() => ({ })); const transformTransactions = mapWith(transformTransaction); -const data = slice(transformTransactions(apiTransactions.data), 0, 10); +const data = transformTransactions(apiTransactions.data); describe("Transactions Card", () => { vi.useFakeTimers(); @@ -20,7 +20,7 @@ describe("Transactions Card", () => { const baseProps = { error: null, loading: false, - txs: data, + txs: null, }; const baseOptions = { props: baseProps, @@ -39,7 +39,7 @@ describe("Transactions Card", () => { expect(container.firstChild).toMatchSnapshot(); }); - it("should disable the `Show More` button is the card is in the loading state", () => { + it("should disable the `Show More` button if the card is in the loading state", async () => { const loading = true; const { container, getByRole } = render(TransactionsCard, { @@ -53,11 +53,12 @@ describe("Transactions Card", () => { }); it("should disable the `Show More` button if there is no more data to display", async () => { - const loading = true; + const loading = false; + const txs = data; const { container, getByRole } = render(TransactionsCard, { ...baseOptions, - props: { ...baseProps, loading }, + props: { ...baseProps, loading, txs }, }); const button = getByRole("button"); @@ -66,9 +67,10 @@ describe("Transactions Card", () => { const clicks = Math.ceil(data.length / showMoreIncrement) - 1; - Array.from({ length: clicks }).forEach(async () => { + //eslint-disable-next-line + for (const _ of Array.from({ length: clicks })) { await fireEvent.click(button); - }); + } expect(button).toBeDisabled(); diff --git a/explorer/src/lib/components/__tests__/__snapshots__/BlocksCard.spec.js.snap b/explorer/src/lib/components/__tests__/__snapshots__/BlocksCard.spec.js.snap index f946329c55..c53f82ec56 100644 --- a/explorer/src/lib/components/__tests__/__snapshots__/BlocksCard.spec.js.snap +++ b/explorer/src/lib/components/__tests__/__snapshots__/BlocksCard.spec.js.snap @@ -790,97 +790,4904 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo - - - - - - - - - - -`; - -exports[`Blocks Card > should disable the \`Show More\` button is the card is in the loading state 1`] = ` -
-
-

- Blocks -

- - - -
- -
- - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + 0 + - + + 16 Dusk + + + + - - - - should disable the \`Show More\` button is the card is in > - 487,491 + 487,412 @@ -961,9 +5768,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,490 + 487,411 @@ -1032,9 +5839,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,489 + 487,410 @@ -1103,9 +5910,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,488 + 487,409 @@ -1174,9 +5981,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,487 + 487,408 @@ -1245,9 +6052,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,486 + 487,407 @@ -1316,9 +6123,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,485 + 487,406 @@ -1387,9 +6194,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,484 + 487,405 @@ -1458,9 +6265,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,483 + 487,404 @@ -1529,9 +6336,9 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in > - 487,482 + 487,403 @@ -1592,97 +6399,76 @@ exports[`Blocks Card > should disable the \`Show More\` button is the card is in - - -
+ + 487,481 + + + + + + last month + + + + + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,480 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,479 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,478 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,477 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,476 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,475 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,474 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,473 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,472 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,471 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,470 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,469 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,468 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,467 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,466 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,465 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,464 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,463 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,462 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,461 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,460 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,459 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,458 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,457 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,456 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,455 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,454 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,453 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,452 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,451 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,450 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,449 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,448 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,447 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,446 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,445 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,444 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,443 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,442 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,441 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,440 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,439 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,438 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,437 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,436 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,435 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,434 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,433 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,432 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,431 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,430 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,429 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,428 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,427 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,426 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,425 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,424 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,423 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,422 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,421 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,420 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,419 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,418 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,417 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
- # Block - + + 487,416 + + + + + + last month + + - Fee - + 0 + + + 16 Dusk + + +
+ + 487,415 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,414 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
+ 0 + + + 16 Dusk + + +
+ + 487,413 + + + + + + last month + + + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 +
- Txn(s) - - Rewards -
-
- - - - - -
-`; - -exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` -
-
-

- Blocks -

- - - -
- -
- - - + + 487,402 + + + + + + last month + + - + + AVG: + + + 0 +
+ + + TOTAL: + + + 0 + - + 0 + - + + 16 Dusk + + + + - - - - should render the \`BlocksCard\` component 1`] = ` > - 487,491 + 487,401 @@ -1763,9 +6549,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,490 + 487,400 @@ -1834,9 +6620,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,489 + 487,399 @@ -1905,9 +6691,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,488 + 487,398 @@ -1976,9 +6762,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,487 + 487,397 @@ -2047,9 +6833,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,486 + 487,396 @@ -2118,9 +6904,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,485 + 487,395 @@ -2189,9 +6975,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,484 + 487,394 @@ -2260,9 +7046,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,483 + 487,393 @@ -2331,9 +7117,9 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` > - 487,482 + 487,392 @@ -2403,5 +7189,73 @@ exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` + +`; + +exports[`Blocks Card > should disable the \`Show More\` button is the card is in the loading state 1`] = ` +
+
+

+ Blocks +

+ + + +
+ +

+ Loading... +

+ + +
+`; + +exports[`Blocks Card > should render the \`BlocksCard\` component 1`] = ` +
+
+

+ Blocks +

+ + + +
+ + +
`; diff --git a/explorer/src/lib/components/__tests__/__snapshots__/TransactionsCard.spec.js.snap b/explorer/src/lib/components/__tests__/__snapshots__/TransactionsCard.spec.js.snap index f10bfcc1a0..d524ebb94f 100644 --- a/explorer/src/lib/components/__tests__/__snapshots__/TransactionsCard.spec.js.snap +++ b/explorer/src/lib/components/__tests__/__snapshots__/TransactionsCard.spec.js.snap @@ -1,5 +1,41 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html +exports[`Transactions Card > should disable the \`Show More\` button if the card is in the loading state 1`] = ` +
+
+

+ Transactions +

+ + + +
+ +

+ Loading... +

+ + +
+`; + exports[`Transactions Card > should disable the \`Show More\` button if there is no more data to display 1`] = `
should disable the \`Show More\` button if there is
- - -
- # Block - - Fee - - Txn(s) - - Rewards -
-
- - - - - -
-`; - -exports[`Transactions Card > should disable the \`Show More\` button is the card is in the loading state 1`] = ` -
-
-

- Transactions -

- - - -
- -
- - - + + 4a62ff5839...6ad8084dca + + + + + + last month + + - + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 + - + + 0.000290006 Dusk + + + - + + success + + + - + + transfer + + + + - - - - should disable the \`Show More\` button is the card > - 3c6e4018cf...308e07bd2d + ce994d006c...966e9c1499 @@ -1131,7 +1156,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000290766 Dusk + 0.000290424 Dusk @@ -1175,9 +1200,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - 40d3e59a9b...5e8ade4d3b + e852377c09...9e20371c77 @@ -1220,7 +1245,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000290053 Dusk + 0.000290304 Dusk @@ -1264,9 +1289,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - ea86c56ffa...8914074fe3 + d3d49fff7b...e944085bb8 @@ -1309,7 +1334,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000290219 Dusk + 0.000290815 Dusk @@ -1353,9 +1378,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - ea86c56ffa...8914074fe3 + a3f465cce5...82162bd94f @@ -1398,7 +1423,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.00029046 Dusk + 0.000289437 Dusk @@ -1442,9 +1467,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - a85a0f5cc2...f0bb827312 + 5a22291ce7...2e565734e6 @@ -1476,7 +1501,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card LIMIT: - 500,000,000 + 50,000,000 @@ -1487,7 +1512,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000291263 Dusk + 0.000302854 Dusk @@ -1531,9 +1556,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - 646bd535ae...67c1cb0906 + 71f9cbcbb0...63c8129be1 @@ -1576,7 +1601,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000290735 Dusk + 0.000290538 Dusk @@ -1620,9 +1645,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - fbcda951c6...4bec844f78 + 149a4201e8...96ca297485 @@ -1665,7 +1690,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000289627 Dusk + 0.000290725 Dusk @@ -1709,9 +1734,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - a90821aca4...11467eb9c6 + d2fc63531e...e803bcd93e @@ -1754,7 +1779,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.00029061 Dusk + 0.000291237 Dusk @@ -1798,9 +1823,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - 4db9e793b1...e2ab163e74 + 63a29522a0...f54afb8312 @@ -1843,7 +1868,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000291347 Dusk + 0.000292576 Dusk @@ -1887,9 +1912,9 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card > - 47c9f1349f...e7ce5103db + 63a29522a0...f54afb8312 @@ -1932,7 +1957,7 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - 0.000290416 Dusk + 0.000291856 Dusk @@ -1968,105 +1993,6057 @@ exports[`Transactions Card > should disable the \`Show More\` button is the card - - -
- Hash - - Gas - - Fee - - Status - - Type -
-
- - - - - -
-`; - -exports[`Transactions Card > should render the \`TransactionsCard\` component 1`] = ` -
-
-

- Transactions -

- - - -
- -
- - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 + - + + 0.000292572 Dusk + + + + + + + + + + + + - - - - should render the \`TransactionsCard\` component 1` > - 3c6e4018cf...308e07bd2d + cf4d27799b...7e348e91fe @@ -2121,7 +8098,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000290766 Dusk + 0.00029035 Dusk @@ -2165,9 +8142,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - 40d3e59a9b...5e8ade4d3b + 2279e5df6b...03d7768c4a @@ -2210,7 +8187,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000290053 Dusk + 0.000291046 Dusk @@ -2254,9 +8231,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - ea86c56ffa...8914074fe3 + edeb62c72c...2dff54039d @@ -2299,7 +8276,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000290219 Dusk + 0.000290089 Dusk @@ -2343,9 +8320,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - ea86c56ffa...8914074fe3 + 1e94c2decd...f275f408f9 @@ -2388,7 +8365,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.00029046 Dusk + 0.000291076 Dusk @@ -2432,9 +8409,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - a85a0f5cc2...f0bb827312 + 1e94c2decd...f275f408f9 @@ -2477,7 +8454,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000291263 Dusk + 0.000290369 Dusk @@ -2521,9 +8498,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - 646bd535ae...67c1cb0906 + faa6d77a51...b9341130b3 @@ -2566,7 +8543,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000290735 Dusk + 0.000292697 Dusk @@ -2610,9 +8587,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - fbcda951c6...4bec844f78 + faa6d77a51...b9341130b3 @@ -2655,7 +8632,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000289627 Dusk + 0.000289139 Dusk @@ -2699,9 +8676,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - a90821aca4...11467eb9c6 + 9e2af686c3...f34822045f @@ -2744,7 +8721,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.00029061 Dusk + 0.000291707 Dusk @@ -2788,9 +8765,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - 4db9e793b1...e2ab163e74 + be0e350c87...18fcf685bd @@ -2833,7 +8810,7 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000291347 Dusk + 0.000290267 Dusk @@ -2877,9 +8854,9 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` > - 47c9f1349f...e7ce5103db + 84ecb1cfd7...f0bcfc65be @@ -2922,7 +8899,96 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` - 0.000290416 Dusk + 0.00029001 Dusk + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2967,5 +9033,37 @@ exports[`Transactions Card > should render the \`TransactionsCard\` component 1` + +`; + +exports[`Transactions Card > should render the \`TransactionsCard\` component 1`] = ` +
+
+

+ Transactions +

+ + + +
+ + +
`;
- Hash - + 90cd68db89...8443fecbc4 + + + + + + last month + + + + + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000289995 Dusk + + + + + success + + + + + transfer + + +
+ + 90cd68db89...8443fecbc4 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291799 Dusk + + + + + success + + + + + transfer + + +
+ + d7231977d7...bef4f05afe + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291389 Dusk + + + + + success + + + + + transfer + + +
+ + d7231977d7...bef4f05afe + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000289918 Dusk + + + + + success + + + + + transfer + + +
+ + a17fb345b2...2834eda0d0 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291374 Dusk + + + + + success + + + + + transfer + + +
+ + 24d3a8e8c3...ee4749294e + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000289715 Dusk + + + + + success + + + + + transfer + + +
+ + 498e6199ce...e87e81b00e + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291703 Dusk + + + + + success + + + + + transfer + + +
+ + a875f69922...548fa81f8a + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290398 Dusk + + + + + success + + + + + transfer + + +
+ + 1b21fe58dc...ca336dcbcc + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 2,900,000,000 +
+ + 0.026876695 Dusk + + + + + success + + + + + withdraw + + +
+ + 6cdb8870f5...401477aacd + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 2,900,000,000 +
+ + 0.026877179 Dusk + + + + + success + + + + + withdraw + + +
+ + 1839b7ceb7...9a885b3591 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 2,900,000,000 +
+ + 0.026878043 Dusk + + + + + success + + + + + withdraw + + +
+ + b23a5c41dd...ed6a823978 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290879 Dusk + + + + + success + + + + + transfer + + +
+ + bc8fdb76e3...ba89337062 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291262 Dusk + + + + + success + + + + + transfer + + +
+ + 210bb4e4fb...f24a03d645 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291239 Dusk + + + + + success + + + + + transfer + + +
+ + 86e53adb78...1c02416e57 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290381 Dusk + + + + + success + + + + + transfer + + +
+ + b8e93cec3d...bae6943e77 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 2,900,000,000 +
+ + 0.026878377 Dusk + + + + + success + + + + + withdraw + + +
+ + d2b688ddc7...d9681518a2 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290739 Dusk + + + + + success + + + + + transfer + + +
+ + e73cf566fd...4c1c23c585 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.00029013 Dusk + + + + + success + + + + + transfer + + +
+ + d8b6fbdb16...b7234b1dc4 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290611 Dusk + + + + + success + + + + + transfer + + +
+ + dac78decf3...58fa051b41 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290639 Dusk + + + + + success + + + + + transfer + + +
+ + 170fcd7601...75db550602 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290547 Dusk + + + + + success + + + + + transfer + + +
+ + 9f9b31f01a...3d1a4c9286 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290427 Dusk + + + + + success + + + + + transfer + + +
+ + 7288760d53...626af015f1 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000292588 Dusk + + + + + success + + + + + transfer + + +
+ + e1693cf24d...f512872e71 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290984 Dusk + + + + + success + + + + + transfer + + +
+ + 99bc68b495...e856d8c1a3 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290554 Dusk + + + + + success + + + + + transfer + + +
+ + fe25589fc7...5e0d011029 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000289962 Dusk + + + + + success + + + + + transfer + + +
+ + 8348f8d44f...4e16d4ee56 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291795 Dusk + + + + + success + + + + + transfer + + +
+ + 69b692ba65...894754dfca + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000517301 Dusk + + + + + success + + + + + stake + + +
+ + f0ebaa3f2a...fc6539581d + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.011287825 Dusk + + + + + success + + + + + unstake + + +
+ + 8a08e0f479...add6b1300d + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290807 Dusk + + + + + success + + + + + transfer + + +
+ + 475e53eac9...2163f3f9f0 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.00029142 Dusk + + + + + success + + + + + transfer + + +
+ + f202c10232...bf309143dc + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291603 Dusk + + + + + success + + + + + transfer + + +
+ + f202c10232...bf309143dc + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291354 Dusk + + + + + success + + + + + transfer + + +
+ + f202c10232...bf309143dc + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290617 Dusk + + + + + success + + + + + transfer + + +
+ + 948e56e6ac...0af41570dd + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291057 Dusk + + + + + success + + + + + transfer + + +
+ + 948e56e6ac...0af41570dd + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290918 Dusk + + + + + success + + + + + transfer + + +
+ + 948e56e6ac...0af41570dd + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000292014 Dusk + + + + + success + + + + + transfer + + +
+ + 7029453b27...7fe42a9937 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291117 Dusk + + + + + success + + + + + transfer + + +
+ + 1233d550a7...bdcd3cfb78 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000292981 Dusk + + + + + success + + + + + transfer + + +
+ + d86c3912d8...e89941c5af + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290809 Dusk + + + + + success + + + + + transfer + + +
+ + a3e25dbcf2...cd4eff38d4 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000293367 Dusk + + + + + success + + + + + transfer + + +
+ + 5774e6b59b...57f9af9730 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290087 Dusk + + + + + success + + + + + transfer + + +
+ + 920ad32132...bcf7e39ae5 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290629 Dusk + + + + + success + + + + + transfer + + +
+ + 5546fad706...2866efc7d3 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290457 Dusk + + + + + success + + + + + transfer + + +
+ + 5546fad706...2866efc7d3 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291543 Dusk + + + + + success + + + + + transfer + + +
+ + 5ca4214647...e255882d17 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291727 Dusk + + + + + success + + + + + transfer + + +
+ + a42bdf5e63...b93d762794 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000292889 Dusk + + + + + success + + + + + transfer + + +
+ + 3ab36d4d31...56af31686e + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291595 Dusk + + + + + success + + + + + transfer + + +
+ + 3deebc3f54...addc878195 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290658 Dusk + + + + + success + + + + + transfer + + +
+ + cc5d2ef9f5...1e7004ea76 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290543 Dusk + + + + + success + + + + + transfer + + +
+ + 8200ba0516...abc52ba59e + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000303235 Dusk + + + + + success + + + + + transfer + + +
+ + 2319209d9e...1d83a9aec5 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000225065 Dusk + + + + + success + + + + + transfer + + +
+ + 09342d2422...6f3ea26fcf + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 2,900,000,000 +
+ + 0.026868849 Dusk + + + + + success + + + + + withdraw + + +
+ + 7024bde260...49b8efcf86 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.00029175 Dusk + + + + + success + + + + + transfer + + +
+ + 97d5ad99d6...dae691a56d + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291911 Dusk + + + + + success + + + + + transfer + + +
+ + 44b56b1699...e6e1c42ebb + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290513 Dusk + + + + + success + + + + + transfer + + +
+ + 8a994392c8...e6be063a0d + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000290508 Dusk + + + + + success + + + + + transfer + + +
+ + 2dd49e5e7b...229272f9d7 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291278 Dusk + + + + + success + + + + + transfer + + +
+ + 24a5f2e940...0e230da7aa + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291305 Dusk + + + + + success + + + + + transfer + + +
+ + ae85f675ae...6ae8f7109a + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000518299 Dusk + + + + + success + + + + + stake + + +
+ + 9da4452174...8b15187d78 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.011285585 Dusk + + + + + success + + + + + unstake + + +
+ + 7199c63c76...4fad838674 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000228433 Dusk + + + + + success + + + + + transfer + + +
+ + ad6b627c58...d249aef19b + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000216628 Dusk + + + + + success + + + + + transfer + + +
+ + eaacee222a...6fe0b3e199 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000214253 Dusk + + + + + success + + + + + transfer + + +
+ + c3746d663a...5047f19574 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000292426 Dusk + + + + + success + + + + + transfer + + +
+ + 96fbd2c6b3...4dea78ed49 + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 50,000,000 +
+ + 0.000226151 Dusk + + + + + success + + + + + transfer + + +
+ + 4f04dcd57e...5dc01ab1ec + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000291034 Dusk + + + + + success + + + - Gas - + + transfer + + + + + +
- Fee - + + 1e9e0b7f7b...b1e0451057 + + + + + + last month + + - Status - - Type - + + success + + + + + transfer + + +
+ + success + + + + + transfer + + +
+ + 8ebb88b0ad...ceabd7177b + + + + + + last month + + + + PRICE: + + + 1 +
+ + + LIMIT: + + + 500,000,000 +
+ + 0.000289813 Dusk