Skip to content

Commit

Permalink
Merge pull request #4091 from LedgerHQ/feat/LIVE-8272/UILibNewIcons
Browse files Browse the repository at this point in the history
feat(IconsUI, ReactUI, NativeUI): New icon pack in IconsUI
  • Loading branch information
mle-gall authored Jul 21, 2023
2 parents 0e7600b + eeab77f commit 6da418a
Show file tree
Hide file tree
Showing 736 changed files with 1,964 additions and 1,008 deletions.
8 changes: 8 additions & 0 deletions .changeset/light-news-cross.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"live-mobile": patch
"@ledgerhq/native-ui": patch
"@ledgerhq/icons-ui": patch
"@ledgerhq/react-ui": patch
---

UILib - New icons + renamed old icon set to Legacy (should not be used anymore by consumers eg LLD and LLM)
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useCallback, useState } from "react";
import styled from "styled-components";
import EventList from "./EventList";
import StyleProviderV3 from "~/renderer/styles/StyleProviderV3";
import { Divider, Flex, Icons, Switch, Text } from "@ledgerhq/react-ui";
import { Divider, Flex, IconsLegacy, Switch, Text } from "@ledgerhq/react-ui";

const Root = styled.div`
position: fixed;
Expand Down Expand Up @@ -102,13 +102,13 @@ function AnalyticsConsole() {
<Flex alignSelf={"flex-end"} flexDirection={"column"} style={{ pointerEvents: "auto" }}>
<ButtonContainer onClick={onClickArrowButton}>
{position === "left" ? (
<Icons.ArrowRightMedium size={18} color="black" />
<IconsLegacy.ArrowRightMedium size={18} color="black" />
) : (
<Icons.ArrowLeftMedium size={18} color="black" />
<IconsLegacy.ArrowLeftMedium size={18} color="black" />
)}
</ButtonContainer>
<ButtonContainer onClick={onClickDebugButton}>
<Icons.ActivityMedium size={18} color="black" />
<IconsLegacy.ActivityMedium size={18} color="black" />
</ButtonContainer>
</Flex>
</Container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { mockedEventEmitter } from "~/renderer/components/debug/DebugMock";
import DeviceAction from "./DeviceAction";
import { Language } from "@ledgerhq/types-live";
import { useTranslation } from "react-i18next";
import { BoxedIcon, Flex, Icons, Text } from "@ledgerhq/react-ui";
import { BoxedIcon, Flex, IconsLegacy, Text } from "@ledgerhq/react-ui";
import { withV3StyleProvider } from "~/renderer/styles/StyleProviderV3";

const action = createAction(getEnv("MOCK") ? mockedEventEmitter : installLanguage);
Expand All @@ -22,7 +22,12 @@ const DeviceLanguageInstalled = ({ language }: { language: Language }) => {
justifyContent="center"
data-test-id="language-installed"
>
<BoxedIcon Icon={Icons.CheckAloneMedium} iconColor="success.c60" size={64} iconSize={24} />
<BoxedIcon
Icon={IconsLegacy.CheckAloneMedium}
iconColor="success.c60"
size={64}
iconSize={24}
/>
<Text variant="large" alignSelf="stretch" mt={9} textAlign="center">
{t("deviceLocalization.languageInstalled", {
language: t(`deviceLocalization.languages.${language}`),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { isCurrencySupported } from "~/renderer/screens/exchange/config";
import { setTrackingSource } from "~/renderer/analytics/TrackPage";
import { useFeature } from "@ledgerhq/live-common/featureFlags/index";
import { ContextMenuItemType } from "./ContextMenuWrapper";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";

type Props = {
account: AccountLike;
Expand Down Expand Up @@ -159,7 +159,7 @@ export default function AccountContextMenu({
if (account.type === "TokenAccount") {
items.push({
label: "accounts.contextMenu.hideToken",
Icon: Icons.NoneMedium,
Icon: IconsLegacy.NoneMedium,
id: "token-menu-hide",
callback: () =>
dispatch(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { openModal } from "~/renderer/actions/modals";
import ContextMenuItem from "./ContextMenuItem";
import { setDrawer } from "~/renderer/drawers/Provider";
import { Account } from "@ledgerhq/types-live";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";
type Props = {
account: Account;
collectionAddress: string;
Expand All @@ -30,7 +30,7 @@ export default function NFTCollectionContextMenu({
{
key: "hide",
label: t("hideNftCollection.hideCTA"),
Icon: Icons.NoneMedium,
Icon: IconsLegacy.NoneMedium,
callback: () =>
dispatch(
openModal("MODAL_HIDE_NFT_COLLECTION", {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ImageLoadRefusedOnDevice, ImageCommitRefusedOnDevice } from "@ledgerhq/
import withRemountableWrapper from "@ledgerhq/live-common/hoc/withRemountableWrapper";
import { getEnv } from "@ledgerhq/live-common/env";
import { useTranslation } from "react-i18next";
import { Theme, Flex, Icons } from "@ledgerhq/react-ui";
import { Theme, Flex, IconsLegacy } from "@ledgerhq/react-ui";
import useTheme from "~/renderer/hooks/useTheme";
import { DeviceActionDefaultRendering } from "../DeviceAction";
import Button from "../ButtonV3";
Expand Down Expand Up @@ -123,7 +123,7 @@ const CustomImageDeviceAction: React.FC<Props> = withRemountableWrapper(props =>
error,
device: device ?? undefined,
...(isRefusedOnStaxError
? { Icon: Icons.CircledAlertMedium, iconColor: "warning.c50" }
? { Icon: IconsLegacy.CircledAlertMedium, iconColor: "warning.c50" }
: {}),
})}
{inlineRetry ? (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback, useEffect, useRef, useState } from "react";
import { ImageBase64Data, ImageDimensions } from "./types";
import { useDebounce } from "@ledgerhq/live-common/hooks/useDebounce";
import { Button, Flex, Icons } from "@ledgerhq/react-ui";
import { Button, Flex, IconsLegacy } from "@ledgerhq/react-ui";
import Cropper, { Area, CropperProps } from "react-easy-crop";
import { createCanvas, getRadianAngle, rotateSize } from "./imageUtils";
import { ImageCropError } from "@ledgerhq/live-common/customImage/errors";
Expand Down Expand Up @@ -256,7 +256,7 @@ const ImageCropper: React.FC<Props> = props => {
outline
backgroundColor="transparent"
onClick={rotateCounterClockwise}
Icon={Icons.ReverseMedium}
Icon={IconsLegacy.ReverseMedium}
data-test-id="custom-image-crop-rotate-button"
>
Rotate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback } from "react";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";
import {
ImageIncorrectFileTypeError,
ImageLoadFromFileError,
Expand Down Expand Up @@ -74,7 +74,7 @@ const ImportImage: React.FC<Props> = ({ setLoading, onResult, onError, onClick }
return (
<ImportButton
text={t("customImage.steps.choose.upload")}
Icon={Icons.UploadMedium}
Icon={IconsLegacy.UploadMedium}
data-test-id="custom-image-import-image-button"
onClick={onClick}
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";
import ImportButton from "./ImportButton";
import { useTranslation } from "react-i18next";

Expand All @@ -13,7 +13,7 @@ const ImportNFTButton: React.FC<Props> = ({ onClick }) => {
return (
<ImportButton
text={t("customImage.steps.choose.chooseNft")}
Icon={Icons.TicketMedium}
Icon={IconsLegacy.TicketMedium}
testId="custom-image-import-nft-button"
onClick={onClick}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
LanguageInstallRefusedOnDevice,
ImageDoesNotExistOnDevice,
} from "@ledgerhq/live-common/errors";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";

export type ErrorIconProps = {
error: unknown;
Expand All @@ -41,7 +41,7 @@ const ErrorIcon = ({ error, size = 44 }: ErrorIconProps) => {
error instanceof ImageDoesNotExistOnDevice ||
error instanceof UserRefusedDeviceNameChange
) {
return <Icons.InfoMedium size={size} />;
return <IconsLegacy.InfoMedium size={size} />;
}

if (error instanceof SwapGenericAPIError || error instanceof NoSuchAppOnProvider) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { UpdaterContext } from "~/renderer/components/Updater/UpdaterContext";
import { shouldUpdateYet } from "~/helpers/user";
import { useRemoteConfig } from "~/renderer/components/RemoteConfig";
import { VISIBLE_STATUS } from "./Updater/Banner";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";
const FirmwareUpdateBanner = ({ old, right }: { old?: boolean; right?: React.ReactNode }) => {
const history = useHistory();
const location = useLocation();
Expand Down Expand Up @@ -43,7 +43,7 @@ const FirmwareUpdateBanner = ({ old, right }: { old?: boolean; right?: React.Rea
<TopBanner
id={"fw-update-banner"}
content={{
Icon: Icons.NanoFoldedMedium,
Icon: IconsLegacy.NanoFoldedMedium,
message: (
<Trans
i18nKey={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import styled from "styled-components";
import { useManagerBlueDot } from "@ledgerhq/live-common/manager/hooks";
import { useRemoteLiveAppManifest } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index";
import { FeatureToggle, useFeature } from "@ledgerhq/live-common/featureFlags/index";
import { Icons, Tag as TagComponent } from "@ledgerhq/react-ui";
import { IconsLegacy, Tag as TagComponent } from "@ledgerhq/react-ui";
import { accountsSelector, starredAccountsSelector } from "~/renderer/reducers/accounts";
import {
sidebarCollapsedSelector,
Expand Down Expand Up @@ -205,7 +205,7 @@ const TagContainerFeatureFlags = ({ collapsed }: { collapsed: boolean }) => {
}}
onClick={() => setTrackingSource("sidebar")}
>
<Icons.ChartNetworkMedium size={16} />
<IconsLegacy.ChartNetworkMedium size={16} />
<TagText collapsed={collapsed}>{t("common.featureFlags")}</TagText>
</Tag>
) : null;
Expand Down Expand Up @@ -361,7 +361,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"dashboard"}
label={t("dashboard.title")}
icon={Icons.HouseMedium}
icon={IconsLegacy.HouseMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickDashboard}
Expand All @@ -372,7 +372,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"market"}
label={t("sidebar.market")}
icon={Icons.GraphGrowMedium}
icon={IconsLegacy.GraphGrowMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickMarket}
Expand All @@ -383,7 +383,7 @@ const MainSideBar = () => {
<SideBarListItem
id="learn"
label={t("sidebar.learn")}
icon={Icons.NewsMedium}
icon={IconsLegacy.NewsMedium}
iconSize={20}
iconActiveColor="wallet"
isActive={location.pathname.startsWith("/learn")}
Expand All @@ -394,7 +394,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"accounts"}
label={t("sidebar.accounts")}
icon={Icons.WalletMedium}
icon={IconsLegacy.WalletMedium}
iconSize={20}
iconActiveColor="wallet"
isActive={location.pathname.startsWith("/account")}
Expand All @@ -405,7 +405,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"catalog"}
label={t("sidebar.catalog")}
icon={Icons.PlanetMedium}
icon={IconsLegacy.PlanetMedium}
iconSize={20}
iconActiveColor="wallet"
isActive={location.pathname.startsWith("/platform")}
Expand All @@ -415,7 +415,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"send"}
label={t("send.title")}
icon={Icons.ArrowFromBottomMedium}
icon={IconsLegacy.ArrowFromBottomMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleOpenSendModal}
Expand All @@ -425,7 +425,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"receive"}
label={t("receive.title")}
icon={Icons.ArrowToBottomMedium}
icon={IconsLegacy.ArrowToBottomMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleOpenReceiveModal}
Expand All @@ -436,7 +436,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"earn"}
label={t("sidebar.earn")}
icon={Icons.LendMedium}
icon={IconsLegacy.LendMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickEarn}
Expand All @@ -447,7 +447,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"exchange"}
label={t("sidebar.exchange")}
icon={Icons.BuyCryptoAltMedium}
icon={IconsLegacy.BuyCryptoAltMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickExchange}
Expand All @@ -458,7 +458,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"swap"}
label={t("sidebar.swap")}
icon={Icons.BuyCryptoMedium}
icon={IconsLegacy.BuyCryptoMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickSwap}
Expand All @@ -470,7 +470,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"refer"}
label={t("sidebar.refer")}
icon={Icons.GiftCardMedium}
icon={IconsLegacy.GiftCardMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickRefer}
Expand All @@ -488,7 +488,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"card"}
label={t("sidebar.card")}
icon={Icons.CardMedium}
icon={IconsLegacy.CardMedium}
iconSize={20}
iconActiveColor="wallet"
isActive={location.pathname === "/card"}
Expand All @@ -500,7 +500,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"recover"}
label={t("sidebar.recover")}
icon={Icons.ShieldCheckMedium}
icon={IconsLegacy.ShieldCheckMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickRecover}
Expand All @@ -510,7 +510,7 @@ const MainSideBar = () => {
<SideBarListItem
id={"manager"}
label={t("sidebar.manager")}
icon={Icons.NanoXFoldedMedium}
icon={IconsLegacy.NanoXFoldedMedium}
iconSize={20}
iconActiveColor="wallet"
onClick={handleClickManager}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Box, Button, Icons } from "@ledgerhq/react-ui";
import { Box, Button, IconsLegacy } from "@ledgerhq/react-ui";
import styled from "styled-components";

const CloseContainer = styled(Box).attrs(() => ({
Expand All @@ -12,7 +12,7 @@ export default function CloseButton({ onClick }: { onClick: () => void }) {
return (
<CloseContainer>
<Button.Unstyled onClick={onClick}>
<Icons.CloseMedium size={20} />
<IconsLegacy.CloseMedium size={20} />
</Button.Unstyled>
</CloseContainer>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import styled from "styled-components";
import { Button, Icons, Flex, Text } from "@ledgerhq/react-ui";
import { Button, IconsLegacy, Flex, Text } from "@ledgerhq/react-ui";

const Container = styled(Flex).attrs(() => ({
flexDirection: "column",
Expand Down Expand Up @@ -62,7 +62,7 @@ const StepLeftSide = ({
data-test-id={dataTestId}
disabled={continueDisabled}
variant="main"
Icon={Icons.ArrowRightMedium}
Icon={IconsLegacy.ArrowRightMedium}
onClick={onClickContinue}
>
{continueLabel}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Account, ProtoNFT } from "@ledgerhq/types-live";
import NFTCollectionContextMenu from "~/renderer/components/ContextMenu/NFTCollectionContextMenu";
import Skeleton from "~/renderer/components/Nft/Skeleton";
import styled from "styled-components";
import { Icons } from "@ledgerhq/react-ui";
import { IconsLegacy } from "@ledgerhq/react-ui";
const Dots = styled.div`
justify-content: flex-end;
display: flex;
Expand Down Expand Up @@ -42,7 +42,7 @@ const CollectionName = ({ nft, fallback, account, showHideMenu }: Props) => {
leftClick={true}
>
<Dots>
<Icons.OthersMedium size={20} />
<IconsLegacy.OthersMedium size={20} />
</Dots>
</NFTCollectionContextMenu>
)}
Expand Down
Loading

2 comments on commit 6da418a

@vercel
Copy link

@vercel vercel bot commented on 6da418a Jul 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Bot] non-reg on develop with 'Carbon' ✅ 40 txs ❌ 16 txs 💰 47 miss funds ($126.49) ⏲ 16min 51s

✅ 10 specs are successful: Bitcoin Gold, Dash, Digibyte, DogeCoin, Komodo, Litecoin, Vertcoin, Viacoin, Stacks, Cronos
❌ 10 specs have problems: Bitcoin Cash, PivX, Horizen, Crypto org, BSC, Polygon, Ethereum Classic, NEAR, Tezos, Polkadot
💰 47 specs may miss funds: Bitcoin, Bitcoin Testnet, Peercoin, Qtum, ZCash, Decred, cardano, Celo, axelar, cosmos, osmosis, desmos, umee, persistence, quicksilver, onomy, secret_network, stargaze, Elrond, Avalanche C-Chain, Filecoin, Hedera, InternetComputer, XRP, Solana, Stellar, Tron, Algorand, Ethereum EVM (TEST ONLY DO NOT USE), Arbitrum Goerli, Fantom, Flare, Songbird, Moonbeam, RSK, Bittorent Chain, Kava EVM, Evmos EVM, OP Mainnet, Optimism Goerli, Energy Web, Astar, Metis, Boba, Moonriver, Velas EVM, Syscoin

What is the bot and how does it work? Everything is documented here!

4 critical spec errors

Spec Ethereum failed!

Invariant Violation: Ethereum: no app found. Are you sure your COINAPPS is up to date?

Spec Ethereum Goerli failed!

Invariant Violation: Ethereum Goerli: no app found. Are you sure your COINAPPS is up to date?

Spec Polygon EVM (TEST ONLY DO NOT USE) failed!

Error: scan accounts timeout for currency Polygon EVM (TEST ONLY DO NOT USE)

Spec Telos failed!

EtherscanLikeExplorerUsedIncorrectly: EtherscanLikeExplorerUsedIncorrectly
❌ 16 mutation errors
necessary accounts resynced in 2.45ms
▬ BitcoinCash 2.1.0-rc on nanoS 2.1.0
→ FROM Bitcoin Cash 2: 0.00029643 BCH (514ops) (bitcoincash:qpj3c38fw0ec7hg627etsr4ujyc769ht5u56w2663x on 44'/145'/1'/0/255) #1 js:2:bitcoin_cash:xpub6DFQK1AuijTDzqA37sfBGypdSSNU7LAX21TNs2Jp94oP79orDBeD4QCmCKDZ1FWmFY8SgRbqVNpSNJ1VboRBta6jS3mtxGkTvvFm7777sof: (! sum of ops 0.00015424 BCH)
2 UTXOs
0.00022412   bitcoincash:qqv30alndqzr3fvr3c4p4luekhesnmcerv3w4egfht (change) rbf 5d872a087850361c298bbc2089481ee9a0a7ae261bab33513a453e6328cc8970 @1 (40371)
0.00007231   bitcoincash:qq5c8xm54h9vwxf4yql4gd604xslswna9g7maq90su 377594055e6ba6f3c775d276075f12bbafaf12107a9a1adabe0e9b1ae27d6bb2 @0 (40371)

max spendable ~0.00029303
★ using mutation 'move ~50%'
→ TO Bitcoin Cash 1 cross: 0 BCH (29ops) (qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2 on 44'/145'/0'/0/13) #0 js:2:bitcoin_cash:xpub6DFQK1AuijTDwDFN6ktbu9RTTMpPTPdc3u2gVf734hgSq8zMEjNVUR4Ehr4VouBXxBZ31u3EhybKJ3Z88H1HgViEfspABidzNpMDYZh9Vhy:
✔️ transaction 
SEND 0.00013981 BCH
TO qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2
with feePerByte=1 (network fees: 0=2, 1=1, 2=0)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (779ms)
TX INPUTS (1):
0.00022412   qqv30alndqzr3fvr3c4p4luekhesnmcerv3w4egfht 5d872a087850361c298bbc2089481ee9a0a7ae261bab33513a453e6328cc8970@1
TX OUTPUTS (2):
0.00013981   qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2 @0 (0)
0.00008205   qzkrgrxpfjurlq3dxw8gcujua3y9vhpg9ucsa50a6a (change) @1 (0)
  amount: 0.00013981 BCH
  estimated fees: 0.00000226 BCH
  total spent: 0.00014207 BCH
errors: 
errors: 
✔️ has been signed! (10.2s) {"operation":{"id":"js:2:bitcoin_cash:xpub6DFQK1AuijTDzqA37sfBGypdSSNU7LAX21TNs2Jp94oP79orDBeD4QCmCKDZ1FWmFY8SgRbqVNpSNJ1VboRBta6jS3mtxGkTvvFm7777sof:--OUT","hash":"","type":"OUT","senders":["qqv30alndqzr3fvr3c4p4luekhesnmcerv3w4egfht"],"recipients":["qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2"],"accountId":"js:2:bitcoin_cash:xpub6DFQK1AuijTDzqA37sfBGypdSSNU7LAX21TNs2Jp94oP79orDBeD4QCmCKDZ1FWmFY8SgRbqVNpSNJ1VboRBta6jS3mtxGkTvvFm7777sof:","blockHash":null,"blockHeight":null,"extra":{},"date":"2023-07-24T05:26:45.264Z","value":"14207","fee":"226"},"signature":"01000000017089cc28633e453a5133ab1b26aea7a0e91e488920bc8b291c365078082a875d010000006a473044022009fe22d0634a9e3d77ee7dc64492d247b048016cd702fcde7dac74f5eb60bba702200d85be993d3bd7e5d50bc2b9d13ab1927c83f8ee780575aed81a3310d01728264121029381a5a7d2eb898cf39a5116e573bec80f2003eba3453afd9c0451bb1812a7deffffffff029d360000000000001976a914a67a23db8028392b3cf45a0bdb22ab76e9a81a6788ac0d200000000000001976a914ac340cc14cb83f822d338e8c725cec48565c282f88ac00000000","expirationDate":null}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 11.3s – ends at 2023-07-24T05:42:16.875Z)
necessary accounts resynced in 1.12ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM PivX 2: 10.0922 PIVX (721ops) (DMMVFvLC1VdLFSiDob3hkDYA1jbf9tvZYH on 44'/77'/1'/0/342) #1 js:2:pivx:ToEA6nMDpFiPwDBxRgg4N7SKC846s67k9WSxFNLi7s18PGvcWb8fAffciakBKe1AU31hsUbyCGivUjtH7FvMpkzjJtANqsrmqMAitg6Sh7sKSRs: (! sum of ops 3.18896574 PIVX)
7 UTXOs
7.91746      DBMoS4B2t7V7p1MLLnoeuZBMYDN2TSMj5Y 6851044ba3794658ae380725c5f3975d9011e64e23c0a2895f971342609df68d @0 (55921)
1.02884      DGXFifvYaUEYe2vEkohgK4BKzoa5cCRyco c3acc68dfa8d26c112b9d5a97df3ece62e46e00da5ded74695676a084d9a4ffe @0 (46172)
0.876898     DQ5GWH6FefdaHRpC3pJ9vZ3qiQvkwCj2NQ b7c5fa102bc84ded74bc25dc75104e362b7d9e25db0c79f2d0505b4b25a1f855 @0 (244284)
0.174731     DEHkCSJjfhaL6UUQdzBEvmnh6aowERvZR5 (change) f8acfa29c7567e396efba57013ca436b55cf1ec81208df1464b8ae3741f2eebc @1 (243843)
...

max spendable ~10.0921
★ using mutation 'send OP_RETURN transaction'
✔️ transaction 
SEND 0.00015 PIVX
TO DGdghn8S1uCtezNJDfmLyvMwjjKCn3WiSs
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
⚠️ LedgerAPI4xx: Error when executing RPC call
(totally spent 1404ms – ends at 2023-07-24T05:42:16.885Z)
necessary accounts resynced in 0.22ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM PivX 3: 22.7223 PIVX (728ops) (DGdghn8S1uCtezNJDfmLyvMwjjKCn3WiSs on 44'/77'/2'/0/375) #2 js:2:pivx:ToEA6nMDpFiPwDBxUSqMWjms5DXKLC7WAZJTw73SmQMeH8qf1QyGNrkSyKDJFxRiLjqWPTuniH6XGwuktStmDimdcPkvYLSyFAAgDyJM5T5m5Tx: (! sum of ops 22.53800038 PIVX)
11 UTXOs
14.3454      DLYyrYzuBx8iNujrQ72tkuVjrpTA6UCt1q d46385ce13d53a153609461f4bdfe3bbbcf0d9955e1cc44218e0f6929a62710a @0 (245687)
3.39711      D6MneDqXScVcRtsuzcENQVJt3YdNR3qzK8 e5867dcdc9b5ee3387e2b6290159c36ea41b32c6a595349dda025565159738e0 @0 (88510)
2.42129      D8ubQ7gAhXRnSSS7WePNCCogiokkNxnBqR 516226b3d0e92cfd61b2b56e5136485ac07b2b7ea575215c7576556523d90bc9 @0 (85503)
1.74878      DMcz7asphjMkXyQmxCA7NVp2hLnnXKfnb6 rbf 5f7226854c3cc27ad2d77438a27487fbc112a32f4e7684c1e69c31c67ee9ea89 @0 (137643)
...

max spendable ~22.7221
★ using mutation 'send max'
✔️ transaction 
SEND 0 PIVX
TO DMMVFvLC1VdLFSiDob3hkDYA1jbf9tvZYH
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
⚠️ LedgerAPI4xx: Error when executing RPC call
(totally spent 1338ms – ends at 2023-07-24T05:42:16.900Z)
necessary accounts resynced in 0.92ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM PivX 4: 1.46119 PIVX (679ops) (DAYcERjPwgnybQP9zGZFqV3YUAMVbVfg8M on 44'/77'/3'/0/342) #3 js:2:pivx:ToEA6nMDpFiPwDBxWZ63Q234dFFoqvCv7UFPMkhR2LMStT7uyZ6u8dwFJRduvrbMQuJgkRGrqbsyvBN8KPtW6FGTS2krMgvJ1bpiQVJPcUU2Csg: (! sum of ops -5.67608478 PIVX)
5 UTXOs
1.06077      D5CtCwqfqr4vVjDAcr1sWo4qa1EdRRoqi1 (change) 0325219c571cb38dc9cc1fdcca966dcd8e750e31c1c207884626d8130886f4d1 @1 (250190)
0.310389     DBxLC6nANF2mRiwETTv3wzZMReiq7QWbpW d5cfd29a0182410f0af0443bc75a1588c06bc1ab2818681b078c1233cc2cbf6e @0 (244278)
0.0898369    DSKJ34hkCc1fwvHziTHaixLUxDioDyhNst (change) 9fa85ffd4bc6efb2a34a55f37b1a6ec047491e4191314ae09d6a480ab8a8dfe5 @1 (59005)
0.0001       DKHEomDnhMmyX7VKTRMd4gwYLCnRho86dk a2e3b39f5956093015ba99787a64d35f4064ad151138216532e6486b36f609d4 @0 (243849)
...

max spendable ~1.46111
★ using mutation 'send OP_RETURN transaction'
✔️ transaction 
SEND 0.00015 PIVX
TO DMMVFvLC1VdLFSiDob3hkDYA1jbf9tvZYH
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
⚠️ LedgerAPI4xx: Error when executing RPC call
(totally spent 1850ms – ends at 2023-07-24T05:42:16.904Z)
necessary accounts resynced in 0.18ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM Horizen 3: 0.0372259 ZEN (797ops) (znUcWLsi9SLf4qwkjGZHzkFXJvtppq6jPNi on 44'/121'/2'/0/411) #2 js:2:zencash:xpub6D68gNRhhkMnRRjTNz1TfbaUGs7AMGewZN8bhdZG3dVTgE5mNSHJW5A5PJv3vdwAHhP4wVsSBFHPcWqxg549ZNm9ho2JbM7zqRUB7cyXLiT:
2 UTXOs
0.0194042    znjGLPpCFA4UqLa67TLT28KQxVT7jhHyxJJ d7e1cc78b8f70200ffb6cfffe9e5a68eec13a2c839aa0934304f610efb992155 @0 (11955)
0.0178216    zneo2smo4W77aHXn41sSWFvV7XxTNdpQSvu (change) 78e59d3092bb97517fcaab5a2b861682a19e7090eedba55c5517eb0c15f8ee4d @1 (3994)

max spendable ~0.0372191
★ using mutation 'send OP_RETURN transaction'
→ TO Horizen 2: 0 ZEN (762ops) (zndrXaPqKuG4aLhzfJeK1f7zzxJt3nM9KWk on 44'/121'/1'/0/368) #1 js:2:zencash:xpub6D68gNRhhkMnMojN5234jsEj91uTD6UZpgYN79cfirvA3G3j3KNnLfT9hSJ37VWSYW1ceqid4Yng9XQxFBpgU7sDLK9kbe3mDJjtkuKaurM:
✔️ transaction 
SEND 0.01 ZEN
TO zndrXaPqKuG4aLhzfJeK1f7zzxJt3nM9KWk
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (284ms)
TX INPUTS (1):
0.0194042    znjGLPpCFA4UqLa67TLT28KQxVT7jhHyxJJ d7e1cc78b8f70200ffb6cfffe9e5a68eec13a2c839aa0934304f610efb992155@0
TX OUTPUTS (3):
0.01         zndrXaPqKuG4aLhzfJeK1f7zzxJt3nM9KWk @0 (0)
0            @1 (0)
0.00939764   znWAs6fovBhn3AYpag1ZDTaGFzsj4jrUcsu (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.00000664 ZEN
  total spent: 0.01000664 ZEN
errors: 
errors: 
✔️ has been signed! (11.2s) {"operation":{"id":"js:2:zencash:xpub6D68gNRhhkMnRRjTNz1TfbaUGs7AMGewZN8bhdZG3dVTgE5mNSHJW5A5PJv3vdwAHhP4wVsSBFHPcWqxg549ZNm9ho2JbM7zqRUB7cyXLiT:--OUT","hash":"","type":"OUT","senders":["znjGLPpCFA4UqLa67TLT28KQxVT7jhHyxJJ"],"recipients":["zndrXaPqKuG4aLhzfJeK1f7zzxJt3nM9KWk"],"accountId":"js:2:zencash:xpub6D68gNRhhkMnRRjTNz1TfbaUGs7AMGewZN8bhdZG3dVTgE5mNSHJW5A5PJv3vdwAHhP4wVsSBFHPcWqxg549ZNm9ho2JbM7zqRUB7cyXLiT:","blockHash":null,"blockHeight":null,"extra":{},"date":"2023-07-24T05:28:59.752Z","value":"1000664","fee":"664"},"signature":"0100000001552199fb0e614f303409aa39c8a213ec8ea6e5e9ffcfb6ff0002f7b878cce1d7000000006a4730440220217c7915ef22301aa6879415aaddd526708998e359a5e4e94b6f6e23acbeaa860220751789dc2cd027afe5cc92ea97573358d1395b5419b98ec21f84aaf9f63116080121022caff25995941a3ea5b3fddfee6e52dd012fc94cf5dc7b119e4803943cb4f730ffffffff0340420f00000000003f76a9148c118463c5e464512b71f024434be35b311a450288ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f766573206865696469f4560e00000000003f76a91437c84b58f83fd86f959726f7e9e966dad4e7978688ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000","expirationDate":null}
⚠️ TEST during broadcast
LedgerAPI4xx: -26: 68: op-checkblockatheight-needed
(totally spent 11.6s – ends at 2023-07-24T05:42:16.913Z)
necessary accounts resynced in 1324ms
▬ Crypto.orgChain 2.16.7 on nanoS 2.1.0
→ FROM Crypto.org 3: 0.290709 CRO (20ops) (cro1fdhfs842ue0mt7kjw48pacat6d8q8j5gazn8zd on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1fdhfs842ue0mt7kjw48pacat6d8q8j5gazn8zd: (! sum of ops 0.29120933 CRO) 0.29070933 CRO spendable. 

max spendable ~0.290659
★ using mutation 'move 50%'
→ TO Crypto.org 6: 0 CRO (5ops) (cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2 on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2:
✔️ transaction 
SEND  0.14535467 CRO
TO cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2
STATUS (0.46ms)
  amount: 0.14535467 CRO
  estimated fees: 0.00005 CRO
  total spent: 0.14540467 CRO
errors: 
errors: 
⚠️ TEST deviceAction confirm step 'To'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "To": "cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2",
+   "To": "cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2",
  }
(totally spent 10.2s – ends at 2023-07-24T05:42:16.943Z)
necessary accounts resynced in 2.79ms
▬ BinanceSmartChain 1.10.2 on nanoS 2.1.0
→ FROM Binance Smart Chain 6: 0.0236334 BNB (152ops) (0x414386B517CB75810015c65B2f02218b16c130a4 on 44'/60'/5'/0/0) #5 js:2:bsc:0x414386B517CB75810015c65B2f02218b16c130a4:  TokenAccount FREE coin BSC: 7.22818504725227976 FREE (11 ops)
  TokenAccount Binance-Peg BSC-USD: 0 BSC-USD (6 ops)
max spendable ~0.02357
★ using mutation 'send max'
→ TO Binance Smart Chain 2: 0.00281971 BNB (134ops) (0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0:
✔️ transaction 
SEND MAX
TO 0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0
with gasPrice=0
with gasLimit=21000
STATUS (409ms)
  amount: 0.023570031383777713 BNB
  estimated fees: 0.00006342 BNB
  total spent: 0.023633451383777713 BNB
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 7.4s – ends at 2023-07-24T05:42:16.956Z)
necessary accounts resynced in 0.14ms
▬ Polygon 1.10.2 on nanoS 2.1.0
→ FROM Polygon 2: 0.774503 MATIC (133ops) (0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0 on 44'/60'/1'/0/0) #1 js:2:polygon:0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0:
NFT Collections (1) 
�[1mUnknown Collection Name�[22m (�[35m0x50a289670273FFbD841beBc3a515DD968d65971A�[37m): 
  1x �[36m#324994�[37m
max spendable ~0.772319
★ using mutation 'send max'
→ TO Polygon 8: 13.3116 MATIC (55ops) (0xC16D418BD9eA367847CCfbC696666c96BEa02781 on 44'/60'/7'/0/0) #7 js:2:polygon:0xC16D418BD9eA367847CCfbC696666c96BEa02781:
✔️ transaction 
SEND MAX
TO 0xC16D418BD9eA367847CCfbC696666c96BEa02781
with maxFeePerGas=0.0000001
with maxPriorityFeePerGas=0.0000001
with gasLimit=21000
STATUS (561ms)
  amount: 0.772319719414391917 MATIC
  estimated fees: 0.002184 MATIC
  total spent: 0.774503719414391917 MATIC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 6.2s – ends at 2023-07-24T05:42:16.977Z)
necessary accounts resynced in 0.24ms
▬ Polygon 1.10.2 on nanoS 2.1.0
→ FROM Polygon 3: 2.32383 MATIC (98ops) (0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6 on 44'/60'/2'/0/0) #2 js:2:polygon:0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6:
NFT Collections (1) 
�[1mUnknown Collection Name�[22m (�[35m0x50a289670273FFbD841beBc3a515DD968d65971A�[37m): 
  1x �[36m#353349�[37m
max spendable ~2.32163
★ using mutation 'move 50%'
→ TO Polygon 7: 5.51823 MATIC (56ops) (0xAa744AB24B2381240327765D0198a19287B6003A on 44'/60'/6'/0/0) #6 js:2:polygon:0xAa744AB24B2381240327765D0198a19287B6003A:
✔️ transaction 
SEND 1.160818454121587876 MATIC
TO 0xAa744AB24B2381240327765D0198a19287B6003A
with maxFeePerGas=0.0000001
with maxPriorityFeePerGas=0.0000001
with gasLimit=21000
STATUS (311ms)
  amount: 1.160818454121587876 MATIC
  estimated fees: 0.0021945 MATIC
  total spent: 1.163012954121587876 MATIC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 6.6s – ends at 2023-07-24T05:42:16.989Z)
necessary accounts resynced in 0.24ms
▬ Polygon 1.10.2 on nanoS 2.1.0
→ FROM Polygon 5: 0.778365 MATIC (93ops) (0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1 on 44'/60'/4'/0/0) #4 js:2:polygon:0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1:
max spendable ~0.776171
★ using mutation 'move 50%'
→ TO Polygon 6: 0 MATIC (75ops) (0x414386B517CB75810015c65B2f02218b16c130a4 on 44'/60'/5'/0/0) #5 js:2:polygon:0x414386B517CB75810015c65B2f02218b16c130a4:
✔️ transaction 
SEND 0.388085640740710349 MATIC
TO 0x414386B517CB75810015c65B2f02218b16c130a4
with maxFeePerGas=0.0000001
with maxPriorityFeePerGas=0.0000001
with gasLimit=21000
STATUS (344ms)
  amount: 0.388085640740710349 MATIC
  estimated fees: 0.0021945 MATIC
  total spent: 0.390280140740710349 MATIC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 6.6s – ends at 2023-07-24T05:42:16.991Z)
necessary accounts resynced in 0.12ms
▬ EthereumClassic 1.10.2 on nanoS 2.1.0
→ FROM Ethereum Classic 1 cross: 0.243028 ETC (199ops) (0xFEe4aF74cec36821814b5d6091680280A7f9fd3A on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0xFEe4aF74cec36821814b5d6091680280A7f9fd3A:
max spendable ~0.243002
★ using mutation 'move 50%'
→ TO Ethereum Classic 3: 0.0772214 ETC (596ops) (0x4a2b99d77a5a54d870A89c4b1C037518e3b63107 on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x4a2b99d77a5a54d870A89c4b1C037518e3b63107:
✔️ transaction 
SEND 0.121501016635734787 ETC
TO 0x4a2b99d77a5a54d870A89c4b1C037518e3b63107
with gasPrice=1.25
with gasLimit=21000
STATUS (264ms)
  amount: 0.121501016635734787 ETC
  estimated fees: 0.00002625 ETC
  total spent: 0.121527266635734787 ETC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 5.8s – ends at 2023-07-24T05:42:16.993Z)
necessary accounts resynced in 0.35ms
▬ EthereumClassic 1.10.2 on nanoS 2.1.0
→ FROM Ethereum Classic 2: 0.104517 ETC (581ops) (0x7020e1A91a02c85C0E2aE13b0315E61f74CCeDdA on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x7020e1A91a02c85C0E2aE13b0315E61f74CCeDdA:
max spendable ~0.10449
★ using mutation 'move 50%'
→ TO Ethereum Classic 1 cross: 0.243028 ETC (199ops) (0xFEe4aF74cec36821814b5d6091680280A7f9fd3A on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0xFEe4aF74cec36821814b5d6091680280A7f9fd3A:
✔️ transaction 
SEND 0.05224543726941002 ETC
TO 0xFEe4aF74cec36821814b5d6091680280A7f9fd3A
with gasPrice=1.25
with gasLimit=21000
STATUS (290ms)
  amount: 0.05224543726941002 ETC
  estimated fees: 0.00002625 ETC
  total spent: 0.05227168726941002 ETC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 6.6s – ends at 2023-07-24T05:42:17.000Z)
necessary accounts resynced in 0.22ms
▬ EthereumClassic 1.10.2 on nanoS 2.1.0
→ FROM Ethereum Classic 3: 0.0772214 ETC (596ops) (0x4a2b99d77a5a54d870A89c4b1C037518e3b63107 on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x4a2b99d77a5a54d870A89c4b1C037518e3b63107:
max spendable ~0.077195
★ using mutation 'send max'
→ TO Ethereum Classic 1 cross: 0.243028 ETC (199ops) (0xFEe4aF74cec36821814b5d6091680280A7f9fd3A on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0xFEe4aF74cec36821814b5d6091680280A7f9fd3A:
✔️ transaction 
SEND MAX
TO 0xFEe4aF74cec36821814b5d6091680280A7f9fd3A
with gasPrice=1.26
with gasLimit=21000
STATUS (327ms)
  amount: 0.077195002846731025 ETC
  estimated fees: 0.00002646 ETC
  total spent: 0.077221462846731025 ETC
errors: 
errors: 
⚠️ TypeError: Cannot add property nonce, object is not extensible
(totally spent 6.2s – ends at 2023-07-24T05:42:17.012Z)
necessary accounts resynced in 1710ms
▬ NEAR 1.2.1 on nanoS 2.1.0
→ FROM NEAR 6: 0.125814 NEAR (5ops) (faaabc0cc8c6e4d1bc67dc0155b3594d912e5c53cdadcbea4d9c00a87a4eb112 on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:faaabc0cc8c6e4d1bc67dc0155b3594d912e5c53cdadcbea4d9c00a87a4eb112:nearbip44h 
    Full Balance: 1.2581491301259327769e+23
    Staked Balance: 0
    Pending Balance: 0
    Withdrawable Balance: 0
    Storage Usage Balance: 5.182e+22

max spendable ~0.0731599
★ using mutation 'Stake'
✔️ transaction 
STAKE  0.00008250622902114189 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (1190ms)
  amount: 0.00008250622902114189 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.00158250622902114189 NEAR
errors: 
errors: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (346ms) optimistic operation: 
  -0.0015 NEAR       STAKE      Ex33VvjsA58yofwfQegd5bEhSRvV9xK4akEj3axgjpw3 2023-07-24T05:33
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:near:faaabc0cc8c6e4d1bc67dc0155b3594d912e5c53cdadcbea4d9c00a87a4eb112:nearbip44h-Ex33VvjsA58yofwfQegd5bEhSRvV9xK4akEj3axgjpw3-STAKE
(totally spent 2min 7s – ends at 2023-07-24T05:42:17.013Z)
necessary accounts resynced in 0.67ms
▬ TezosWallet 2.3.2 on nanoS 2.1.0
→ FROM Tezos 9: 0.576456 XTZ (67ops) (tz1ezgtcfyB5NHDq1QMbdBy5aDbEw6WD6FMS on 44'/1729'/8'/0') tezbox#8 js:2:tezos:028bec289d5f0dc6f31d05756d163899f80a175a869546dbacb661c8f4e75d8c19:tezbox
max spendable ~0.576003
★ using mutation 'delegate revealed'
✔️ transaction 
DELEGATE 0 XTZ
TO tz1V4qCyvPKZ5UeqdH14HN42rxvNPQfc9UZg
with fees=0.000313
with gasLimit=269
with storageLimit=0
(estimatedFees 0.000313)
STATUS (791ms)
  amount: 0 XTZ
  estimated fees: 0.000313 XTZ
  total spent: 0.000313 XTZ
errors: 
errors: 
✔️ has been signed! (17.3s) 
✔️ broadcasted! (85ms) optimistic operation: 
  -0 XTZ             DELEGATE   op5E7oVvyoDuSmQP8LCaLPwCs5u6azqGdfzgNkXwZ6qKpBEoJRU 2023-07-24T05:32
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:tezos:028bec289d5f0dc6f31d05756d163899f80a175a869546dbacb661c8f4e75d8c19:tezbox-op5E7oVvyoDuSmQP8LCaLPwCs5u6azqGdfzgNkXwZ6qKpBEoJRU-DELEGATE
(totally spent 2min 18s – ends at 2023-07-24T05:42:17.015Z)
necessary accounts resynced in 0.16ms
▬ Polkadot 20.9370.1 on nanoSP 1.1.0
→ FROM Polkadot 3: 1.93293 DOT (33ops) (13eYWacaQh2G6XZ3pxhGGPr6LtpiNVKDgVoYFNZuRBXenEf8 on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:13eYWacaQh2G6XZ3pxhGGPr6LtpiNVKDgVoYFNZuRBXenEf8:polkadotbip44 1.9329301718 DOT spendable. 

max spendable ~1.91718
★ using mutation 'send 50%~'
→ TO Polkadot 1 cross: 1 DOT (34ops) (12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s:polkadotbip44
✔️ transaction 
SEND  0.4656305693 DOT
TO 12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s
STATUS (231ms)
  amount: 0.4656305693 DOT
  estimated fees: 0.0157462163 DOT
  total spent: 0.4813767856 DOT
errors: 
errors: 
⚠️ TransportError: Txn version not supported
(totally spent 374ms – ends at 2023-07-24T05:42:17.016Z)
⚠️ 61 spec hints
  • Spec Bitcoin Gold:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Komodo:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec Peercoin:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
    • mutations should NOT define a testDestination() because there are no 'destination' sibling account found: send OP_RETURN transaction, send max
  • Spec Qtum:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Viacoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec Horizen:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec Decred:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec cardano:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 10 accounts
  • Spec axelar:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec cosmos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec osmosis:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec desmos:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec umee:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec persistence:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec quicksilver:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec onomy:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec secret_network:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec stargaze:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): send max, move 50%
  • Spec Elrond:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec Avalanche C-Chain:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 3 accounts
  • Spec BSC:
    • mutations should define a test(): move some BEP20
  • Spec Polygon:
    • mutations should define a test(): move some ERC20
  • Spec Filecoin:
    • mutations should define a test(): Send 50%~, Transfer Max
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 3 accounts
  • Spec Hedera:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec InternetComputer:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 3 accounts
  • Spec NEAR:
    • mutations should define a testDestination(): Move 50% to another account, Send max to another account
    • mutation Send max to another account: unexpected status.warnings.amount = NearRecommendUnstake: NearRecommendUnstake – Please implement expectStatusWarnings on the mutation if expected
  • Spec XRP:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 2 accounts
  • Spec Solana:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 9 accounts
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max
  • Spec Stellar:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 5 accounts
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed, send max (non delegating), delegate unrevealed, delegate revealed, undelegate unrevealed, undelegate revealed
  • Spec Tron:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 7 accounts
  • Spec Algorand:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 6 accounts
  • Spec Ethereum EVM (TEST ONLY DO NOT USE):
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Arbitrum Goerli:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Fantom:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Flare:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Songbird:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Moonbeam:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec RSK:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Bittorent Chain:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Kava EVM:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Evmos EVM:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec OP Mainnet:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Optimism Goerli:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Energy Web:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Astar:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Metis:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Boba:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Moonriver:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Velas EVM:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
  • Spec Syscoin:
    • There are not enough accounts to cover all mutations. Please increase the account target to at least 4 accounts
Portfolio ($126.49) – Details of the 71 currencies
Spec (accounts) State Remaining Runs (est) funds?
Bitcoin (8) 131 ops , 0.0002662 BTC ($7.93) ⚠️ bc1qe348n4czfyd83jflnzk0eqtazh39wves2zy0x6
Bitcoin Testnet (11) 186 ops , 0.00029919 𝚝BTC ($0.00) ⚠️ tb1qufuqle89w3z4mvzrht4wf7a8ppl3tzuaxp722u
Bitcoin Cash (7) 2429 ops , 0.00052955 BCH ($0.12) ⚠️ 6 qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2
Bitcoin Gold (6) 2835 ops (+6), 0.380041 BTG ($5.41) 💪 999+ AXUw5uEotH7CziN18hymZgCp9dFo7Zm2EZ
Dash (7) 3318 ops (+10), 0.0263007 DASH ($0.88) 💪 664 XuGJqAd1T33iX86yptj7r89uzgA1PiaP8E
Digibyte (9) 3467 ops (+6), 191.893 DGB ($1.54) 💪 999+ dgb1qs5rm64ctcw4w7j8u2qad9fqq6g56r96ydmmus0
DogeCoin (7) 3435 ops (+10), 314.066 DOGE ($22.40) 💪 559 D6kfnDM1sPkMAztKPEyjuMGyq8N8BUUnx2
Komodo (5) 1911 ops (+4), 7.25426 KMD ($1.76) 💪 999+ RVmyg1V2Xbf3fEsEFA9sntjyzZ5ByNxKZk
Litecoin (9) 2749 ops (+8), 0.0311041 LTC ($2.87) 💪 899 ltc1q33qgvxc3mc2jm4rtp3zn2jqhd7mvrmmhzj23c9
Peercoin (5) 2411 ops , 0.021853 PPC ($0.00) ⚠️ PDPyJnGHyzGph4dscqcJa32RcbaKdvZp2U
PivX (5) 2274 ops , 34.2757 PIVX ($7.56) 💪 999+ DQNPL9H6cEA8DAhWQVjeQbH6j8SzSdZaX1
Qtum (6) 1863 ops , 0.00425761 QTUM ($0.01) ⚠️ 0 MVYo3tWmufMkw8y12XoyFbx4dSyKYt5p94
Vertcoin (7) 3413 ops (+8), 25.0337 VTC ($2.48) 💪 999+ 3EHkDS1K3FMVTzjGtbD3ye6fvn5SvKbaKk
Viacoin (6) 1645 ops (+4), 20.908 VIA ($0.65) 💪 999+ EPQHzKrJ6aBzTQ58K5kYUC2Zdx26bQFm94
ZCash (5) 1423 ops , 0.00042601 ZEC ($0.01) ⚠️ t1W1vCEVTr16Tw1J6qV9M89dUbrfRsNUwAH
Horizen (5) 2525 ops (+4), 0.332972 ZEN ($3.05) 💪 999+ znoYpKCHyuheQNMsUY3Rx5tg9ZAMvRTy4Kt
Decred (1) 0 ops , 0 DCR ($0.00) DshyFLDNm9kX5EL6DtkATQieLH2ZCL72UUj
cardano (1) 0 ops , 0 ADA ($0.00) addr1qx44x7pr2vw4lphj6prle8grr8wtm03wy7ayege980p505tgkechpadmnf5auk06h4a40dpt7q0jgejf7aetw48fpafsrhwqcp
Celo (1) 0 ops , 0 CELO ($0.00) 0x6F6f438fAB99b03EA2D2De8953f7D0D68d5EE6eb
axelar (1) 0 ops , 0 AXL ($0.00) axelar1jlnel2cvw2cvtmdgsjku894grsqx0pmrtkvqju
cosmos (12) 116 ops , 0.065775 ATOM ($0.59) ⚠️ 0 cosmos1jlnel2cvw2cvtmdgsjku894grsqx0pmr0c6gea
osmosis (1) 0 ops , 0 OSMO ($0.00) osmo1jlnel2cvw2cvtmdgsjku894grsqx0pmr8rfc00
desmos (1) 0 ops , 0 DSM ($0.00) desmos1jlnel2cvw2cvtmdgsjku894grsqx0pmrmqhcw9
umee (1) 0 ops , 0 UMEE ($0.00) umee1jlnel2cvw2cvtmdgsjku894grsqx0pmraw8ha0
persistence (1) 0 ops , 0 XPRT ($0.00) persistence1jlnel2cvw2cvtmdgsjku894grsqx0pmrp5umhe
quicksilver (1) 0 ops , 0 QCK ($0.00) quick1jlnel2cvw2cvtmdgsjku894grsqx0pmryu26q0
onomy (1) 0 ops , 0 NOM ($0.00) onomy1jlnel2cvw2cvtmdgsjku894grsqx0pmr4ew7gc
secret_network (1) 0 ops , 0 SCRT ($0.00) secret1jlnel2cvw2cvtmdgsjku894grsqx0pmrdawpyp
stargaze (1) 0 ops , 0 STARS ($0.00) stars1jlnel2cvw2cvtmdgsjku894grsqx0pmrmyd4jv
Crypto org (7) 105 ops (+6), 1.99755 CRO ($0.12) 💪 999+ cro1fh9txz05mrzn3nxdmgxy6h5qpcz7052lchp3dr
Elrond (1) 0 ops , 0 EGLD ($0.00) erd1n5metst07zm8xggcjnwl8wn4efkwwqd8mzv3dgfqpmns9ygl54ssxmdhcn
Avalanche C-Chain (1) 0 ops , 0 AVAX ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
BSC (10) 1270 ops , 0.0472199 BNB ($11.44) ⚠️ 37 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Polygon (10) 744 ops , 32.8472 MATIC ($24.40) 💪 999+ 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Ethereum (0) 0 ops , 🤷‍♂️ ($0.00) ``
Ethereum Classic (6) 2345 ops , 0.617869 ETC ($11.45) 💪 999+ 0xFEe4aF74cec36821814b5d6091680280A7f9fd3A
Ethereum Goerli (0) 0 ops , 🤷‍♂️ ($0.00) ``
Filecoin (1) 0 ops , 0 FIL ($0.00) f1qrt2w6szrfudrvi43eo3miqnohnkyk6an2uht7y
Hedera (0) 0 ops , 🤷‍♂️ ($0.00) ``
InternetComputer (1) 0 ops , 0 ICP ($0.00) 31843878363b917be106400b6e62a2aab18dd7ec2ec83cca08fea69e29765882
NEAR (11) 137 ops (+5), 0.456248 NEAR ($1.30) 👍 126 d82bedacbc049a9e17e0779b2be50efd0cdfd6793f69183b04a7e9d2d5e0a8d9
XRP (1) 0 ops , 0 XRP ($0.00) rhAzCNG5Te2rkeXaoZQnGsEw1nt27hQtaF
Solana (1) 0 ops , 0 SOL ($0.00) 8FtxLkGsEHeWHv7Eh5BtZaQEns1YDRDiw3p1zo89VezT
Stacks (4) 31 ops (+2), 4.99748 STX ($3.11) 💪 999+ SP2PYDYYPFVG4GEV62PRC80JX64Y921ZCS9MPTZ0B
Stellar (1) 0 ops , 0 XLM ($0.00) GC65GCJ5GN3MJZO6XEMDBZH5Y2RNWG6I2JXUWIBY3MU52VJUBUASH7HT
Tezos (14) 853 ops , 0.576456 XTZ ($0.49) ⚠️ 3 tz1dYLLvkwLaKi8vCLtKQiWBQGdSfXjMK4id
Tron (1) 0 ops , 0 TRX ($0.00) TMC1WHV2xjXnVs8jbHH7KU42a2KrQ2Nr2z
Algorand (1) 0 ops , 0 ALGO ($0.00) 7UDPUKCKC3HPGNHUNQPMBZPM3OKTTUK7B3RCXRGMX7XLH54XO3COZI3JPY
Ethereum EVM (TEST ONLY DO NOT USE) (1) 0 ops , 0 ETH ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Polygon EVM (TEST ONLY DO NOT USE) (0) 0 ops , 🤷‍♂️ ``
Arbitrum Goerli (1) 0 ops , 0 𝚝ETH ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Cronos (5) 371 ops (+6), 21.2883 CRO ($1.26) 👍 51 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Fantom (1) 0 ops , 0 FTM ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Flare (1) 0 ops , 0 FLR ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Songbird (1) 0 ops , 0 SGB ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Moonbeam (1) 0 ops , 0 GLMR ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
RSK (1) 0 ops , 0 RBTC ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Bittorent Chain (1) 0 ops , 0 BTT ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Kava EVM (1) 0 ops , 0 KAVA ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Evmos EVM (1) 0 ops , 0 EVMOS ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
OP Mainnet (1) 0 ops , 0 ETH ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Optimism Goerli (1) 0 ops , 0 𝚝ETH ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Energy Web (1) 0 ops , 0 EWT ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Astar (1) 0 ops , 0 ASTR ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Metis (1) 0 ops , 0 METIS ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Boba (1) 0 ops , 0 ETH ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Moonriver (1) 0 ops , 0 MOVR ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Velas EVM (1) 0 ops , 0 VLX ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Syscoin (1) 0 ops , 0 SYS ($0.00) 0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D
Telos (0) 0 ops , 🤷‍♂️ ``
Polkadot (8) 137 ops , 2.93293 DOT ($15.66) ⚠️ 15 12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s
Bitcoin 1 cross [native segwit]: 0 BTC (23ops) (bc1qe348n4czfyd83jflnzk0eqtazh39wves2zy0x6 on 84'/0'/0'/0/12) native_segwit#0 js:2:bitcoin:xpub6D1KvVxAfT1obxiWidB8H7gjQsALwezt4i4CknRsQ7UhCytJw4ZChkrKrdLFjEmA89epjLN5sSeM916shcWbYmSA9cdYjkCx9BzeyJr5yC9:native_segwit
Bitcoin 2 [native segwit]: 0 BTC (0ops) (bc1qvvyatnmk4axpwynkdpns7nvuvkyh3leqw9fppn on 84'/0'/1'/0/0) native_segwit#1 js:2:bitcoin:xpub6D1KvVxAfT1ocau5jULjVg1k8uXUztvYHPt3wEzb6aaeEUmyRLn4875nvEZ4Q8StrWyd77z5Djg1nDreGGePyYoWEdewCtWwCvHTDc3wh4r:native_segwit
Bitcoin 1 [taproot]: 0.00007372 BTC (32ops) (bc1p29kxr23g8dmwvsru36cytgn8jcwwg9f4e00f5ye40yg2e3uah39q92sndn on 86'/0'/0'/0/15) taproot#0 js:2:bitcoin:xpub6CpVNNtMuso7a7uGEgnyarz2thfdhS7zDEg2Kk6br9a9gqi2Nz3kzwoEehSA3u3G3EUaqnUvqt5a3kHFz5x9NGxfm4rQ2Y5rkD4Pqe8hi76:taproot
Bitcoin 2 [taproot]: 0 BTC (0ops) (bc1pyf38dyk4ex3h74j9cjqdqehajgty8ms9r7mu3gpe2h59fdgn43wqrswf4v on 86'/0'/1'/0/0) taproot#1 js:2:bitcoin:xpub6CpVNNtMuso7cMDaMd7u6qpBRcBYoEC3hvEyX7ussAfhJmDmxWhCEX23PRGuFvQBMFQHa1EN8xRsVTGwcJoJFsi4xNDMiJzvvyhs9ykW3rx:taproot
Bitcoin 1 [segwit]: 0.00008431 BTC (34ops) (3HqhJYEUmZq9xfzKuiV8eztFKnHH1a9sbB on 49'/0'/0'/0/17) segwit#0 js:2:bitcoin:xpub6CeCxZztT8Pese7WMee5LeiyGj18DmtUstyRHGZj9Wk11kVsDgrv6Mn4eepsnVBTMipQVGsNZyKbf4aurMejMBc9LoYiBetnFAdE7egTZeY:segwit
Bitcoin 2 [segwit]: 0 BTC (0ops) (32QgcczS2wes5YMmGHeXbwQmYkYp8f3NCS on 49'/0'/1'/0/0) segwit#1 js:2:bitcoin:xpub6CeCxZztT8PevCnvn4u4A4Dcwd1ZnmCfsAGT8eodP1L2XHDo4wkJ5jBMYDyk9UHUHfigjofRZCuNR1QXB5amioXTSkn4zbqHtc2EWJLS1wE:segwit
Bitcoin 1 [legacy]: 0.00010817 BTC (42ops) (1GFv1e5foq5tdFZVCM2MbxZjR1i62cvrJR on 44'/0'/0'/0/22) #0 js:2:bitcoin:xpub6CVpmkmcXf2wBBMjbM76qKwQB1hsDXu4BwD8tRiMeHgRHgXS6RBJNftwudesrbnuRK9B1TCFKXnGDKGd46Xr6v3N6wCJ2xusHQAoG3jqJEN:
Bitcoin 2 [legacy]: 0 BTC (0ops) (1JQAJ4qfvTkC4S5CyCAbDkyQT5gdkc6QoT on 44'/0'/1'/0/0) #1 js:2:bitcoin:xpub6CVpmkmcXf2wDKHR2KGgNCLkLCMc9iuX7F915U9VeBhnKVv73qPwJEmxRM9Z2hhid5E9rFV8Z5zUZPJx8iq9u3usExXNFySDhLtCqyKeMYH:
Bitcoin Testnet 1 cross [native segwit]: 0 𝚝BTC (7ops) (tb1qufuqle89w3z4mvzrht4wf7a8ppl3tzuaxp722u on 84'/1'/0'/0/1) native_segwit#0 js:2:bitcoin_testnet:tpubDDomkBNX72rWKDCk8kKvi5qutBtTFHx28SXKsMP3WhdKvZdPdpDWZawne1V5YAHw2DxHpZtEGFzSVCMZtLsMD5BuK6TfzCTi1fsoi4Wuunp:native_segwit
Bitcoin Testnet 2 [native segwit]: 0.0000359 𝚝BTC (1ops) (tb1qlfl473jddmx3xxt7rkvqn0lzu98rx3aa7df2k2 on 84'/1'/1'/0/1) native_segwit#1 js:2:bitcoin_testnet:tpubDDomkBNX72rWPDFAtpbzLqgBu5MAAK2VVMDnKShDYWWQsxfQTPCrBxdqPWF7kZBhmdyCzhFNU6Ga1BgmSNXKQH6wRLDTrH7CNHU3k5Jv5wP:native_segwit
Bitcoin Testnet 3 [native segwit]: 0 𝚝BTC (0ops) (tb1qpn0q252p4znehuvzkc0gtf7klky5zyryewq9zt on 84'/1'/2'/0/0) native_segwit#2 js:2:bitcoin_testnet:tpubDDomkBNX72rWSAUosu8sgURdo5wGWDnCLByqwYSW8as7QEnzu7KG2GruWapTEqFvEC6c6tMxckh3mQftE2CdnZfnVj6ouHiWARVDtdR3xKZ:native_segwit
Bitcoin Testnet 1 [taproot]: 0 𝚝BTC (44ops) (tb1p6u6rdag39nq49msnkg2atwnr2e7gy3g944d29m2q2w4qe3kkcc7q9gvfwn on 86'/1'/0'/0/20) taproot#0 js:2:bitcoin_testnet:tpubDDF1QEVShhZBxEj3Sk2P4i97ewEscMiongLkkBp8jvYUwX2sLi7HPi7FFbzafpMTnAkxRJGXhBou8GMvJRBVxG5Txnxbtf8wDjn5yVFBhxh:taproot
Bitcoin Testnet 2 [taproot]: 0 𝚝BTC (0ops) (tb1pyn8s2s40m5mg26qhljm8yv6hx3g7nd5ed8qe3uuf6yw5mtl86qsq05sw5r on 86'/1'/1'/0/0) taproot#1 js:2:bitcoin_testnet:tpubDDF1QEVShhZC1RkZJnd8CKkqPBDdLbvKjgLS23iJhtAPy4VWmnaGmPZoACKguHgQ6yYTr6yYZD2CTEVsbGP9MkwqmrjuQ6kPiB7HXxMqhTZ:taproot
Bitcoin Testnet 1 [segwit]: 0.00007845 𝚝BTC (36ops) (2MyCjxEpA3ZWtehf8uyzXeL3gYcpKb4pccX on 49'/1'/0'/0/19) segwit#0 js:2:bitcoin_testnet:tpubDDfHXRB6q9aw9ZfcSwKRS5G7GB7H6H8rWht8o1qrHqiEwgx8W3PFMitpiH2AxHW3NcRnqUfyLFU96yegoMbKdpZN2eNG1JR6kSc3GpAdA57:segwit
Bitcoin Testnet 2 [segwit]: 0.00008596 𝚝BTC (28ops) (2MxXogruRBqxupewczT2Su4gnBPbQpyVyGT on 49'/1'/1'/0/14) segwit#1 js:2:bitcoin_testnet:tpubDDfHXRB6q9awDhxckL4QvyaiRLhtArnZvBTToSBTJGdYvP74wR8rYc1njhs7LPVSRGQDfXf7tbaCtXcN4ni5jsKVZiTs4a1B6kKgoRyVaAr:segwit
Bitcoin Testnet 3 [segwit]: 0 𝚝BTC (0ops) (2MseedAERXfHz9z3sgssezUrKGx8vnJar67 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDDfHXRB6q9awGGqvGpNxpHTSUi4jSoQymT1sKb2aJWcgBzWEjcRGuPzwmmpLj6s1yFRRd59XySQqvQeHN4ruauYdrRvX7wyeWRK3BCiSs83:segwit
Bitcoin Testnet 1 [legacy]: 0 𝚝BTC (35ops) (n4PVXZt82d9jUXRS8A7PFUvd9fnAXGGdvG on 44'/1'/0'/0/18) #0 js:2:bitcoin_testnet:tpubDDuBVGyTMiGy1hmADjq6wUuDD29SpMnqtLoSschGJtmC9rk8oE6RGSbZTnAMc9VNjxiYtsVCFabHF9SzqxSofQ9yUBxMdAk7kNo4ZHAERMe:
Bitcoin Testnet 2 [legacy]: 0.00009888 𝚝BTC (35ops) (mipfR1fDaS8iDQ92ii9E9eFYXdngUBJtmK on 44'/1'/1'/0/18) #1 js:2:bitcoin_testnet:tpubDDuBVGyTMiGy4R9XgTeFvVDvASpiLbqNhYoEmUrndasFxXsoxbCNRjSTW7thxNXdCfgdReMtsLqCRkRfT2XVLEgjKov7qUYKxXbW49ya2vU:
Bitcoin Testnet 3 cross [legacy]: 0 𝚝BTC (0ops) (mmzC1LhEuWaabX5217fnQR7iDLQWy2Ptj8 on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDDuBVGyTMiGy65WydKvgNdHY6Yk5e4ZJFDSREvSXiS6NhxybLQnLBgbTNQceo43gFejrxZgw8FR7AJm3SwSE7To4MfucWPCpJqZctNUAcyw:
Bitcoin Cash 1 cross: 0 BCH (29ops) (qzn85g7msq5rj2eu73dqhkez4dmwn2q6vuhpm8pdx2 on 44'/145'/0'/0/13) #0 js:2:bitcoin_cash:xpub6DFQK1AuijTDwDFN6ktbu9RTTMpPTPdc3u2gVf734hgSq8zMEjNVUR4Ehr4VouBXxBZ31u3EhybKJ3Z88H1HgViEfspABidzNpMDYZh9Vhy:
Bitcoin Cash 2: 0.00029643 BCH (514ops) (qpj3c38fw0ec7hg627etsr4ujyc769ht5u56w2663x on 44'/145'/1'/0/255) #1 js:2:bitcoin_cash:xpub6DFQK1AuijTDzqA37sfBGypdSSNU7LAX21TNs2Jp94oP79orDBeD4QCmCKDZ1FWmFY8SgRbqVNpSNJ1VboRBta6jS3mtxGkTvvFm7777sof:
Bitcoin Cash 3: 0.00005473 BCH (485ops) (bitcoincash:qql7u2gfww46y4tgarjq9nxwm5998c534sf2334kvf on 44'/145'/2'/0/234) #2 js:2:bitcoin_cash:xpub6DFQK1AuijTE2WiLVd2h5xUuqD3S1pvoLttBHt5LgQEZq1GUvzTaJWDrr7ZYK39LMoipJxbSRNuwrUEorj6um2oyutQRYCAVZWatoXrpUSB:
Bitcoin Cash 4: 0.00008945 BCH (473ops) (bitcoincash:qqnql4ekfw5m6smzzn7w6l45d4rndqyxxg7xeh337w on 44'/145'/3'/0/232) #3 js:2:bitcoin_cash:xpub6DFQK1AuijTE4f2V3tP1WgEbv8Ps8HiMjte433xToE67n85GasECNTFJ5MD58JRTvnPchBykphzJDovoCD5298xa4PVh3kaTEG2H2mJUFGL:
Bitcoin Cash 5: 0 BCH (464ops) (bitcoincash:qru9s3gkx0gz57jzwml4zuyy2at683tu7gaxpv3v42 on 44'/145'/4'/0/210) #4 js:2:bitcoin_cash:xpub6DFQK1AuijTE89TSGsQEWzyP4M9YFoKC1ABmbjBJUCw7qatUsGAFrYA56GV5qvsdGnFX3FMZK2ZSGBB1KP8G9sKP7P3guYcQxrTyM4wNftM:
Bitcoin Cash 6: 0.00008894 BCH (464ops) (bitcoincash:qpwas0ezn25s55hgpde9euu6n3lt5nqvrcksp0x0lj on 44'/145'/5'/0/243) #5 js:2:bitcoin_cash:xpub6DFQK1AuijTEAHSVGbzgh7c18rUfWXd8euc3fgYkC9BnbMyFLpNPYuSyPsfqmMbj9iTonGVc3rG7vmsjRzR68nFpyL5DY2mdbfM3GwfHUTU:
Bitcoin Cash 7: 0 BCH (0ops) (bitcoincash:qqj9meswch802cc4wpwqfmhrc8v5lfml5ggjat0hr4 on 44'/145'/6'/0/0) #6 js:2:bitcoin_cash:xpub6DFQK1AuijTEDHxd8vf9UpbjLWKD2tNMhw8hdnwSUVUhw98bQSNSLwcK3civDGmkFEehL5sAr4xBpCNoaLF1zaStuQkTrWKkWC2zZMKLoB9:
Bitcoin Gold 1 cross [segwit]: 0.00015 BTG (247ops) (AXUw5uEotH7CziN18hymZgCp9dFo7Zm2EZ on 49'/156'/0'/0/114) segwit#0 js:2:bitcoin_gold:xpub6Ck6YUCMuFGVk9RxDQkzCSPUGpq67BiBMN3oqkRTtqWS3FHSeTrSvBdQE83JiyWPv6VaCEd97pY6TgXhyFh65FYozASSYkggC4XWgpRrfVM:segwit
Bitcoin Gold 2 [segwit]: 0 BTG (895ops) (AaE1LbNV5qWMfkccD1wYZeawcUZQnTxjKz on 49'/156'/1'/0/457) segwit#1 js:2:bitcoin_gold:xpub6Ck6YUCMuFGVnhByzPxNmRpkixGnfPY6gfAFSuYiMemWNVSz81pTrm3TGXZVpQUEKFe1LcCFjb2MewdscV363tTwhVNVzEPsV4nymXYcvaP:segwit
Bitcoin Gold 3 [segwit]: 0.210118 BTG (845ops) (ATwpwKQ21o3ogWrD1GBkKb3uKBeEPYpiej on 49'/156'/2'/0/417) segwit#2 js:2:bitcoin_gold:xpub6Ck6YUCMuFGVqQn62jaYqLi3jasNc5WRGZqvh7DLSJssoy7bN2QZsfqDW7PvKLSTmZCunBfSsLbkoCGYpwi7G4cy6sjnaqna1iVtvz14ggK:segwit
Bitcoin Gold 4 [segwit]: 0.169696 BTG (848ops) (ARbbr1L5teBz4ps3Ea3ksg5aYBESoLdQ8b on 49'/156'/3'/0/430) segwit#3 js:2:bitcoin_gold:xpub6Ck6YUCMuFGVrjP7sY6Csg3qZgkWKtWp6Vtuno47uYqjnmj2wCDScCptoeDwux5WxnGhW4kMgdpTrk9Yv8pvs3PTCi7S4hFzw9PmG9p7kk5:segwit
Bitcoin Gold 5 [segwit]: 0 BTG (0ops) (AJVreU1t4ZMr13X4CoTrkpa8VuG1zp3T8z on 49'/156'/4'/0/0) segwit#4 js:2:bitcoin_gold:xpub6Ck6YUCMuFGVtUQajf5nAJTdSKr8kfZRCahNg1QF6CbQuWdpjoWvQJdJrJ4oaXrjY78mGLBxs838DWJNgpR1yas2TjZU9LKw8zcgEhEpoa6:segwit
Bitcoin Gold 1 [legacy]: 0 BTG (0ops) (GUVR3cmfWv1EHhbacg5s7MVFpPCT6MzSEj on 44'/156'/0'/0/0) #0 js:2:bitcoin_gold:xpub6CuUZDufXEmzXSN7SJwid63VdYohs29uLwghwc33p9iRtSTyiRGch1JYwr5143cn5kqQxZHftarNXZE8DS6nv6uCYG3PNjhpEKpk4xMSqb4:
Dash 1 cross: 0.00020845 DASH (216ops) (XuGJqAd1T33iX86yptj7r89uzgA1PiaP8E on 44'/5'/0'/0/100) #0 js:2:dash:drkvjQc5xgMwMUEN1jmC7xJPJK71RmRE8zAoJSsEwVYh7iYvimQesmX9piKgovMvMKnhSedTuo1ccwGskvt6uVYTkv6TEaqfLFYkjC1KVzT2D1v:
Dash 2: 0.00177381 DASH (618ops) (XvnMawUsJ1bKrzwVQPmtGc7FcaTEYopUN2 on 44'/5'/1'/0/298) #1 js:2:dash:drkvjQc5xgMwMUEN3SxNkji181vqKGYBBTiKb7cS5y88MEq5jUX22eQru63nSqjEnmRF5LMxr6VwjHHwc2RUzs1v9BoD7YrUEx7taZzF42MvtY7:
Dash 3: 0.00109492 DASH (626ops) (XdUNj3ehgkuJX8AzLh8u7PY2Dr23r4ZGZk on 44'/5'/2'/0/305) #2 js:2:dash:drkvjQc5xgMwMUEN6pobJxdtQmDB1me2qnXLYxXXPFkHKkgEAhTiByJr6nnrP5tMthXQWXMcnpPTYFqHQyEZdGuNTQF5YD9yjtmiMUimy3BVgea:
Dash 4: 0.0168561 DASH (629ops) (XwW1GakAWRcJa1Nxhw64s3Yz4XmpVKXF5Y on 44'/5'/3'/0/325) #3 js:2:dash:drkvjQc5xgMwMUEN8Nf1xqVyTMPrFn8CWdgybkWsYNrJFEiHYvGJ7DMHzoBW6U7mk2wyUiQ2g6GpPQZck55DZTBFTC3aiLheABtERQsojf3p6Hj:
Dash 5: 0 DASH (605ops) (XanuW7yFfNbPryZnPk5t1gKfQT3gwdSzLm on 44'/5'/4'/0/297) #4 js:2:dash:drkvjQc5xgMwMUENAi6tWab5SyFEtK6HnUbDEaWMpmM9ANoSDKN7u15tVy6DmQj6kf2ZYww6jynU2TJBSKArQ7D9nBPP9bmZCm4gyHxCvPrX6iX:
Dash 6: 0.00634263 DASH (624ops) (XpRh5wQw9n5Dz3ruwebZBDVKia6N7kyTDr on 44'/5'/5'/0/334) #5 js:2:dash:drkvjQc5xgMwMUENCLdgRSVADV729Rbrg53uuzPHZes5VZ3hKBh54f8jASwT4BeD3qrVQNqAcKRjyhwunoQ4bxQVYYPLRZWPLXgccdfV1DAAQmF:
Dash 7: 0 DASH (0ops) (XmakX6WHNE8GfV3FbBrNBWctfR9PNbCZCd on 44'/5'/6'/0/0) #6 js:2:dash:drkvjQc5xgMwMUENGjZ8a8DyRkcXuzNV8wN2Mr3fw7SzPbue16s9i1QqYfE3ctcAgRvCEhEhdFmLgMwKpgL9NuxpJW7SFshgEVakjQrZfz3XgX5:
DigiByte 1 cross [native segwit]: 0 DGB (205ops) (dgb1qs5rm64ctcw4w7j8u2qad9fqq6g56r96ydmmus0 on 84'/20'/0'/0/89) native_segwit#0 js:2:digibyte:xpub6D71z66WeL13XWV9msWK2qr71pct18GAGPanwkD4xbqqiPYe5qWwYn9Ph3bkJh1UbKWNWbVcDWyUPqoRaRZHnKyW9Xu6xWWp6hTb8U5Y4VC:native_segwit
DigiByte 2 [native segwit]: 0 DGB (776ops) (dgb1q9qp7wf2xff4mgrey4de9ny7zmveukqsfkjrex9 on 84'/20'/1'/0/375) native_segwit#1 js:2:digibyte:xpub6D71z66WeL13ZmMbX4YBS61uiUrLmX7BqJqYq3abfpMxdAG39rcnn6zmbcTKGf9Sq8Lx5UzR6MUHkYo1Soi1N9KjMNCEij5s5r35Ak2rbM4:native_segwit
DigiByte 3 [native segwit]: 178.921 DGB (797ops) (dgb1qycckq86lqh2nxyjw99ur9vuus0usfy5952xprr on 84'/20'/2'/0/395) native_segwit#2 js:2:digibyte:xpub6D71z66WeL13bi2gs76Wq4NAKKdv7oTsnFftyLX8PhjhQHeaXMgARZ7k2NQ49nBo6dMmycMjkzt35MjEGsChCJVVmsVc9FNc87KNsutugaP:native_segwit
DigiByte 4 [native segwit]: 0 DGB (0ops) (dgb1qmjcxu8n67yra869v6aytjvh4f6w3yeps2qa28a on 84'/20'/3'/0/0) native_segwit#3 js:2:digibyte:xpub6D71z66WeL13fAu2hNxpWp8LpadpG278j1ev9ZPrF8dyxaU6j9AtNCXV9a3UF5ZV6fdG5Ku8Jb5o9Z576GXB3p6Byx5KrSBfjhvc6s1pzyi:native_segwit
DigiByte 1 [segwit]: 4.42221 DGB (789ops) (SNLPiJgQh8gDzLb9hJQfE7GeA2g32SAUVX on 49'/20'/0'/0/395) segwit#0 js:2:digibyte:xpub6CyNC8fYQWVVZgJGMWVXyBZc8m972GSmGFFjHQYD1G2XoLNzuXLMFmMbiAJP3TW3Nt2Y8DW1FggpG9BoquJpF1fy1uybwkQzk31GkDxJQMN:segwit
DigiByte 2 [segwit]: 0.1 DGB (758ops) (SWne3Kmdwcz9eB6HKWD4vKd3Wk9xeHPTtX on 49'/20'/1'/0/382) segwit#1 js:2:digibyte:xpub6CyNC8fYQWVVb2KfaRAp15VU6PmQwavzyuQCzDbgcCUuy3BdtQdwamLFmeHWwEoawT7mcwdugUnWvAZhoNBu42xFXMPZQFj3WSV34eVByBn:segwit
DigiByte 3 [segwit]: 0 DGB (0ops) (SkNadMKV745S6TeHNr5rPNTUc6thrHnABv on 49'/20'/2'/0/0) segwit#2 js:2:digibyte:xpub6CyNC8fYQWVVcoRWRk8dMQAuP4EGcpRU2S3djcr1hsSoWuvxasdq4uZ58y6RMJ64iTLWty55UM8UMVrgNpGgFgNXRk9NX97UkaUApcLztG3:segwit
DigiByte 1 [legacy]: 8.44824 DGB (142ops) (DKaRzMtryc6JU3uRf1vwL6o4LzxfyRxR4F on 44'/20'/0'/0/94) #0 js:2:digibyte:xpub6CSWV3vTJPP2PuLeQAKrE54zgh5AderdZz9PjwTVo9SDcKbQ1SnLub8YBFavLSEwk5JGcL695aFjqbEc4WF9zG9Db1avwnaFiidgyAD2ni6:
DigiByte 2 [legacy]: 0 DGB (0ops) (DDvpCQNb5GD5jvZN5AMhKB2vSU9HDrDA74 on 44'/20'/1'/0/0) #1 js:2:digibyte:xpub6CSWV3vTJPP2S5Faax1ofwBEUM9BPVyidKpRue81pdWxvRbMY5z1acVqkKwRg7sQoRJLd8fojM7pBFzTCG7c6VEDfa9k9Cf99b2bVjfJexN:
Dogecoin 1 cross: 98.7439 DOGE (231ops) (D6kfnDM1sPkMAztKPEyjuMGyq8N8BUUnx2 on 44'/3'/0'/0/104) #0 js:2:dogecoin:dgub8s5xvHYbrwuP3d9JW1Djx3XzLedMLtM5Q2sFGWo5foRfdaWATHeMmtRxG7uAQPqnPscaiMz128ck9ACgQfF42aMo6q6xLgKwruYk7nLoxMR:
Dogecoin 2: 58.0313 DOGE (694ops) (DMdkAi4rZpWCwRmW6aKGtTTN85LGVebXmC on 44'/3'/1'/0/329) #1 js:2:dogecoin:dgub8s5xvHYbrwuP54Rw4Zu8Pa6GYR5q2WwDAZbMKriRcXKu85HehdbvR54vDdCZXyk5TB1pu4A5hMgSuNZuKhwd5PxtRiCK21xALtbvF8H37Rk:
Dogecoin 3: 93.0554 DOGE (634ops) (DJnfF8xjdnp1CWY9uMRfKsnDCdCEsVh7Sg on 44'/3'/2'/0/300) #2 js:2:dogecoin:dgub8s5xvHYbrwuP7GMsT8eDj4B7Hm7Wq17miN91KU5XSdHJCHZZ76g7xZanBrRJR6BJ2X4zhAiRR2EtD7gWfNr1AYmWC4RUaaAbtdJSSqSh8in:
Dogecoin 4: 40.4424 DOGE (679ops) (DBfzZ7ba8inkrA85xxNvnfQAFojSsem4qp on 44'/3'/3'/0/329) #3 js:2:dogecoin:dgub8s5xvHYbrwuP9aYzGk5xfN9CupgpgsMC128ZN8aQcn44mJkNbvL6LLu8qVMW7GATFPFubAFFz35QFDbkpUxTNbhHpbJAnfaGe8Mh4MgosMd:
Dogecoin 5: 23.7748 DOGE (615ops) (DF1iDLcafL2TouFqo21Wu6FJo9YqmnM7c9 on 44'/3'/4'/0/318) #4 js:2:dogecoin:dgub8s5xvHYbrwuPE3nH3zRr5cvJzNNz9VgJaN75Fr1DKgo2okjH655uwkWyqWvQav5caWgNY3GBzXgYLaf8jotZXLr7Z4nMYMooFT2VBreS2Ue:
Dogecoin 6: 0 DOGE (582ops) (DAupFfjEG1Leh2Ysxt3aVm3RrSdcmD6hh9 on 44'/3'/5'/0/339) #5 js:2:dogecoin:dgub8s5xvHYbrwuPEZ3zxTQxREf3YjTqyWXHjMp9X6Ptsoh1R5tqJ328RmddHcVX52TiHmN4KHd7VhQPTTnraSoPMHuqUmMqmzjJntUvK7EF1hb:
Dogecoin 7: 0 DOGE (0ops) (D6mGBvnvGDRDqQmb7XDpEimSuEZ3ehTs4q on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8s5xvHYbrwuPHRGfhfAb5mPCqZnWn6ncWAChm4CVLeSwvW6dyWb6os6nv8S75rSmfnJPMF1cMihPqQApdRqFtxYqhkkKkqGGWW7mq2vRHbk:
Komodo 1 cross: 5.74454 KMD (160ops) (RVmyg1V2Xbf3fEsEFA9sntjyzZ5ByNxKZk on 44'/141'/0'/0/68) #0 js:2:komodo:v4PKUB8dujoV232uZDHmqMEp1iCy9VfetspYWd2H5Sk27RZcGBjawcukFNDEP2Sk9ygU8QE8ctpMx4mtKe4W1VLEM3MYzAMBkbbg7ZVYWsMbWG3c:
Komodo 2: 0.0801061 KMD (582ops) (RUtds3UpYfuS4UeRkaSzTf2sUJwBsFFVme on 44'/141'/1'/0/294) #1 js:2:komodo:v4PKUB8dujoV232uZFVU6wqy8XBkYTfAj7XoqRZXBVbJ8iHM9dSv1EaPoYC2ZPyYUpVvj3tVDpvSdg4HWvH5mqyyP7WTzuzyjZSfZ9SzmLzQWA1z:
Komodo 3: 0.288135 KMD (583ops) (RDerKQh1mzxjvCwvbDwWTgP1GDD6ia3QMW on 44'/141'/2'/0/296) #2 js:2:komodo:v4PKUB8dujoV232uZHAmYdqPjtRP8mZRFmv8vNpXF5mSERL4onKDtckZ88eTjgWEyNsLeFaD1VUyP6dKWsoqiJJL72B6nX2P1V1NbJrVGQsf7Mny:
Komodo 4: 1.14137 KMD (586ops) (RXj5kxV8Y6uGV6LLzu1CD9fzrvZbWKMz4N on 44'/141'/3'/0/297) #3 js:2:komodo:v4PKUB8dujoV232uZK54cuKNuJGrfxnagjJGFyZoDQgLnHfCqpN5egMz2cifbfZk75fQo3PEuBif8Y2rzVKa9ivkbQsMjxEXb3itmUYzyb8gqwN3:
Komodo 5: 0 KMD (0ops) (RRXGJnyAJbXBjAxHXmeBvoD2FzFtXhYTmN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB8dujoV232uZNbLMGR64ooM16Zq1nghY4iqiP9iLp2iLuELNRoKfRpB5uN9HFbi5p8meWpk7whGwGUtW61JcmbcwKx3Wv8X9iFbzAWuGztj:
Litecoin 1 cross [native segwit]: 0.00196279 LTC (201ops) (ltc1q33qgvxc3mc2jm4rtp3zn2jqhd7mvrmmhzj23c9 on 84'/2'/0'/0/94) native_segwit#0 js:2:litecoin:Ltub2YtdMTwV8qpBQAcpjYwYWyZCinmxtmEjCPahkTwhL17yMyqWLTUrXpocwnBJyUuneKqKXqVy2WUCpf8VmDLLDexHXQoCmUTBRDhEuN4kxTw:native_segwit
Litecoin 2 [native segwit]: 0 LTC (713ops) (ltc1ql8dtgx9uhq863zdgctf6suuwz4hkpd2c0yae4t on 84'/2'/1'/0/350) native_segwit#1 js:2:litecoin:Ltub2YtdMTwV8qpBSp5VRXAa1x3edzt1odcZ4xsm4ja7FoGnGtjbiUxs4PFdPXTDLmEMEy82aRJWc5TYBSBArLhP9S3f1TrtwaoQNvb3ZEhmQnC:native_segwit
Litecoin 3 [native segwit]: 0 LTC (0ops) (ltc1qmndth9why0pjlptnvc09h6p2q0dx68sdrc7ytu on 84'/2'/2'/0/0) native_segwit#2 js:2:litecoin:Ltub2YtdMTwV8qpBUgaKfNstPCKzRvTRHUGSFdG9Cb6pxQXoK75n3fhpj9jPCJx4esSs2wf5PdmJZJ5oojLqcATbXisGbZ6beVJdgzxSvasiNQ7:native_segwit
Litecoin 1 [segwit]: 0.0115932 LTC (718ops) (MNyevXwHqaAweX72398KovaC7fn3BgXjtU on 49'/2'/0'/0/348) segwit#0 js:2:litecoin:Ltub2ZwkGeprAnW1p9oCUbfzqXTVSmJpUCNz37J5NezFKp3pf9YdeRsscM33BFzeFek26XtQQNdYFw8sn4s9xr8kwhDAKRDLaTjYBK2yXn95Cx9:segwit
Litecoin 2 [segwit]: 0.00179833 LTC (184ops) (MWGMyWdAhSjn3Ek64BgKpXp8dUjQCmzwYC on 49'/2'/1'/0/94) segwit#1 js:2:litecoin:Ltub2ZwkGeprAnW1rdfxThPedXKB9QVJ9nDkaZ3QmJBr6k1skAqST7hGNQuB8birQKoPXytsPk6Udzkjmopsmbupe9J6egAYYXFRdJBS3Xnovjr:segwit
Litecoin 3 [segwit]: 0 LTC (0ops) (MPEfEoyVqBqQSvps3HaJn4FmtxawaGqZiJ on 49'/2'/2'/0/0) segwit#2 js:2:litecoin:Ltub2ZwkGeprAnW1sh6SwC1iwRNbvUTDYJ85ZX1h8dJuvwZNePPZ6rZ6nR63bLwfq5vp8efNgbo51SX7GHS6HrYrXSKFjMUH2BWkbooG2K9oKsP:segwit
Litecoin 1 [legacy]: 0.0137357 LTC (758ops) (LMvfwTokgjfCvUftD34jvaHs4CjDH1RhMi on 44'/2'/0'/0/379) #0 js:2:litecoin:Ltub2ZWG9vZUUNG8VNwFYTLt9UwaumnTrZa7PN1Un7b2yrx259QEaaT4XxDyQryvRg16ranNt6hmRzQCZWGw1e3MzWZAb9kinSGbjM6uWfZhyjy:
Litecoin 2 [legacy]: 0.00195272 LTC (175ops) (LRMjyVPaDd7DEdn7vDoTLXYQxBRZDPhA6c on 44'/2'/1'/0/107) #1 js:2:litecoin:Ltub2ZWG9vZUUNG8XUgbYzrNYPWgwSuL2uTiDuZdodmcNHv5JUaiXjb3u91dd423xn98HKX5oE3Kmwq1DED2eiwkABvMXSaUGErb84Zmd2imtcj:
Litecoin 3 [legacy]: 0 LTC (0ops) (LeJegRsHFHg6iZkXuz18aTrA7B5jidoStN on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2ZWG9vZUUNG8aiha6Y3vKbBq7DeXUpSqmTZfwhXy7kjEEeDtJhefWYnH95Y7pKaWXZudJ732DRFPbRQqoSyi1V7JMGdhrmtTg2SdW5XsoLs:
Peercoin 1 cross: 0.010925 PPC (152ops) (PDPyJnGHyzGph4dscqcJa32RcbaKdvZp2U on 44'/6'/0'/0/77) #0 js:2:peercoin:r29uBq5k8NEFGN78UcETAh4a4UZndCEp5smVM3LBwBLC6TtbFFGouAnez1xwFREooQP5Dxg55ZmEz4bx3kpQMpHjiE1SES1NtXzAutVzPwX9Yzt4:
Peercoin 2: 0 PPC (767ops) (PGKnEwXDxTjwNooTB8ZMbC5V9PgxdyhQTb on 44'/6'/1'/0/385) #1 js:2:peercoin:r29uBq5k8NEFGN78UfW7bUgwgkxSbQBopyx5CP5dSB1SwZDScLmxasukKs4bYWnFQdXrsTG55nzxJGm9AN61sVtMDJysiicAbrSAzfWEjmxNDWAM:
Peercoin 3: 0.010928 PPC (736ops) (PGKweih5ofNKb3cMpx6v7SJxkZr9ymWmd2 on 44'/6'/2'/0/357) #2 js:2:peercoin:r29uBq5k8NEFGN78UgeUQStLVTBFcgc9L854xZ4oH6vzzUUEDjW3aT68epZ86L1d8FiR21YHYQmViJxqYLW3bXLFgvSkBYV4TwdQmcXhWPnt2sc8:
Peercoin 4: 0 PPC (756ops) (PVRy7xxTuiVy48NPmQJVWWbieB3es6AQU5 on 44'/6'/3'/0/387) #3 js:2:peercoin:r29uBq5k8NEFGN78Uk69riNJ2Kg12hES8D9eBfYitKrCREgaiRo69BPL93V4ex3eoKcftNdnB6WfHM8z9F99FT7GgMXEsU9HsAC2nMT7G1MyQLPJ:
Peercoin 5: 0 PPC (0ops) (PWXZXiEjTWEFy5y7RWc8eBjp4zT9TzA4uU on 44'/6'/4'/0/0) #4 js:2:peercoin:r29uBq5k8NEFGN78Umd8sYjLEP4zwyFU7GsFmHBwr4Wt3BbpBbL9eKGh5w6CJh68RQEcVHoP24sSFsMkz8Cidhi22bnzk8BdaKnpgwBAPJwChVCL:
PivX 1 cross: 0 PIVX (146ops) (DQNPL9H6cEA8DAhWQVjeQbH6j8SzSdZaX1 on 44'/77'/0'/0/61) #0 js:2:pivx:ToEA6nMDpFiPwDBxQNsJAHBnBJZtMrX9shaT89p7ckSxk8ShjggwzMG5VjYHpAarMq2vtQHfUK6wMBKpeiacGEm36YNJ2ivSKwe5y55Bj3FjpZT:
PivX 2: 10.0922 PIVX (721ops) (DMMVFvLC1VdLFSiDob3hkDYA1jbf9tvZYH on 44'/77'/1'/0/342) #1 js:2:pivx:ToEA6nMDpFiPwDBxRgg4N7SKC846s67k9WSxFNLi7s18PGvcWb8fAffciakBKe1AU31hsUbyCGivUjtH7FvMpkzjJtANqsrmqMAitg6Sh7sKSRs:
PivX 3: 22.7223 PIVX (728ops) (DGdghn8S1uCtezNJDfmLyvMwjjKCn3WiSs on 44'/77'/2'/0/375) #2 js:2:pivx:ToEA6nMDpFiPwDBxUSqMWjms5DXKLC7WAZJTw73SmQMeH8qf1QyGNrkSyKDJFxRiLjqWPTuniH6XGwuktStmDimdcPkvYLSyFAAgDyJM5T5m5Tx:
PivX 4: 1.46119 PIVX (679ops) (DAYcERjPwgnybQP9zGZFqV3YUAMVbVfg8M on 44'/77'/3'/0/342) #3 js:2:pivx:ToEA6nMDpFiPwDBxWZ63Q234dFFoqvCv7UFPMkhR2LMStT7uyZ6u8dwFJRduvrbMQuJgkRGrqbsyvBN8KPtW6FGTS2krMgvJ1bpiQVJPcUU2Csg:
PivX 5: 0 PIVX (0ops) (DKFq3g6mVH7G8EDMzho6vwHwK9D3MfBzt8 on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6nMDpFiPwDBxZczaEQoPcf4fyig4q7t6wMkzhoqspiupiKwSuZ3ZUvLBRYf8PKjdBx9VrrV2qoG5a5QqMUdKN9zeaQWP8uQQZhZpvnFWw89:
Qtum 1 cross [segwit]: 0.0012064 QTUM (154ops) (MVYo3tWmufMkw8y12XoyFbx4dSyKYt5p94 on 49'/88'/0'/0/79) segwit#0 js:2:qtum:xpub6Bf5Vi1PoAeeSm669pdwe2ymnX4iidTx28N2DX3Y7xGA2CeALtzbzDwmyLpZwHswpwsX472uuNW3C9fZPF2ZEGbYg5ttXumvBUNQaH9DrBJ:segwit
Qtum 2 [segwit]: 0 QTUM (584ops) (M8NJLJDrAiTrHtWpX4cG1qyD6PW1W4m2Sh on 49'/88'/1'/0/291) segwit#1 js:2:qtum:xpub6Bf5Vi1PoAeeUAkX78y487pQcvX4qac8qiV2YwfharC3hA56WiPTdMUzNjGvV8rQN9UwZr1NYBszLUVpav4bfS8CTqCZtZ1q6RXgxbXbZHK:segwit
Qtum 3 [segwit]: 0 QTUM (0ops) (MLEmhf7Nph3STbGhvaWphtZeT6yXdr84pD on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6Bf5Vi1PoAeeWxQCZSJVg5TmiF11RmXCgkywXhymBi2V7Nbs3bLj8cDDt2UU1FdLNNeHpMzJMNrP7KjiCCLpeSoiGPRWQd2iXYwBXKyornT:segwit
Qtum 1 [legacy]: 0.00207519 QTUM (575ops) (QMDCgYNVoqcWCzTFek7dcaLWnzzuzSzK3T on 44'/88'/0'/0/293) #0 js:2:qtum:xpub6CgGyQmrxiXfU2qFisEejRyP1JJLLAxopXoCKyKpe95HA5VZEUhwG13RvF8A75UBxJApnjK5ZAzmBJwgrpZCzsUZYBFXymTR6BbaxqQCRnX:
Qtum 2 [legacy]: 0.00097602 QTUM (550ops) (Qj9wCLaQaMXLzHDgGK3Ksgjs69gw1GnJHf on 44'/88'/1'/0/266) #1 js:2:qtum:xpub6CgGyQmrxiXfXexLpZpEwPqhJepte11niTFBQsqpYGPJDXEBrXWd3pqJCEwn6BXeJ2RkonCTNshYF4ojomMAP2UaRq37XHdKYeWLmnXixhW:
Qtum 3 [legacy]: 0 QTUM (0ops) (QNNdQxtCqHxwm8R8XYjuGPCwGTJRY16G2H on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6CgGyQmrxiXfa54Jo6Hp2xcFSpSGzX36jWSYa8LybyroEJL4Yh6D2iZTC7zmXYZbhBhsZCvGKrdu5ob28W9yPyz1LRtivMheqNA78fpQw6R:
Vertcoin 1 cross [segwit]: 5.21025 VTC (208ops) (3EHkDS1K3FMVTzjGtbD3ye6fvn5SvKbaKk on 49'/28'/0'/0/95) segwit#0 js:2:vertcoin:xpub6DEzH4z36qjRJu4PTuLJejgycb3C8wr53xx9EHbeoN9RRfCnbf5h4jkZZcTCfYz8PvjmRrxoxfQt95n2uucnfrHHf5Z1YSzz2edJgcAMnGk:segwit
Vertcoin 2 [segwit]: 16.8953 VTC (836ops) (36zhHyuEN9ramWxNJNcyZLCaQvTDRjp3kw on 49'/28'/1'/0/410) segwit#1 js:2:vertcoin:xpub6DEzH4z36qjRNSZ3hSEXsqfGNtsTkUYQrc6RrBcp8zRmboTVx5RwaoJd1QxiJ4UW9jFEfdEhnJHiZrg1bpJ6mx1ktN97KYUhnLaVvrM8Jhm:segwit
Vertcoin 3 [segwit]: 2.34582 VTC (817ops) (3EdAupcm3BzHqUB6rYeeJVGxdeLW979vRm on 49'/28'/2'/0/416) segwit#2 js:2:vertcoin:xpub6DEzH4z36qjRQUsTZEmPN8UmbLLquFhkH8wsGVaXJyh35FN9K12ZCufTKmUd8hF1i2tL3m574TiiRGh4NC4L9zcL1kB7rHbBwZSfPmkqSTr:segwit
Vertcoin 4 [segwit]: 0.581026 VTC (788ops) (37ZdkbNQSMUCMEDDs33Ld4cAjc73QHqHQz on 49'/28'/3'/0/392) segwit#3 js:2:vertcoin:xpub6DEzH4z36qjRU9DKrTz8G6eFQUsSgTgJHdkhJyNN6jFUK8TNnfsFnc4N8GngQesZ7aPDuL63arqEJmb7Q63mdFA91svShHki5mCTY7H5Ykp:segwit
Vertcoin 5 [segwit]: 0 VTC (0ops) (3DDF2xqbJeSrHfCUwpNNYnB2swEzB9TAWC on 49'/28'/4'/0/0) segwit#4 js:2:vertcoin:xpub6DEzH4z36qjRVo5EAF7moci8HvRvmphWS7auXSDNhMqD7dLNYRWZznH881Fakrp5L8LvQqLFaRiqUTKCU7nF9uDakR6s4xsA327dFJw135Y:segwit
Vertcoin 1 [legacy]: 0.00015 VTC (764ops) (VqSC7j8b8Jviqgsg5mPzHNqvmiz7oHRuA7 on 44'/28'/0'/0/393) #0 js:2:vertcoin:xpub6CiqCbTKCTXo2t9QS5SG5v4kRB1fDb9keAeBpEXXdmm7e7GeZDQBxUQ4a7XM77DtY8sJMZnfLqXAgLYsDJpZ7hoEGnNumxN7CZ7DFZHEbG4:
Vertcoin 2 [legacy]: 0 VTC (0ops) (VaYYvrcJ6EYFezRDTvhc5N5j5CxD6CPLgd on 44'/28'/1'/0/0) #1 js:2:vertcoin:xpub6CiqCbTKCTXo5cvrY1csytpm6LCuqsspySwgHMVJ9V5vUzYLatcBRZqeWCaHabdPF2hQcrZw6Ct6ddYNxtEjSq8wk8oJGnFGar2K5EY7388:
Viacoin 1 cross [segwit]: 4.85095 VIA (93ops) (EPQHzKrJ6aBzTQ58K5kYUC2Zdx26bQFm94 on 49'/14'/0'/0/43) segwit#0 js:2:viacoin:xpub6CKpVMgatSrg3ipSUc9m8tcVXDnFukdzeY29WtGJd6keuV71vYBfWWeERuGYybe1Ha86xAEo4D11qNKtN3NLR3XJaBNyQBdoLqn3HqUweRg:segwit
Viacoin 2 [segwit]: 6.99878 VIA (91ops) (ERngKT5Q9yaEGo4LktB5S5hTmq3MN4fW8d on 49'/14'/1'/0/42) segwit#1 js:2:viacoin:xpub6CKpVMgatSrg6VzBXzh9vxDtDzHXvs6XuqLYr3THMW3JbnxYNUZEXj6rDNwr4qFzyEgv3Skj3iwkXx9pJy4M3eFxDnXziDcuunqoHrDv5Qu:segwit
Viacoin 3 [segwit]: 0 VIA (0ops) (EJzQSHwuF6E2z6Q9LZCNPrcZ7r7LGxa1Lw on 49'/14'/2'/0/0) segwit#2 js:2:viacoin:xpub6CKpVMgatSrgAJoD3be6mrRtYosY1q1x6jfaaMcdk2prstP5QHAuyuFkZBkQZDtdyQivKQktbDLjTMEKeBmEKm6gFArLA3t28rJWAC7FK3g:segwit
Viacoin 1 [legacy]: 9.05341 VIA (735ops) (Vg3HYpYuKvSX8QYuKhVXobLGYR2Lh2WRrG on 44'/14'/0'/0/362) #0 js:2:viacoin:xpub6DTC1GYNQURtVQLMhQcijhKafzHVo4hzHkH2YB1FDDxk4PpijoP96B1tLuwF1qnT3yGgZ75KTSiH9h2E7MCw4KX3enuz1FEY99ejRSn3bWy:
Viacoin 2 [legacy]: 0.001 VIA (726ops) (VqesoCvyER6wTDcsePS5XEAr3S9N2tSwWo on 44'/14'/1'/0/377) #1 js:2:viacoin:xpub6DTC1GYNQURtYjjf1kRcj8MGxM9odKhbjcXaNuJq8Whpr6YgE9aWaNy7za2ouoU1L3SxikYvsXUM4zHfeFomDmndCUu6u1DgqwusnFFvojY:
Viacoin 3 [legacy]: 0 VIA (0ops) (VpUpaSPuSMHbPNmonocrEtmyZjw1zCVn9u on 44'/14'/2'/0/0) #2 js:2:viacoin:xpub6DTC1GYNQURtbe4kcfkCkB2TuaX2BajthBZrS4Aqsmd9BBmuFHctFxJgoVviDUjtumSWocUx2oju9oauULvVJgtmUxSEF6JG9kifsfZcinE:
Zcash 1 cross: 0.00012809 ZEC (19ops) (t1W1vCEVTr16Tw1J6qV9M89dUbrfRsNUwAH on 44'/133'/0'/0/9) #0 js:2:zcash:xpub6Cp5Qry7MQtRgWaC5fXr7aw84mo9oKgd9wqbLHYXFmDFt5xTvNmqAx1Qy9UXuZq8mzJqYQGKNUkpS9J8KujR3SMeNY9LoyPAEJAuuFWpxET:
Zcash 2: 0.00010316 ZEC (452ops) (t1dt685csQMxoP4MJ7CU1Nfe9S5zoQbqiTd on 44'/133'/1'/0/224) #1 js:2:zcash:xpub6Cp5Qry7MQtRiN3DaUyLQiWA1TKr5Jk9scHjaTcBwhnu7s8HmExhB358xB7xxmkzDt5YSs2uFa3ChfMr8r3bFqpKjHdhmbBpFTnkejegrrL:
Zcash 3: 0.00019476 ZEC (477ops) (t1dLpAWVPdgARA9kqmiMyBUvh6Nm7B1GP5U on 44'/133'/2'/0/244) #2 js:2:zcash:xpub6Cp5Qry7MQtRn76Dzk2ww2j91Fk1j5QKnetj15PpZHghU6Dm9FG35QTqKbTenbyfGpEqAH1yQ7WuMcjbEArYiUGfYQoC3x4gDGLJoLjFMWS:
Zcash 4: 0 ZEC (475ops) (t1SbFGUyEDryy74DHaWFrkDfrWHvb17GLPS on 44'/133'/3'/0/235) #3 js:2:zcash:xpub6Cp5Qry7MQtRpZ9rP4gBNZurkHyWdaefpfLnLKwXxCmDoN4nTrnztjx3aKGRSLWwepZdvmfH9m8UBXH3QU5V91jxvnj59piRwfPttSUme2g:
Zcash 5: 0 ZEC (0ops) (t1SMjpJAyRPHJKeaToJfnDzZaf42x4cQoBz on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6Cp5Qry7MQtRstfX86j7knsMceC6fHu9J35gxThGDwGv8WctiHjDoaxJb8bizFNnVCC6VzRaWQpDFj7TMdsjvEeS8DUAaa9fVqGyUvmeDsV:
Horizen 1 cross: 0.0168073 ZEN (211ops) (znoYpKCHyuheQNMsUY3Rx5tg9ZAMvRTy4Kt on 44'/121'/0'/0/105) #0 js:2:zencash:xpub6D68gNRhhkMnJxt4rm7yHRXJuc1iJMZrkSGh7up88HSsXyEAKYZxwjmim4ehX4Jm32zKmaaB1VCVCMnuSRDqiWm6DPDwyGtkmeDzSnkbqrG:
Horizen 2: 0 ZEN (762ops) (zndrXaPqKuG4aLhzfJeK1f7zzxJt3nM9KWk on 44'/121'/1'/0/368) #1 js:2:zencash:xpub6D68gNRhhkMnMojN5234jsEj91uTD6UZpgYN79cfirvA3G3j3KNnLfT9hSJ37VWSYW1ceqid4Yng9XQxFBpgU7sDLK9kbe3mDJjtkuKaurM:
Horizen 3: 0.316146 ZEN (798ops) (znRTDW4R5KsEoNY51THbyv9LEboVFQCVneH on 44'/121'/2'/0/412) #2 js:2:zencash:xpub6D68gNRhhkMnRRjTNz1TfbaUGs7AMGewZN8bhdZG3dVTgE5mNSHJW5A5PJv3vdwAHhP4wVsSBFHPcWqxg549ZNm9ho2JbM7zqRUB7cyXLiT:
Horizen 4: 0 ZEN (754ops) (zneUGoHZZQMKDTdK7H5sqrPurC9RM4XhKW7 on 44'/121'/3'/0/378) #3 js:2:zencash:xpub6D68gNRhhkMnU32ebQD2c36NBPCnuXsGC6UDgAayaVnKAcHfzV8LuKWqihaZQdd8LTXjZgsYUiYan1k1YsSm1Cj9MjhJvzyoHHcFGUjFWPu:
Horizen 5: 0 ZEN (0ops) (znZ4tG36xBwrRZFb5AM7L8kk87T3sohbBau on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6D68gNRhhkMnVjAHu9FzM9mcd7vnSANekYQVwg6D4UVVR1rkeH8hipPVz6uRs9f8rrbTHTTPsLAb2c2A8y3xghADj62zmSHdhbVKEzg96SZ:
Decred 1 cross: 0 DCR (0ops) (DshyFLDNm9kX5EL6DtkATQieLH2ZCL72UUj on 44'/42'/0'/0/0) #0 js:2:decred:dpubZGW1axqHRP22d9oVAXDZNA8S8Dc7yYYipWGk2JCaJFocq1ADaymgHgQWwZjYK1tsUcPdbSQXoRRv6teeQASKqEEja1RxYiEDKJHYVY49fnm:
Cardano 1 cross: 0 ADA (0ops) (addr1qx44x7pr2vw4lphj6prle8grr8wtm03wy7ayege980p505tgkechpadmnf5auk06h4a40dpt7q0jgejf7aetw48fpafsrhwqcp on 1852'/1815'/0'/0/0) cardano#0 js:2:cardano:eb5cf9bdbe123b2b084b80a0f42b167680625af0878e9dbd19532332b71fa2484b28e14460d520ef8ac95680e650762d5cc904e730cc42bef4d825dd6d446f1f:cardano
Celo 1 cross: 0 CELO (0ops) (0x6F6f438fAB99b03EA2D2De8953f7D0D68d5EE6eb on 44'/52752'/0'/0/0) #0 js:2:celo:0x6F6f438fAB99b03EA2D2De8953f7D0D68d5EE6eb:
Axelar 1 cross: 0 AXL (0ops) (axelar1jlnel2cvw2cvtmdgsjku894grsqx0pmrtkvqju on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1jlnel2cvw2cvtmdgsjku894grsqx0pmrtkvqju:
Cosmos 1 cross: 0 ATOM (10ops) (cosmos1jlnel2cvw2cvtmdgsjku894grsqx0pmr0c6gea on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1jlnel2cvw2cvtmdgsjku894grsqx0pmr0c6gea:
Cosmos 2: 0.009273 ATOM (22ops) (cosmos1w6jwflqcfnwqc53r7zqdnhgdkln52dr5r8ral6 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1w6jwflqcfnwqc53r7zqdnhgdkln52dr5r8ral6:
Cosmos 3: 0.011326 ATOM (14ops) (cosmos15wmrz7rfwwtszpuxrh46t54342c5nktvg6ep3p on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos15wmrz7rfwwtszpuxrh46t54342c5nktvg6ep3p:
Cosmos 4: 0.007831 ATOM (22ops) (cosmos1jaeqgtrtsg8k95ryzpnahg7kjg7jaexr944xdp on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1jaeqgtrtsg8k95ryzpnahg7kjg7jaexr944xdp:
Cosmos 5: 0 ATOM (16ops) (cosmos1ppzrxcq3jpdeyrg4zlmtf95u8k3ex8e6mpw4mp on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1ppzrxcq3jpdeyrg4zlmtf95u8k3ex8e6mpw4mp:
Cosmos 6: 0.009641 ATOM (8ops) (cosmos1wrteaw8cylkysqny37w0kwwd3mt8dfzstf5kfr on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1wrteaw8cylkysqny37w0kwwd3mt8dfzstf5kfr:
Cosmos 7: 0.004638 ATOM (7ops) (cosmos1y4qjl83jlvaeya52p9crfgagrsnuh7h6ymh0mg on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos1y4qjl83jlvaeya52p9crfgagrsnuh7h6ymh0mg:
Cosmos 8: 0.003752 ATOM (6ops) (cosmos1w2vrtf28a744n72wqgkuhedrw8pkctq0rklm3j on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos1w2vrtf28a744n72wqgkuhedrw8pkctq0rklm3j:
Cosmos 9: 0.008933 ATOM (6ops) (cosmos1xmr6gyf85y7lh22lktwrxl5fcz7z2l9plggudn on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos1xmr6gyf85y7lh22lktwrxl5fcz7z2l9plggudn:
Cosmos 10: 0.003695 ATOM (4ops) (cosmos1x76ndnfy226qs987gyc3vqwdppgsycejglcaqa on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos1x76ndnfy226qs987gyc3vqwdppgsycejglcaqa:
Cosmos 11 cross: 0.006876 ATOM (1ops) (cosmos1cx3wvgedm5acezcs05gw0xj9hk63jfjr6m3hws on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1cx3wvgedm5acezcs05gw0xj9hk63jfjr6m3hws:
Cosmos 12: 0 ATOM (0ops) (cosmos1nxlksgky3qpgda0g3mu3qnuvp90mhll27r7am7 on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1nxlksgky3qpgda0g3mu3qnuvp90mhll27r7am7:
Osmosis 1 cross: 0 OSMO (0ops) (osmo1jlnel2cvw2cvtmdgsjku894grsqx0pmr8rfc00 on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1jlnel2cvw2cvtmdgsjku894grsqx0pmr8rfc00:
Desmos 1 cross: 0 DSM (0ops) (desmos1jlnel2cvw2cvtmdgsjku894grsqx0pmrmqhcw9 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1jlnel2cvw2cvtmdgsjku894grsqx0pmrmqhcw9:
Umee 1 cross: 0 UMEE (0ops) (umee1jlnel2cvw2cvtmdgsjku894grsqx0pmraw8ha0 on 44'/118'/0'/0/0) #0 js:2:umee:umee1jlnel2cvw2cvtmdgsjku894grsqx0pmraw8ha0:
Persistence 1 cross: 0 XPRT (0ops) (persistence1jlnel2cvw2cvtmdgsjku894grsqx0pmrp5umhe on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1jlnel2cvw2cvtmdgsjku894grsqx0pmrp5umhe:
Quicksilver 1 cross: 0 QCK (0ops) (quick1jlnel2cvw2cvtmdgsjku894grsqx0pmryu26q0 on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1jlnel2cvw2cvtmdgsjku894grsqx0pmryu26q0:
Onomy 1 cross: 0 NOM (0ops) (onomy1jlnel2cvw2cvtmdgsjku894grsqx0pmr4ew7gc on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1jlnel2cvw2cvtmdgsjku894grsqx0pmr4ew7gc:
SecretNetwork 1 cross: 0 SCRT (0ops) (secret1jlnel2cvw2cvtmdgsjku894grsqx0pmrdawpyp on 44'/118'/0'/0/0) #0 js:2:secret_network:secret1jlnel2cvw2cvtmdgsjku894grsqx0pmrdawpyp:
Stargaze 1 cross: 0 STARS (0ops) (stars1jlnel2cvw2cvtmdgsjku894grsqx0pmrmyd4jv on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1jlnel2cvw2cvtmdgsjku894grsqx0pmrmyd4jv:
Crypto.org 1 cross: 0.85337 CRO (28ops) (cro1fh9txz05mrzn3nxdmgxy6h5qpcz7052lchp3dr on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro1fh9txz05mrzn3nxdmgxy6h5qpcz7052lchp3dr:
Crypto.org 2: 0 CRO (24ops) (cro1xkz9sucwcrtwz27c8wl8xj5arkz5yxv6cmdjl9 on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1xkz9sucwcrtwz27c8wl8xj5arkz5yxv6cmdjl9:
Crypto.org 3: 0.290709 CRO (20ops) (cro1fdhfs842ue0mt7kjw48pacat6d8q8j5gazn8zd on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1fdhfs842ue0mt7kjw48pacat6d8q8j5gazn8zd:
Crypto.org 4: 0 CRO (11ops) (cro1gzhfxq857jkaacssu2vf08se0dzc4puzcq92tg on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1gzhfxq857jkaacssu2vf08se0dzc4puzcq92tg:
Crypto.org 5: 0.85332 CRO (17ops) (cro1lzfkm0um5df7ck0x9lc09mfnlxq45aelwyp0mj on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro1lzfkm0um5df7ck0x9lc09mfnlxq45aelwyp0mj:
Crypto.org 6: 0 CRO (5ops) (cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2 on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1mzyk2ywcd8ln5cn5kkyyrgxduchgsrr2edhjt2:
Crypto.org 7: 0 CRO (0ops) (cro149ler882frsehkv27a8rjccls3exh0j2cx743k on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro149ler882frsehkv27a8rjccls3exh0j2cx743k:
MultiversX 1 cross: 0 EGLD (0ops) (erd1n5metst07zm8xggcjnwl8wn4efkwwqd8mzv3dgfqpmns9ygl54ssxmdhcn on 44'/508'/0'/0/0) #0 js:2:elrond:erd1n5metst07zm8xggcjnwl8wn4efkwwqd8mzv3dgfqpmns9ygl54ssxmdhcn:
Avalanche C-Chain 1 cross: 0 AVAX (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Binance Smart Chain 1 cross: 0 BNB (120ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:bsc:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Binance Smart Chain 2: 0.00281971 BNB (134ops) (0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0:
Binance Smart Chain 3: 0.00307978 BNB (156ops) (0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6 on 44'/60'/2'/0/0) #2 js:2:bsc:0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6:
Binance Smart Chain 4: 0.00429191 BNB (147ops) (0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E on 44'/60'/3'/0/0) #3 js:2:bsc:0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E:
Binance Smart Chain 5: 0.00335661 BNB (156ops) (0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1 on 44'/60'/4'/0/0) #4 js:2:bsc:0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1:
Binance Smart Chain 6: 0.0236334 BNB (152ops) (0x414386B517CB75810015c65B2f02218b16c130a4 on 44'/60'/5'/0/0) #5 js:2:bsc:0x414386B517CB75810015c65B2f02218b16c130a4:
Binance Smart Chain 7: 0 BNB (170ops) (0xAa744AB24B2381240327765D0198a19287B6003A on 44'/60'/6'/0/0) #6 js:2:bsc:0xAa744AB24B2381240327765D0198a19287B6003A:
Binance Smart Chain 8: 0.00501922 BNB (121ops) (0xC16D418BD9eA367847CCfbC696666c96BEa02781 on 44'/60'/7'/0/0) #7 js:2:bsc:0xC16D418BD9eA367847CCfbC696666c96BEa02781:
Binance Smart Chain 9: 0.00501922 BNB (114ops) (0x3FD46F0F514302dE5C1314257440d49dfaD25D39 on 44'/60'/8'/0/0) #8 js:2:bsc:0x3FD46F0F514302dE5C1314257440d49dfaD25D39:
Binance Smart Chain 10: 0 BNB (0ops) (0xf1d93dB3e9D80478d81eE04924984AeA18808E72 on 44'/60'/9'/0/0) #9 js:2:bsc:0xf1d93dB3e9D80478d81eE04924984AeA18808E72:
Polygon 1 cross: 0 MATIC (89ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:polygon:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Polygon 2: 0.774503 MATIC (133ops) (0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0 on 44'/60'/1'/0/0) #1 js:2:polygon:0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0:
Polygon 3: 2.32383 MATIC (98ops) (0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6 on 44'/60'/2'/0/0) #2 js:2:polygon:0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6:
Polygon 4: 0.0041551 MATIC (100ops) (0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E on 44'/60'/3'/0/0) #3 js:2:polygon:0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E:
Polygon 5: 0.778365 MATIC (93ops) (0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1 on 44'/60'/4'/0/0) #4 js:2:polygon:0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1:
Polygon 6: 0 MATIC (75ops) (0x414386B517CB75810015c65B2f02218b16c130a4 on 44'/60'/5'/0/0) #5 js:2:polygon:0x414386B517CB75810015c65B2f02218b16c130a4:
Polygon 7: 5.51823 MATIC (56ops) (0xAa744AB24B2381240327765D0198a19287B6003A on 44'/60'/6'/0/0) #6 js:2:polygon:0xAa744AB24B2381240327765D0198a19287B6003A:
Polygon 8: 13.3116 MATIC (55ops) (0xC16D418BD9eA367847CCfbC696666c96BEa02781 on 44'/60'/7'/0/0) #7 js:2:polygon:0xC16D418BD9eA367847CCfbC696666c96BEa02781:
Polygon 9: 10.1364 MATIC (45ops) (0x3FD46F0F514302dE5C1314257440d49dfaD25D39 on 44'/60'/8'/0/0) #8 js:2:polygon:0x3FD46F0F514302dE5C1314257440d49dfaD25D39:
Polygon 10: 0 MATIC (0ops) (0xf1d93dB3e9D80478d81eE04924984AeA18808E72 on 44'/60'/9'/0/0) #9 js:2:polygon:0xf1d93dB3e9D80478d81eE04924984AeA18808E72:
Ethereum Classic 1 cross: 0.243028 ETC (199ops) (0xFEe4aF74cec36821814b5d6091680280A7f9fd3A on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0xFEe4aF74cec36821814b5d6091680280A7f9fd3A:
Ethereum Classic 2: 0.104517 ETC (581ops) (0x7020e1A91a02c85C0E2aE13b0315E61f74CCeDdA on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x7020e1A91a02c85C0E2aE13b0315E61f74CCeDdA:
Ethereum Classic 3: 0.0772214 ETC (596ops) (0x4a2b99d77a5a54d870A89c4b1C037518e3b63107 on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x4a2b99d77a5a54d870A89c4b1C037518e3b63107:
Ethereum Classic 4: 0 ETC (557ops) (0x900d657fDc052c190fc10333173bBEe380C629B8 on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x900d657fDc052c190fc10333173bBEe380C629B8:
Ethereum Classic 5: 0.193102 ETC (412ops) (0xd49c2E46bB18516073d989380ECfA28D2acaCe9d on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xd49c2E46bB18516073d989380ECfA28D2acaCe9d:
Ethereum Classic 6: 0 ETC (0ops) (0x5932875E2845a77e2DE3993aadE2E77B5301D2B3 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x5932875E2845a77e2DE3993aadE2E77B5301D2B3:
Filecoin 1 cross: 0 FIL (0ops) (f1qrt2w6szrfudrvi43eo3miqnohnkyk6an2uht7y on 44'/461'/0'/0/0) #0 js:2:filecoin:f1qrt2w6szrfudrvi43eo3miqnohnkyk6an2uht7y:
Internet Computer 1 cross: 0 ICP (0ops) (31843878363b917be106400b6e62a2aab18dd7ec2ec83cca08fea69e29765882 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04f440e0c268894956b59e5ec9d86cfacbc49bde6af6131d32ded7ee0a1ddc69f93c9e2e946925013f7e04b4cd69640c586a27dc7b2c35f7a18bd071918ed05ac5:internet_computer
NEAR 1 cross: 0.0519673 NEAR (27ops) (d82bedacbc049a9e17e0779b2be50efd0cdfd6793f69183b04a7e9d2d5e0a8d9 on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:d82bedacbc049a9e17e0779b2be50efd0cdfd6793f69183b04a7e9d2d5e0a8d9:nearbip44h
NEAR 2: 0.0518912 NEAR (17ops) (f1217d560131ece29d9e69b6c2a24be962bb53f7d0f6346339abf11245e181ae on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:f1217d560131ece29d9e69b6c2a24be962bb53f7d0f6346339abf11245e181ae:nearbip44h
NEAR 3: 0.0518521 NEAR (14ops) (641fa3184f9a9d9c3f5491c50ee27566779753a2db5702fa543a304168d10a97 on 44'/397'/0'/0'/2') nearbip44h#2 js:2:near:641fa3184f9a9d9c3f5491c50ee27566779753a2db5702fa543a304168d10a97:nearbip44h
NEAR 4: 0.0520512 NEAR (23ops) (74cddd49426fd639862c0676bd3b2d727b8865cda966b54845e395ea7d155fb1 on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:74cddd49426fd639862c0676bd3b2d727b8865cda966b54845e395ea7d155fb1:nearbip44h
NEAR 5: 0.151228 NEAR (20ops) (f8383e80e30769e6a58b2c81a12093cbaade246d9153ca581098b7aea750c810 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:f8383e80e30769e6a58b2c81a12093cbaade246d9153ca581098b7aea750c810:nearbip44h
NEAR 6: 0.125814 NEAR (5ops) (faaabc0cc8c6e4d1bc67dc0155b3594d912e5c53cdadcbea4d9c00a87a4eb112 on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:faaabc0cc8c6e4d1bc67dc0155b3594d912e5c53cdadcbea4d9c00a87a4eb112:nearbip44h
NEAR 7: 0.0520544 NEAR (17ops) (9244a57abf814d8da9fd1c2073704b794c7532a264f555a3471fae39631fe7f0 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:9244a57abf814d8da9fd1c2073704b794c7532a264f555a3471fae39631fe7f0:nearbip44h
NEAR 8: 0.0793319 NEAR (5ops) (98ce66c14c9fab65bd5dbea7fd3ebaecc1b66fefb3fcafeb9fa4f998f7f2f68c on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:98ce66c14c9fab65bd5dbea7fd3ebaecc1b66fefb3fcafeb9fa4f998f7f2f68c:nearbip44h
NEAR 9: 0.304295 NEAR (9ops) (56a4b3ec2bebecb407b313d97d1208ebcc652b82e0e5e2139193f108b433098f on 44'/397'/0'/0'/8') nearbip44h#8 js:2:near:56a4b3ec2bebecb407b313d97d1208ebcc652b82e0e5e2139193f108b433098f:nearbip44h
NEAR 10: 0 NEAR (0ops) (79a03448025a3e71802a1de3cd0ff4a77998b67df5d27e5cb1e3575bdcc07fe0 on 44'/397'/0'/0'/9') nearbip44h#9 js:2:near:79a03448025a3e71802a1de3cd0ff4a77998b67df5d27e5cb1e3575bdcc07fe0:nearbip44h
NEAR 11 cross: 0 NEAR (0ops) (723bcb7788a6921607dbbcb5f87d8d20c83c78adc9de70b2eeb8b3cbb5d629ac on 44'/397'/0'/0'/10') nearbip44h#10 js:2:near:723bcb7788a6921607dbbcb5f87d8d20c83c78adc9de70b2eeb8b3cbb5d629ac:nearbip44h
XRP 1 cross: 0 XRP (0ops) (rhAzCNG5Te2rkeXaoZQnGsEw1nt27hQtaF on 44'/144'/0'/0/0) #0 js:2:ripple:rhAzCNG5Te2rkeXaoZQnGsEw1nt27hQtaF:
Solana 1 cross: 0 SOL (0ops) (8FtxLkGsEHeWHv7Eh5BtZaQEns1YDRDiw3p1zo89VezT on 44'/501'/0') solanaSub#0 js:2:solana:8FtxLkGsEHeWHv7Eh5BtZaQEns1YDRDiw3p1zo89VezT:solanaSub
Stacks 1 cross: 4.9973 STX (14ops) (SP2PYDYYPFVG4GEV62PRC80JX64Y921ZCS9MPTZ0B on 44'/5757'/0'/0/0) #0 js:2:stacks:03261d3dab2c0eb0a3aec7b35b7fd291f38365b45690ec4d0ff4c43d664d66e53b:
Stacks 2: 0 STX (7ops) (SP3P3HZSWME9PX9ARVWGMFFB8R7PVN7SC70E1BT9T on 44'/5757'/1'/0/0) #1 js:2:stacks:0398133d3de0a96bee3a2b6e8065dc9764671deb72668c06de0dbf011356ef7b19:
Stacks 3: 0 STX (10ops) (SP2MQMZFT91K11M7YQFB7VC98TG4MZB7ZS7GA4TV2 on 44'/5757'/2'/0/0) #2 js:2:stacks:0352fcae0484ebcfc56fe804a7f958018731345acab0d0234fe6d76bf5082fc2a8:
Stacks 4: 0 STX (0ops) (SP30XWN5S7XKQPNTFVT503SDTTNPCHTG97FZQKMKE on 44'/5757'/3'/0/0) #3 js:2:stacks:024aa9d67297dce882164c5d65972b09509c2277665b1ba9695fc65e8c67da00f0:
Stellar 1 cross: 0 XLM (0ops) (GC65GCJ5GN3MJZO6XEMDBZH5Y2RNWG6I2JXUWIBY3MU52VJUBUASH7HT on 44'/148'/0') sep5#0 js:2:stellar:GC65GCJ5GN3MJZO6XEMDBZH5Y2RNWG6I2JXUWIBY3MU52VJUBUASH7HT:sep5
Tezos 1 cross: 0 XTZ (45ops) (tz1dYLLvkwLaKi8vCLtKQiWBQGdSfXjMK4id on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0281d04dc9e6952524108533cbf606b980066c1b5d61828dc9abbbd154597d124a:tezbox
Tezos 2: 0 XTZ (103ops) (tz1iBY8r8E48hUKmf4LozGj831oAezHqRrEQ on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02bba819bb8a6e22a7b3869e9d5d2e0e9ea02e37e7723d929d00c01ea42ec77029:tezbox
Tezos 3: 0 XTZ (75ops) (tz1a71tEhE91Ajvfe6h6D3PtmqzFgw9z2ioP on 44'/1729'/2'/0') tezbox#2 js:2:tezos:025c3b43734808e419b131a6f1ec9eabc53ffab2ded100ce058cdea4954207495e:tezbox
Tezos 4: 0 XTZ (46ops) (tz1cWajPjDoM8PkHfRztjTQ6kQjt8gWNJfLL on 44'/1729'/3'/0') tezbox#3 js:2:tezos:02218c150bef5a69d92a3215641754dd2c2fbd9669524fab1d3df8bf283bf4290b:tezbox
Tezos 5: 0 XTZ (129ops) (tz1cYtFLpjXoxvhzx9sRTGzZ2E39h87DHFFM on 44'/1729'/4'/0') tezbox#4 js:2:tezos:022cd579dc091bb705d79c0db932e99e24ae782f73bcd2d402c5075e0d314d9cca:tezbox
Tezos 6: 0 XTZ (63ops) (tz1NLebBinaHLoSHR9Fxq5i5h4UnaWvjj1Ln on 44'/1729'/5'/0') tezbox#5 js:2:tezos:021ae461bd4db50e30af19781c6e92c40dceaa6ffa310f75af2d0251f55d599f43:tezbox
Tezos 7: 0 XTZ (102ops) (tz1R7mWitGTgpK93GTbUJLzLhVRdLneT2v9M on 44'/1729'/6'/0') tezbox#6 js:2:tezos:02cd680b205a031991287f9abee3ccc025d987aa25a2e5d98aeaba7eeb023a5bb7:tezbox
Tezos 8: 0 XTZ (45ops) (tz1RB7LTco3eQ24rum89w3qRTNQ9sMZ4RptR on 44'/1729'/7'/0') tezbox#7 js:2:tezos:02066efc3328c54b5ba702108d191a8c6702a9f6eadfaa192eaa5657b5d347f426:tezbox
Tezos 9: 0.576456 XTZ (67ops) (tz1ezgtcfyB5NHDq1QMbdBy5aDbEw6WD6FMS on 44'/1729'/8'/0') tezbox#8 js:2:tezos:028bec289d5f0dc6f31d05756d163899f80a175a869546dbacb661c8f4e75d8c19:tezbox
Tezos 10: 0 XTZ (55ops) (tz1NsM3JroDQsKsWbDjrxbghhF3u7padFNsV on 44'/1729'/9'/0') tezbox#9 js:2:tezos:02d2dd1db87ade44d64cc26dbf85fb975d6ae6d7ab9cb758a68d9dfa25147a03d0:tezbox
Tezos 11 cross: 0 XTZ (35ops) (tz1T7SNUJJAi7fzjFj2hizUknjFRYnaBNgGg on 44'/1729'/10'/0') tezbox#10 js:2:tezos:02026c4393e0fbb7e0ab7d59fdaaee5830d7d82d46c0c7d29627e35a9a90eee1b6:tezbox
Tezos 12: 0 XTZ (38ops) (tz1VS9hSfy3EjyJMVsnV8zHUD7nNDPb9NKf9 on 44'/1729'/11'/0') tezbox#11 js:2:tezos:029db63b09fca352b54d1a6e197526d5a64277c06cfb1822234a09eecfe72d546b:tezbox
Tezos 13: 0 XTZ (50ops) (tz1M52VRnf5cce6UAsYoD4NfZX5GCtoSJpde on 44'/1729'/12'/0') tezbox#12 js:2:tezos:025786e86dc5aafeccf2776d74ee73362242fc45b21aa8a830e0fe349d46df0e22:tezbox
Tezos 14: 0 XTZ (0ops) (tz1NpnP8NrBKMjHzn6uBbjLMcufwissFKXFj on 44'/1729'/13'/0') tezbox#13 js:2:tezos:026ff80bde08570370f50fce8f87f9735fd32d4f976e4fbe1886ed0014afc51ac0:tezbox
Tron 1 cross: 0 TRX (0ops) (TMC1WHV2xjXnVs8jbHH7KU42a2KrQ2Nr2z on 44'/195'/0'/0/0) #0 js:2:tron:TMC1WHV2xjXnVs8jbHH7KU42a2KrQ2Nr2z:
Algorand 1 cross: 0 ALGO (0ops) (7UDPUKCKC3HPGNHUNQPMBZPM3OKTTUK7B3RCXRGMX7XLH54XO3COZI3JPY on 44'/283'/0'/0/0) #0 js:2:algorand:7UDPUKCKC3HPGNHUNQPMBZPM3OKTTUK7B3RCXRGMX7XLH54XO3COZI3JPY:
Ethereum EVM (TEST ONLY DO NOT USE) 1 cross: 0 ETH (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:ethereum_as_evm_test_only:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Arbitrum Goerli 1 cross: 0 𝚝ETH (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:arbitrum_goerli:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Cronos 1 cross: 10.1361 CRO (107ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:cronos:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Cronos 2: 0.0986976 CRO (87ops) (0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xD37d9276401C79C2800DEbb0d6E7F9AAC76De6C0:
Cronos 3: 5.21473 CRO (94ops) (0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6 on 44'/60'/2'/0/0) #2 js:2:cronos:0x208A8F6F1c9eeAb3C65ab00d40c2f2C3e349c7C6:
Cronos 4: 5.53801 CRO (83ops) (0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E on 44'/60'/3'/0/0) #3 js:2:cronos:0x999bC403c86A84863Ec50Ea76bea82c0c8dE369E:
Cronos 5: 0 CRO (0ops) (0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1 on 44'/60'/4'/0/0) #4 js:2:cronos:0x9B416F834722cb90AcC7AB8f7E1C5Da4530c3Cd1:
Fantom 1 cross: 0 FTM (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:fantom:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Flare 1 cross: 0 FLR (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:flare:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Songbird 1 cross: 0 SGB (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:songbird:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Moonbeam 1 cross: 0 GLMR (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
RSK 1 cross: 0 RBTC (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:rsk:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Bittorent Chain 1 cross: 0 BTT (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Kava EVM 1 cross: 0 KAVA (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:kava_evm:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Evmos EVM 1 cross: 0 EVMOS (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:evmos_evm:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
OP Mainnet 1 cross: 0 ETH (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:optimism:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Optimism Goerli 1 cross: 0 𝚝ETH (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:optimism_goerli:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Energy Web 1 cross: 0 EWT (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:energy_web:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Astar 1 cross: 0 ASTR (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:astar:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Metis 1 cross: 0 METIS (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:metis:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Boba 1 cross: 0 ETH (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:boba:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Moonriver 1 cross: 0 MOVR (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:moonriver:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Velas EVM 1 cross: 0 VLX (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Syscoin 1 cross: 0 SYS (0ops) (0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D on 44'/60'/0'/0/0) #0 js:2:syscoin:0x8a6Af0dD602db0A78EaD07cE9e2595815383FD5D:
Polkadot 1 cross: 1 DOT (34ops) (12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:12zrm1RrNvXmNsBNZT7w5eXkgaNZusgN6e9dJpCPWtfj58s:polkadotbip44
Polkadot 2: 0 DOT (39ops) (13ZABr1tkpGKLwW5bj8myYkkEr2Qvh7xovPpoSrWTpEroDcU on 44'/354'/1'/0'/0') polkadotbip44#1 js:2:polkadot:13ZABr1tkpGKLwW5bj8myYkkEr2Qvh7xovPpoSrWTpEroDcU:polkadotbip44
Polkadot 3: 1.93293 DOT (33ops) (13eYWacaQh2G6XZ3pxhGGPr6LtpiNVKDgVoYFNZuRBXenEf8 on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:13eYWacaQh2G6XZ3pxhGGPr6LtpiNVKDgVoYFNZuRBXenEf8:polkadotbip44
Polkadot 4: 0 DOT (9ops) (12UYXroW6DY6qgUhNNRLUiZRApsrGLWViGuNgrqudcKWroTS on 44'/354'/3'/0'/0') polkadotbip44#3 js:2:polkadot:12UYXroW6DY6qgUhNNRLUiZRApsrGLWViGuNgrqudcKWroTS:polkadotbip44
Polkadot 5: 0 DOT (11ops) (15m3y1Pzk9i8BiFpQeZzmsYfvrUSyjkDRfTF2JGR58R997CV on 44'/354'/4'/0'/0') polkadotbip44#4 js:2:polkadot:15m3y1Pzk9i8BiFpQeZzmsYfvrUSyjkDRfTF2JGR58R997CV:polkadotbip44
Polkadot 6: 0 DOT (5ops) (124qrR2azrSEiW2GPVmUBPRy5HiPR2eZEWkR4WnJPMLL5ab3 on 44'/354'/5'/0'/0') polkadotbip44#5 js:2:polkadot:124qrR2azrSEiW2GPVmUBPRy5HiPR2eZEWkR4WnJPMLL5ab3:polkadotbip44
Polkadot 7: 0 DOT (6ops) (144S3J7k5DPj6YuoHP3sKSE8JVsjTcUfPeGBSfe2SNHJgigs on 44'/354'/6'/0'/0') polkadotbip44#6 js:2:polkadot:144S3J7k5DPj6YuoHP3sKSE8JVsjTcUfPeGBSfe2SNHJgigs:polkadotbip44
Polkadot 8: 0 DOT (0ops) (1Lwc2uWX33S3EGXmiTShPP3PLTqtD3KwvFXeLTCQqcCULEJ on 44'/354'/7'/0'/0') polkadotbip44#7 js:2:polkadot:1Lwc2uWX33S3EGXmiTShPP3PLTqtD3KwvFXeLTCQqcCULEJ:polkadotbip44
Performance ⏲ 16min 51s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 71.8s 29min 20s 37.6s 45.1s 8min 35s 21.3s 23min 30s 8min 56s
Bitcoin (4) 1.68ms 1min 40s 11ms N/A N/A N/A N/A N/A
Bitcoin Testnet (7) 0.55ms 1min 55s 3.23ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.26ms 95.4s 13.3s 779ms 10.2s N/A N/A N/A
Bitcoin Gold (4) 0.24ms 78s 6ms 2263ms 37.6s 467ms 45s 54.6s
Dash (6) 0.13ms 80.3s 4.93ms 5s 56.3s 866ms 70.6s 86s
Digibyte (6) 0.18ms 90.5s 7ms 1742ms 48s 969ms 4min 49s 44.6s
DogeCoin (6) 0.19ms 83.8s 1.27ms 4.5s 74.2s 834ms 73.4s 87.8s
Komodo (4) 0.18ms 50.6s 125ms 2259ms 30.9s 583ms 27.4s 29s
Litecoin (6) 0.18ms 79.8s 13ms 3.5s 51s 634ms 55.8s 63.4s
Peercoin (4) 0.19ms 55.4s 0.94ms N/A N/A N/A N/A N/A
PivX (4) 0.27ms 31.9s 2.66ms N/A N/A N/A N/A N/A
Qtum (4) 0.26ms 31.6s 1.08ms N/A N/A N/A N/A N/A
Vertcoin (5) 0.32ms 59.5s 6ms 2976ms 46.5s 680ms 62.5s 69.1s
Viacoin (4) 0.70ms 38.2s 13ms 1065ms 21.7s 300ms 26.6s 27.4s
ZCash (4) 0.26ms 39.1s 1.53ms N/A N/A N/A N/A N/A
Horizen (4) 0.23ms 37.9s 11.7s 1448ms 42.5s 298ms 30s 26.3s
Decred (0) 0.41ms 2871ms N/A N/A N/A N/A N/A N/A
cardano (0) 0.75ms 35s N/A N/A N/A N/A N/A N/A
Celo (0) 823ms 8s N/A N/A N/A N/A N/A N/A
axelar (0) 438ms 1233ms N/A N/A N/A N/A N/A N/A
cosmos (11) 549ms 19.6s 10ms N/A N/A N/A N/A N/A
osmosis (0) 286ms 1677ms N/A N/A N/A N/A N/A N/A
desmos (0) 681ms 3.9s N/A N/A N/A N/A N/A N/A
umee (0) 327ms 1876ms N/A N/A N/A N/A N/A N/A
persistence (0) 1013ms 5.2s N/A N/A N/A N/A N/A N/A
quicksilver (0) 568ms 2220ms N/A N/A N/A N/A N/A N/A
onomy (0) 383ms 3.8s N/A N/A N/A N/A N/A N/A
secret_network (0) 2075ms 6s N/A N/A N/A N/A N/A N/A
stargaze (0) 1604ms 3.2s N/A N/A N/A N/A N/A N/A
Crypto org (6) 1.01ms 31.5s 4.2s 4.68ms 34.5s 12.4s 35.3s N/A
Elrond (0) 204ms 11.6s N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (0) 0.21ms 20s N/A N/A N/A N/A N/A N/A
BSC (9) 1.22ms 38.1s 4.58ms 409ms N/A N/A N/A N/A
Polygon (9) 0.17ms 35.7s 1.82ms 1216ms N/A N/A N/A N/A
Ethereum (0) N/A N/A N/A N/A N/A N/A N/A N/A
Ethereum Classic (5) 0.22ms 44.1s 1.24ms 881ms N/A N/A N/A N/A
Ethereum Goerli (0) N/A N/A N/A N/A N/A N/A N/A N/A
Filecoin (0) 5ms 6.6s N/A N/A N/A N/A N/A N/A
Hedera (0) 0.38ms 1877ms N/A N/A N/A N/A N/A N/A
InternetComputer (0) 0.33ms 5.5s N/A N/A N/A N/A N/A N/A
NEAR (9) 6.3s 87.2s 6.8s 6.1s 25.2s 1507ms 3min 20s N/A
XRP (0) 0.51ms 3.2s N/A N/A N/A N/A N/A N/A
Solana (0) 137ms 25.9s N/A N/A N/A N/A N/A N/A
Stacks (3) 0.37ms 23s 1175ms 1696ms 9.4s 279ms 7min 11s N/A
Stellar (0) 0.64ms 4.7s N/A N/A N/A N/A N/A N/A
Tezos (13) 182ms 71.9s 180ms 791ms 17.3s 85ms N/A N/A
Tron (0) 48.6s 2121ms N/A N/A N/A N/A N/A N/A
Algorand (0) 0.69ms 35.1s N/A N/A N/A N/A N/A N/A
Ethereum EVM (TEST ONLY DO NOT USE) (0) 804ms 2253ms N/A N/A N/A N/A N/A N/A
Polygon EVM (TEST ONLY DO NOT USE) (0) 512ms N/A N/A N/A N/A N/A N/A N/A
Arbitrum Goerli (0) 189ms 3.7s N/A N/A N/A N/A N/A N/A
Cronos (4) 97ms 58.5s 7ms 8.2s 9.3s 1423ms 63.8s 47.9s
Fantom (0) 81ms 7.5s N/A N/A N/A N/A N/A N/A
Flare (0) 63ms 2201ms N/A N/A N/A N/A N/A N/A
Songbird (0) 69ms 1400ms N/A N/A N/A N/A N/A N/A
Moonbeam (0) 88ms 7.6s N/A N/A N/A N/A N/A N/A
RSK (0) 94ms 3.5s N/A N/A N/A N/A N/A N/A
Bittorent Chain (0) 70ms 2519ms N/A N/A N/A N/A N/A N/A
Kava EVM (0) 891ms 2789ms N/A N/A N/A N/A N/A N/A
Evmos EVM (0) 817ms 2441ms N/A N/A N/A N/A N/A N/A
OP Mainnet (0) 316ms 7.3s N/A N/A N/A N/A N/A N/A
Optimism Goerli (0) 68ms 1842ms N/A N/A N/A N/A N/A N/A
Energy Web (0) 65ms 1981ms N/A N/A N/A N/A N/A N/A
Astar (0) 46ms 3.1s N/A N/A N/A N/A N/A N/A
Metis (0) 55ms 2249ms N/A N/A N/A N/A N/A N/A
Boba (0) 828ms 1745ms N/A N/A N/A N/A N/A N/A
Moonriver (0) 785ms 7.3s N/A N/A N/A N/A N/A N/A
Velas EVM (0) 63ms 898ms N/A N/A N/A N/A N/A N/A
Syscoin (0) 41ms 1648ms N/A N/A N/A N/A N/A N/A
Telos (0) 67ms N/A N/A N/A N/A N/A N/A N/A
Polkadot (7) 1559ms 27.5s 1.37ms 231ms N/A N/A N/A N/A

What is the bot and how does it work? Everything is documented here!

Please sign in to comment.