A Bitcoiner’s Guide To Proof-Of-Stake

0 202

a-bitcoiner’s-guide-to-proof-of-stake

A technical and in-depth analysis of the trade-offs that Ethereum’s consensus mechanism makes in its switch to proof-of-stake and how proof-of-work differs.

This is an opinion editorial by Scott Sullivan.

Normally Bitcoiners don’t care too much about what goes on in Shitcoin-land, but now that Ethereum has merged to proof-of-stake (PoS), there’s been quite the buzz on Bitcoin Twitter. Of course, the Bitcoin network itself will remain unaffected, but I think this “upgrade” is still worth paying some attention to. Now that Ethereum has cleansed itself of the “dirty” and “wasteful” externalities associated with proof-of-work (PoW), we can expect the gloves to come off in the narrative war, and I think Bitcoiners should be ready to punch back.

Learning how PoS works is a really good way to internalize the differences and trade-offs between PoW and PoS. Even though I had seen all the high-level arguments against PoS before — that PoS is more permissioned, centralizing, and oligarchical — I’ll admit that without looking into the details, it all felt kind of hand-wavy. By actually diving into the PoS algorithm, we can begin to see how all these properties naturally emerge from first principles. So if you’re curious about how the PoS algorithm works, and why it leads to these kinds of properties, then read on!

Solving The Double-Spend Problem

Let’s start with a quick recap of the problem we’re trying to solve. Suppose we have a large group of participants in a cryptocurrency network trying to maintain a decentralized ledger. Here’s the problem: How can new transactions be added to everyone’s ledger, such that everyone agrees on which new transactions are “correct”? PoW solves this problem quite elegantly: Transactions are grouped together in blocks, whereby each block takes a large amount of computational work to produce. The amount of work required can move up or down to ensure blocks are produced every ten minutes on average, giving each new block plenty of time to propagate throughout the network before the next one is created. Any ambiguity is resolved by selecting the chain with the most work, and double-spending is prevented due to requiring at least 51% of the global hashpower for a double-spend block to catch up.

But suppose now we want to throw away Satoshi Nakamoto’s key insight that made all of this possible in the first place. After all, those pesky ASICs are loud and annoying, and they consume more energy than all of George Soros, Bill Gates and Hillary Clinton’s private jets combined. Is there some way we can unambiguously agree on which transactions are true just by talking it out?

Ethereum’s proof-of-stake proposes to solve this problem using two key ingredients. The first is to make special “checkpoint blocks” every now and then, whose purpose is to give assurance to everyone in the network about the “truth” of the system at various points in time. Creating a checkpoint requires a two-thirds majority vote by stake, so there is some assurance that the majority of validators agreed on what the truth actually was at that point in time. The second ingredient is to punish users for adding ambiguity to the network, a process known as “slashing.” For example, if a validator were to create a fork, or vote on an older sidechain (similar to a 51% attack), then their stake would get slashed. Validators can also be slashed for inactivity, but not as much.

This leads us to our first principle behind PoS, which is that PoS is based on a negative (penalty-based) incentive system.

This contrasts heavily with Bitcoin and proof-of-work, which is a positive (reward-based) incentive system. In Bitcoin, miners can attempt to break the rules — badly formatted blocks, invalid transactions, and so on — but these blocks will just get ignored by full nodes. The worst-case scenario is a bit of wasted energy. Miners are also free to build on older blocks, but without 51% of the hashpower, these chains will never catch up, again just wasting energy. Any miner who participates in these actions, whether intentionally or not, need not worry about losing their accumulated bitcoin or mining machines, but they won’t get new rewards. Rather than live in fear, bitcoin miners can err on the side of taking action and risk.

The world is a very different place for validators living in Ethereum-land. Instead of working hard and being rewarded for adding security to the network, validators do no actual work, but must be careful that their node never misbehaves, lest they watch their savings go up in flames. If any proposed changes were made to the network, a validator’s first instinct would be to comply with whatever everyone else was doing, or else risk getting slashed. To be a validator is like walking on eggshells everyday.

(Source)

By the way, living under a negative incentive system is one of the, ahem, “benefits” of proof-of-stake, according to the Ethereum network’s co-founder Vitalik Buterin’s FAQ:

(Source)

So how would slashing actually work on a technical level? Wouldn’t we need to first create a list of all the validators, in order to have something to slash in the first place? The answer is yes. To become a validator in Ethereum, one must first move ETH into a special “staking” address. Not only is this list needed for slashing, but also for voting since a two-thirds majority vote is needed for checkpoint blocks.

There are some interesting implications to maintaining a list of all validators at all times. How hard is it to join? How hard is it to leave? Do validators get to vote on the status of other validators?

This brings us to our second principle behind PoS, which is that PoS is a permissioned system.

The first step in becoming a validator is to deposit some ETH into a special staking address. How much ETH? The minimum required is 32 ETH, or about $50,000 at the time of this writing. For context, a decent bitcoin mining rig typically runs in the single-digit thousands of dollars, and a home miner can start with a single S9 for a few hundred bucks. To be fair, ETH’s high entry fee has a technical justification, since a higher stake means fewer validators, which lowers bandwidth.

So the deposit fee is high, but at least anyone who owns 32 ETH is free to join or leave at any time, right? Not quite. There are security risks if large coalitions of validators were to all enter or exit at the same time. For example, if a majority of the network all left at once, then they could double-spend a finalized block by replaying a fork in which they never left, without getting slashed on either chain. To mitigate this risk, the on- and off-ramps have a built-in throughput limit. Currently this limit is set to max(4,|V|/65536) validators per epoch (every 6.4 minutes), and is the same for both entering and leaving. This translates roughly to one full validator set every ten months.

By the way, even though it’s currently possible for validators to publish an “exit” transaction and stop validating, the code to actually withdraw funds hasn’t even been written yet. Sounds a bit like “Hotel California” …

(Source)

There is one last point about the incentives behind approving new validators. Suppose you were a shareholder in a large and stable company paying regular dividends every quarter. Would it make sense to give new shares away for free? Of course not, since doing so would dilute the dividends of all existing shareholders. A similar incentive structure exists in PoS, since each new validator dilutes the revenue of all existing validators.

In theory, validators could simply censor every single transaction that adds a new validator; however, in practice, I think such a blunt approach would be unlikely. This would be very noticeable and would destroy Ethereum’s image of “decentralization” overnight, potentially crashing the price. I think a more subtle approach would be used instead. For example, the rules could slowly change over time making it harder to become a validator, with excuses being offered such as “security” or “efficiency.” Any policies that enrich existing validators at the expense of new validators would have financial tailwinds, whether spoken out loud or not. We can start to see why PoS would tend towards oligarchy.

(Source)

Overview Of The Casper Algorithm

Now that we know the high-level strategy behind PoS, how does the algorithm actually work? The main ideas behind checkpoints and slashing were put forward in an algorithm called Casper, so we’ll start there. Casper itself doesn’t actually specify anything about how to produce blocks, but rather provides a framework for how to superimpose a checkpoint/slashing strategy on top of some already-existing blockchain tree.

First, some arbitrary constant (C) is chosen to be the “checkpoint spacing” number, which determines how many blocks occur between checkpoints; for example, if C=100 then checkpoints would occur at blocks 0, 100, 200, and so on. Then the nodes all vote on which checkpoint block should be the next “justified” checkpoint. Rather than vote on single blocks in isolation, validators actually vote on (s,t) checkpoint pairs, which link some previously justified checkpoint source “s” to some new target checkpoint “t.” Once a checkpoint link (s,t) gets a two-thirds majority vote by stake, then “t” becomes a new justified checkpoint. The diagram below shows an example tree of checkpoints:

(Source)

In this diagram, the h(b) function is referring to the “checkpoint height,” e.g., the block’s multiple of 100. You may have noticed that not every hundredth block is necessarily justified, which can happen if the vote failed at a certain height. For example, suppose at height 200 two separate checkpoints each received 50% of the vote. Since voting twice is a slashable offense, the system would get “stuck” unless some validators willingly slashed their own stake to achieve a two-thirds vote. The solution would be for everyone to “skip” checkpoint 200 and “try again” at block 300.

Just because a checkpoint is justified, does not mean it is finalized. In order for a checkpoint to count as finalized, it must be immediately followed by another justified checkpoint at the next possible height. For example, if checkpoints 0, 200, 400, 500 and 700 were all justified and linked together, only checkpoint 400 would count as “finalized,” since it is the only one immediately followed by another justified checkpoint.

Because the terminology is very precise, let’s recap our three categories. A “checkpoint” is any block which occurs at height C*n, so if C=100, every block with height 0, 100, 200, 300, and so on would all be checkpoints. Even if multiple blocks were created at height 200, they would both be “checkpoints.” A checkpoint is then “justified” if it’s either the root block at height 0, or if two-thirds of the validators voted to create a link between some previously justified checkpoint and the current checkpoint. A justified checkpoint is then “finalized” if it then links to another justified checkpoint at the next possible height. Not every checkpoint necessarily becomes justified and not every justified checkpoint necessarily becomes finalized, even in the final chain.

Casper Slashing Rules

The slashing rules in Casper are designed such that it is impossible for two finalized checkpoints to exist in two separate forks, unless at least one-third of the validators broke the slashing rules.

In other words, only finalized checkpoints should ever be counted as unambiguous “truth” blocks. It’s even possible for two justified checkpoints to occur on both sides of a fork, just not two finalized checkpoints. There’s also no guarantee about when or where the next finalized checkpoint will occur, just that if a chain split were to occur, then you should sit back and wait until a finalized block shows up somewhere, and once it does then you know that’s the “correct” chain.

There are two slashing rules in Casper which enforce this property:

(Source)

The first rule forbids anyone from double-voting on checkpoints with the same target height, so if a validator voted for two different checkpoint blocks with target height 200, that would be a slashable offense. The purpose of this rule is to prevent the chain from splitting into two different justified checkpoints with the same height, since this would require 2/3 + 2/3 = 4/3 of the total validator votes, implying that at least one-third of the validators broke the slashing rules. However, as we saw previously, it’s possible for justified checkpoints to “skip” certain block heights. What prevents a chain from splitting into different target heights? For example, couldn’t checkpoint 200 fork into justified checkpoints at 300 and 400 without anyone getting slashed?

That’s where the second rule comes in, which basically prevents validators from “sandwiching” votes inside other votes. For example, if a validator voted for both 300→500 and 200→700, that would be a slashable offense. In the case of a chain split, once one branch sees a finalized checkpoint, it becomes impossible for the other branch to see a justified checkpoint afterwards unless at least one-third of the validators broke rule #2.

To see why, suppose the blockchain forked into justified checkpoints 500→800 and 500→900, then at some point the first chain saw a finalized checkpoint with link 1700→1800. Since both 1700 and 1800 can only be justified on fork #1 (assuming nobody broke the first slashing rule), the only way fork #2 could see a justified checkpoint after 1800 is if there was some voted-in link between heights H<1700 and H>1800. But since this vote would “sandwich” the 1700→1800 link and require a two-thirds vote, and the 1700→1800 already passed with a two-thirds vote, then at least one-third of the validators would need to break rule #2. The Casper paper has a nice diagram demonstrating this property:

(Source)

And that’s it, just follow the Casper rules and you’re good!

(Source)

Seems pretty simple, right? I’m sure PoS would only ever use slashing as an absolute last resort to maintain consensus, and not as an extortionary mechanism to pressure validators into behaving a certain way … right?

(Source)

This brings us to our third principle behind PoS: There are no rules. The “rules” are whatever everyone else says they are.

(Source)

One day your node could be technically following every Casper commandment to the letter, and the next day your savings could be slashed because you were doing something everyone else didn’t like. Approved a “team red” transaction that one time? Tomorrow the “team blue” majority might slash you. Or maybe you did the opposite and omitted too many “team red” transactions? Tomorrow the “team red” majority might slash you for censorship. The ability to slash goes far beyond the limited scope of OFAC (Office of Foreign Assets Control) censorship. PoS is like a nonstop Mexican standoff, where the implicit threat of slashing is ever-present at all times.

(Source)

I wouldn’t be surprised if in a contentious hard fork, both sides hard-coded the validation rules of the other fork, just in case they wanted to punish anyone who joined the “wrong” side. Of course, this would be a nuclear option, and like nukes, each side might only choose to strike in retaliation. I would guess that most individual validators are neutral in that they would prioritize financial self-preservation over political self-sacrifice, but might outwardly take a side if they sensed that was the correct move to avoid getting slashed.

What Time Is It?

Now that we know the basics of checkpoints and slashing, we can move onto the actual algorithm used in Ethereum, called Gasper. This is a portmanteau of Casper, which we’ve already covered, and GHOST, a strategy for selecting the “best” chain of blocks in between checkpoints.

The first thing to understand about Gasper is that time itself is the main independent variable. Real-world time is divided into twelve-second units called “slots,” where each slot contains at most one block. These slots then form larger groups called “epochs,” where each epoch refers to one checkpoint. Each epoch contains 32 slots, making them 6.4 minutes long.

It’s worth noting that this paradigm flips the causal relation between time and block production when compared to PoW. In PoW, blocks are produced because a valid hash was found, not because enough time had passed. But in Gasper, blocks are produced because enough real-world time has passed to get to the next slot. I can only imagine the tricky timing bugs such a system may encounter, especially when it’s not just one program running on one computer, but tens of thousands of computers trying to run in sync all over the world. Hopefully, the Ethereum developers are familiar with the falsehoods programmers believe about time.

Now suppose you were starting up a validator node, and you were syncing the blockchain for the first time. Just because you observed that certain blocks referenced certain timestamps, how could you be sure that those blocks were really produced at those times? Since block production doesn’t require any work, couldn’t a malicious group of validators simulate an entirely fake blockchain from day one? And if you saw two competing blockchains, how would you know which is true?

This brings us to our fourth principle behind PoS, which is that PoS relies on subjective truth.

There is simply no objective way to pick between two competing blockchains, and any new nodes to the network must ultimately trust some existing source of truth to resolve any ambiguity. This contrasts significantly with Bitcoin, where the “true” chain is always the one with the most work. It doesn’t matter if a thousand nodes are telling you chain X, if a single node broadcasts chain Y and it contains more work, then Y is the correct blockchain. A block’s header can prove its own worth, completely removing the need for trust.

(Source)

By relying on subjective truth, PoS reintroduces the need for trust. Now I’ll admit, I’m perhaps slightly biased, so if you want to read the other side, Buterin wrote an essay containing his views here. I will admit that in practice, a chain split doesn’t seem all that likely given the Casper rules, but regardless, I do get some peace of mind knowing that this isn’t even a possibility in Bitcoin.

Block Production And Voting

Now that we’re familiar with slots and epochs, how are individual blocks produced and voted on? At the beginning of each epoch, the full validator set is “randomly” partitioned into 32 groups, one for each slot. During each slot, one validator is “randomly” chosen to be the block producer, while the others are chosen to be the voters (or “attestors”). I’m putting “randomly” in quotes because the process must be deterministic, since everyone must unambiguously agree on the same validator sets. However this process must also be non-exploitable, since being the block producer is a highly privileged position due to the extra rewards available from miner extractable value (MEV), or as it’s being renamed, “maximum extractable value.” “Ethereum Is A Dark Forest” is a great read on this.

Once a block is produced, how do the other validators vote or “attest” to it? Block proposal is supposed to happen within the first half (six seconds) of a slot, and attesting within the second half, so in theory there should be enough time for the attestors to vote on their slot’s block. But what happens if the block proposer is offline or fails to communicate or builds on a bad block? The job of an attestor is not necessarily to vote on that slot’s block, but rather whichever block “looks the best” from their view at that point in time. Under normal conditions this will usually be the block from that slot, but could also be an older block if something went wrong. But what does “look the best” mean, technically? This is where the GHOST algorithm comes in.

GHOST stands for “Greediest Heaviest Observed SubTree” and is a greedy recursive algorithm for finding the block with the most “recent activity.” Basically, this algorithm looks at all the recent blocks in the form of a tree, and walks down the tree by greedily selecting the branch with the most cumulative attestations on that entire subbranch. Only the most recent attestation of each validator counts towards this sum, and eventually this process lands on some leaf block.

(Source)

Attestations are not just votes for the current best block, but also the for the most recent checkpoint which lead to that block. It’s worth noting in Gasper, checkpoints are based on epochs rather than block heights. Each epoch refers to exactly one checkpoint block, which is either the block in that epoch’s first slot, or if that slot was skipped, then the most recent block before that slot. The same block can theoretically be a checkpoint in two different epochs if an epoch somehow skipped every single slot, so checkpoints are represented using (epoch, block) pairs. In the diagram below, EBB stands for “epoch boundary block” and represents the checkpoint for a specific epoch, while “LEBB” stands for “last epoch boundary block” and represents the most recent checkpoint overall.

(Source)

Similar to Casper, a checkpoint becomes justified once the total number of attestations passes the two-thirds threshold, and finalized if it was immediately followed by another justified checkpoint in the next epoch. An example of how this voting works is shown below:

(Source)

There are two slashing conditions in Gasper, which are analogous to the slashing rules in Casper:

  1. No voting twice in the same epoch.
  2. No vote can contain epoch checkpoints which “sandwich” another vote’s epoch checkpoints.

Despite being based on epochs instead of block heights, the Casper rules still ensure that no two finalized checkpoints can occur on different chains unless one-third of the validators could be slashed.

It’s also worth noting that attestations are included in the blocks themselves. Similar to how a block in PoW justifies itself using its hash, a finalized checkpoint in PoS justifies itself using all of its past attestations. When someone does break the slashing rules, those bad attestations are included in a block which proves the violation. There’s also a small reward for the block producer who included the violation, in order to provide an incentive to punish rulebreakers.

Forks

It is interesting to think about what would happen in the case of a fork. To quickly recap, a fork refers to a change in the consensus rules, and they come in two varieties: hard forks and soft forks. In a hard fork, the new rules are not backwards-compatible, potentially resulting in two competing blockchains if not everyone switches over. In a soft fork, the new rules are more restrictive than the old rules, while keeping them backwards-compatible. Once over 50% of the miners or validators start enforcing the new rules, the consensus mechanism switches over without splitting the chain. Soft forks are generally associated with upgrades and new transaction types, but they also technically include any type of censorship enforced by a 51% majority. PoS also has a third type of “fork” not present in PoW: a chain split without any changes to the rules. But since we’ve already covered this, we’ll focus on hard and soft forks.

Let’s start with the simplest case: a standalone contentious hard fork. By contentious, I mean a rule change that divides the users politically. A bug fix or minor technical change likely wouldn’t be contentious, but something like changing the validation reward probably would be. If a hard fork was contentious enough, it could result in a chain split and would get resolved economically by users selling one chain and buying the other. This would be similar to the Bitcoin Cash split in 2017, which seems to have a clear winner:

(Source)

Now suppose the validators were sitting around one day and decided they weren’t getting paid enough, and decided they should raise their rewards from 5% per year to 10% per year. This would be a clear trade-off in favor of the validators at the expense of non-validators who would now be getting more diluted. In the event of a chain split, which chain would win?

This leads to our fifth principle of PoS, which is that money is power.

Out of the 120M ETH in existence, over 10% of that is currently being staked, as seen in the chart below:

(Source)

Given a contentious hard fork between the validators and non-validators, assuming that all the non-validators market-sold the new chain and all the validators market-sold the old chain, then in theory the old chain would win, since the majority of ETH would still held by non-validators (90% versus 10%). But there’s a few more things to consider. First, after any chain split, the validators would still be “in control” of both blockchains. If the validators were able to influence the other chain, they might be incentivized to make it fail. Second, there’s also the nuclear option discussed earlier, whereby the new chain might slash anyone still validating the old chain to pressure them into joining. Finally, the validators would likely carry significant social and political influence over everyone else in the network. If Buterin, the Ethereum Foundation and the exchanges all decided in unison they were going to raise the staking reward, I find it difficult to believe that regular Ethereum users and validators could keep the old fork going while also making it more valuable through buying pressure.

Moving on to soft forks, what would happen in a contentious soft fork, such as OFAC censorship? The validators are fairly centralized, as we can see in the chart below:

(Source)

Unlike PoW where miners can switch pools at the press of a button, validators in Ethereum are locked into a staking address until they process an exit transaction. If Lido and the top exchanges were made to censor certain transactions, they could easily pass the two-thirds majority needed for deciding checkpoints. Earlier, we saw how Buterin and the other ETH validators could try to counter a censorship soft fork with their own counter-censorship hard fork, while slashing the censors in the process. Even if they succeeded in creating a fork, a lot of value would be destroyed in the process, both from the slashing and from a loss of trust.

Closing Thoughts

In this essay, we looked at how PoS solves the double-spend problem with Gasper, a combination of checkpoint/slashing rules called Casper, and a “best block” voting rule called GHOST. To recap, Gasper divides time into units called slots, where each slot can have at most one block, and the slots are grouped into epochs, where each epoch refers to one checkpoint. If a two-thirds majority votes on a checkpoint, it becomes justified, and if two justified checkpoints occur in a row, the first of those two checkpoints becomes finalized. Once a checkpoint becomes finalized, it becomes impossible for a parallel chain to be finalized, unless one-third of the validators could get slashed.

In this process we uncovered five principles of PoS:

  1. PoS uses a negative (penalty-based) incentive structure.
  2. PoS is a permissioned system.
  3. PoS has no rules.
  4. PoS relies on subjective truth.
  5. In PoS, money is power.

Each of these principles has opposite behavior in PoW:

  1. PoW uses a positive (reward-based) incentive system.
  2. PoW is a permissionless system (anyone can start or stop mining at any time).
  3. In PoW, forks which change the rules get ignored.
  4. PoW relies on objective truth.
  5. In PoW, miners serve the users and have little power themselves.

I believe everyone should strive to create the kind of world that they want to live in. If, like me, you want to live in a permissionless world where you can have control over your money, where hard work is rewarded and passive ownership is a liability and where your money will store its value far into the future without changing on a whim, then you may want to think carefully about the trade-offs between PoW and PoS, and fight in favor of the principles you want to live by.

This is a guest post by Scott Sullivan. Opinions expressed are entirely their own and do not necessarily reflect those of BTC Inc. or Bitcoin Magazine.

The post A Bitcoiner’s Guide To Proof-Of-Stake appeared first on BTC Ethereum Crypto Currency Blog.

Source

Leave A Reply

bitcoin
Bitcoin (BTC) $ 64,297.00 0.20%
ethereum
Ethereum (ETH) $ 1,916.36 1.10%
tether
Tether (USDT) $ 0.999288 0.00%
bnb
BNB (BNB) $ 601.76 0.20%
usd-coin
USDC (USDC) $ 0.999697 0.00%
xrp
XRP (XRP) $ 1.00 0.90%
solana
Solana (SOL) $ 76.94 1.80%
tron
TRON (TRX) $ 0.332998 0.40%
figure-heloc
Figure Heloc (FIGR_HELOC) $ 1.01 0.10%
staked-ether
Lido Staked Ether (STETH) $ 2,265.05 3.46%
hyperliquid
Hyperliquid (HYPE) $ 58.30 1.00%
dogecoin
Dogecoin (DOGE) $ 0.070017 0.40%
usds
USDS (USDS) $ 0.999985 0.00%
rain
Rain (RAIN) $ 0.013061 0.10%
leo-token
LEO Token (LEO) $ 9.25 2.20%
zcash
Zcash (ZEC) $ 502.73 0.70%
wrapped-steth
Wrapped stETH (WSTETH) $ 2,779.67 3.22%
monero
Monero (XMR) $ 412.45 0.60%
chainlink
Chainlink (LINK) $ 9.64 2.60%
wrapped-bitcoin
Wrapped Bitcoin (WBTC) $ 76,243.00 3.12%
cardano
Cardano (ADA) $ 0.175425 1.70%
binance-bridged-usdt-bnb-smart-chain
Binance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 0.998762 0.02%
whitebit
WhiteBIT Coin (WBT) $ 55.47 0.20%
wrapped-beacon-eth
Wrapped Beacon ETH (WBETH) $ 2,466.93 3.47%
stellar
Stellar (XLM) $ 0.156396 1.50%
dai
Dai (DAI) $ 0.999947 0.00%
bitcoin-cash
Bitcoin Cash (BCH) $ 202.74 0.10%
wrapped-eeth
Wrapped eETH (WEETH) $ 2,465.31 3.39%
ethena-usde
Ethena USDe (USDE) $ 0.999645 0.00%
usd1-wlfi
USD1 (USD1) $ 0.999194 0.00%
susds
sUSDS (SUSDS) $ 1.08 0.16%
the-open-network
Gram (prev. Toncoin) (GRAM) $ 1.32 0.70%
canton-network
Canton (CC) $ 0.089859 1.40%
global-dollar
Global Dollar (USDG) $ 1.00 0.00%
coinbase-wrapped-btc
Coinbase Wrapped BTC (CBBTC) $ 76,366.00 3.12%
litecoin
Litecoin (LTC) $ 44.52 0.60%
hashnote-usyc
Circle USYC (USYC) $ 1.13 0.00%
hedera-hashgraph
Hedera (HBAR) $ 0.067427 2.80%
weth
WETH (WETH) $ 2,268.37 3.40%
paypal-usd
PayPal USD (PYUSD) $ 0.999726 0.00%
blackrock-usd-institutional-digital-liquidity-fund
BlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00 0.00%
avalanche-2
Avalanche (AVAX) $ 6.36 0.60%
usdt0
USDT0 (USDT0) $ 0.998824 0.03%
sui
Sui (SUI) $ 0.655921 2.00%
tether-gold
Tether Gold (XAUT) $ 4,341.51 0.90%
shiba-inu
Shiba Inu (SHIB) $ 0.000004 2.10%
memecore
MemeCore (M) $ 1.14 1.90%
crypto-com-chain
Cronos (CRO) $ 0.045884 0.40%
ondo-us-dollar-yield
Ondo US Dollar Yield (USDY) $ 1.14 0.10%
okb
OKB (OKB) $ 101.50 4.10%
ethena-staked-usde
Ethena Staked USDe (SUSDE) $ 1.22 0.04%
near
NEAR Protocol (NEAR) $ 1.61 1.60%
uniswap
Uniswap (UNI) $ 3.33 2.50%
world-liberty-financial
World Liberty Financial (WLFI) $ 0.060080 0.20%
pax-gold
PAX Gold (PAXG) $ 4,350.81 1.00%
bittensor
Bittensor (TAO) $ 192.18 0.10%
ripple-usd
Ripple USD (RLUSD) $ 1.00 0.00%
bitway
Bitway (BTW) $ 0.623243 68.90%
aster-2
Aster (ASTER) $ 0.600814 0.10%
ondo-finance
Ondo (ONDO) $ 0.324742 1.20%
usdd
USDD (USDD) $ 0.999246 0.00%
little-pepe-5
Little Pepe (LILPEPE) $ 2.16 99,999.99%
wrapped-bot
Wrapped BOT (WBOT) $ 9.62 0.87%
htx-dao
HTX DAO (HTX) $ 0.000002 3.50%
syrupusdc
syrupUSDC (SYRUPUSDC) $ 1.15 0.04%
mantle
Mantle (MNT) $ 0.433773 1.50%
aave
Aave (AAVE) $ 88.11 0.30%
morpho
Morpho (MORPHO) $ 2.04 3.20%
falcon-finance
Falcon USD (USDF) $ 0.995723 0.00%
bfusd
BFUSD (BFUSD) $ 0.999051 0.10%
sky
Sky (SKY) $ 0.056053 3.20%
polkadot
Polkadot (DOT) $ 0.763796 3.60%
united-stables
United Stables (U) $ 0.999346 0.00%
internet-computer
Internet Computer (ICP) $ 2.22 2.40%
usdgo
USDGO (USDGO) $ 1.00 0.00%
bitget-token
Bitget Token (BGB) $ 1.67 0.00%
pump-fun
Pump.fun (PUMP) $ 0.002979 6.90%
spiko-amundi-overnight-swap-fund-eur
Spiko Amundi Overnight Swap Fund (EUR) (EURSAFO) $ 1.17 0.20%
worldcoin-wld
Worldcoin (WLD) $ 0.316529 0.70%
pepe
Pepe (PEPE) $ 0.000003 2.00%
jupiter-perpetuals-liquidity-provider-token
Jupiter Perpetuals Liquidity Provider Token (JLP) $ 4.00 2.64%
ethereum-classic
Ethereum Classic (ETC) $ 6.12 1.20%
blockchain-capital
Blockchain Capital (BCAP) $ 105.87 0.00%
pi-network
Pi Network (PI) $ 0.086474 0.20%
superstate-short-duration-us-government-securities-fund-ustb
Invesco Short Duration US Government Securities Fund (USTB) $ 11.18 0.00%
eutbl
Spiko EU T-Bills Money Market Fund (EUTBL) $ 1.23 0.20%
jito-staked-sol
Jito Staked SOL (JITOSOL) $ 124.46 4.71%
kucoin-shares
KuCoin (KCS) $ 6.56 0.70%
just
JUST (JST) $ 0.107534 0.10%
kelp-dao-restaked-eth
Kelp DAO Restaked ETH (RSETH) $ 2,404.69 3.37%
polygon-ecosystem-token
POL (ex-MATIC) (POL) $ 0.082117 3.60%
janus-henderson-anemoy-treasury-fund
Janus Henderson Anemoy Treasury Fund (JTRSY) $ 1.11 0.00%
binance-peg-weth
Binance-Peg WETH (WETH) $ 2,262.26 3.62%
ethena
Ethena (ENA) $ 0.085115 3.70%
rocket-pool-eth
Rocket Pool ETH (RETH) $ 2,631.35 3.29%
quant-network
Quant (QNT) $ 56.65 1.40%
stable-2
​​Stable (STABLE) $ 0.030097 0.50%
binance-bridged-usdc-bnb-smart-chain
Binance Bridged USDC (BNB Smart Chain) (USDC) $ 0.999945 0.02%
cosmos
Cosmos Hub (ATOM) $ 1.41 0.30%
gatechain-token
Gate (GT) $ 6.69 0.10%
wbnb
Wrapped BNB (WBNB) $ 759.61 1.56%
algorand
Algorand (ALGO) $ 0.078794 1.80%
ignition-fbtc
Function FBTC (FBTC) $ 76,389.00 3.48%
kaspa
Kaspa (KAS) $ 0.025470 0.30%
nexo
NEXO (NEXO) $ 0.701342 0.50%
janus-henderson-anemoy-aaa-clo-fund
Janus Henderson Anemoy AAA CLO Fund (JAAA) $ 1.05 0.00%
gho
GHO (GHO) $ 0.998528 0.00%
ylds
YLDS (YLDS) $ 0.999274 0.00%
syrupusdt
syrupUSDT (SYRUPUSDT) $ 1.11 0.05%
render-token
Render (RENDER) $ 1.27 0.50%
venice-token
Venice Token (VVV) $ 13.81 2.80%
beldex
Beldex (BDX) $ 0.081952 1.60%
binance-staked-sol
Binance Staked SOL (BNSOL) $ 108.24 4.48%
lighter
Lighter (LIT) $ 2.30 0.30%
jupiter-exchange-solana
Jupiter (JUP) $ 0.167721 1.20%
usual-usd
Usual USD (USD0) $ 0.998715 0.00%
xdce-crowd-sale
XDC Network (XDC) $ 0.026843 0.10%
filecoin
Filecoin (FIL) $ 0.637347 1.80%
new-x-ceo-is-back
NEW X CEO IS BACK (XFLOKI) $ 0.506041 99,999.99%
flare-networks
Flare (FLR) $ 0.005876 0.30%
bridged-usdc-polygon-pos-bridge
Polygon Bridged USDC (Polygon PoS) (USDC.E) $ 0.999720 0.00%
arbitrum
Arbitrum (ARB) $ 0.076201 2.40%
solv-btc
Solv Protocol BTC (SOLVBTC) $ 76,461.00 2.70%
pancakeswap-token
PancakeSwap (CAKE) $ 1.54 5.40%
lombard-staked-btc
Lombard Staked BTC (LBTC) $ 76,491.00 3.15%
true-usd
TrueUSD (TUSD) $ 0.997859 0.00%
ether-fi
Ether.fi (ETHFI) $ 0.479935 0.20%
hash-2
Provenance Blockchain (HASH) $ 0.008365 0.50%
clbtc
clBTC (CLBTC) $ 76,920.00 2.29%
bianrensheng
币安人生 (BinanceLife) (币安人生) $ 0.466776 0.00%
euro-coin
EURC (EURC) $ 1.16 0.20%
aptos
Aptos (APT) $ 0.535306 2.90%
hastra-prime
Hastra PRIME (PRIME) $ 1.05 0.00%
a7a5
A7A5 (A7A5) $ 0.011652 0.80%
injective-protocol
Injective (INJ) $ 4.22 5.20%
aerodrome-finance
Aerodrome Finance (AERO) $ 0.401980 0.90%
xmr1
XMR1 (XMR1) $ 395.39 0.40%
stakewise-v3-oseth
StakeWise Staked ETH (OSETH) $ 2,419.84 1.91%
pudgy-penguins
Pudgy Penguins (PENGU) $ 0.006172 3.80%
dash
Dash (DASH) $ 29.72 1.00%
tbtc
tBTC (TBTC) $ 70,942.00 7.49%
kinetic-staked-hype
Kinetiq Staked HYPE (KHYPE) $ 33.97 1.80%
vechain
VeChain (VET) $ 0.004398 0.10%
virtual-protocol
Virtuals Protocol (VIRTUAL) $ 0.572949 0.50%
ousg
Ondo Short-Term U.S. Government Bond Fund (OUSG) $ 116.27 0.00%
curve-dao-token
Curve DAO (CRV) $ 0.236513 4.00%
usdtb
USDtb (USDTB) $ 0.999391 0.00%
first-digital-usd
First Digital USD (FDUSD) $ 0.997126 0.00%
official-trump
Official Trump (TRUMP) $ 1.41 1.60%
c8ntinuum
c8ntinuum (CTM) $ 0.087592 8.52%
kinesis-gold
Kinesis Gold (KAU) $ 139.84 1.20%
sun-token
Sun Token (SUN) $ 0.017118 3.20%
mantle-staked-ether
Mantle Staked Ether (METH) $ 2,455.82 3.44%
sofiusd
SoFiUSD (SOFID) $ 0.999056 0.00%
pyth-network
Pyth Network (PYTH) $ 0.038667 2.70%
polygon-pos-bridged-dai-polygon-pos
Polygon PoS Bridged DAI (Polygon POS) (DAI) $ 0.999983 0.01%
apxusd
apxUSD (APXUSD) $ 0.932999 0.70%
resolv-wstusr
Resolv wstUSR (WSTUSR) $ 1.13 0.06%
gnosis
Gnosis (GNO) $ 114.06 8.40%
coca
COCA (COCA) $ 1.30 5.99%
spx6900
SPX6900 (SPX) $ 0.320469 2.60%
unibase
Unibase (UB) $ 0.118921 5.40%
doge-strategy
Doge Strategy (DOGESTR) $ 0.288297 99,999.99%
layerzero
LayerZero (ZRO) $ 0.834378 8.10%
liquid-staked-ethereum
Liquid Staked ETH (LSETH) $ 2,406.26 2.78%
midnight-3
Midnight (NIGHT) $ 0.017496 2.30%
arbitrum-bridged-wbtc-arbitrum-one
Arbitrum Bridged WBTC (Arbitrum One) (WBTC) $ 76,200.00 2.99%
celestia
Celestia (TIA) $ 0.300164 0.90%
bitcoin-sv
Bitcoin SV (BSV) $ 14.22 3.90%
jito-governance-token
Jito (JTO) $ 0.549328 5.90%
the9bit
The9bit (9BIT) $ 0.042627 0.66%
apenft
AINFT (NFT) $ 0.000000 1.00%
wrapped-flare
Wrapped Flare (WFLR) $ 0.009961 0.58%
velvet
Velvet (VELVET) $ 0.653948 30.40%
olympus
Olympus (OHM) $ 18.24 0.50%
l2-standard-bridged-weth-base
L2 Standard Bridged WETH (Base) (WETH) $ 2,266.86 3.46%
fetch-ai
Artificial Superintelligence Alliance (FET) $ 0.121037 0.80%
steakhouse-usdc-morpho-vault
Steakhouse USDC Morpho Vault (STEAKUSDC) $ 1.12 0.00%
onyc
OnRe Tokenized Reinsurance (ONYC) $ 1.14 0.00%
terra-luna
Terra Luna Classic (LUNC) $ 0.000048 2.10%
sei-network
Sei (SEI) $ 0.038630 0.10%
bittorrent
BitTorrent (BTT) $ 0.000000 1.00%
monad
Monad (MON) $ 0.021580 2.10%
binance-peg-xrp
Binance-Peg XRP (XRP) $ 1.59 1.41%
lido-dao
Lido DAO (LDO) $ 0.304835 2.40%
ether-fi-liquid-eth
Ether.Fi Liquid ETH (LIQUIDETH) $ 2,443.47 3.07%
reallink
RealLink (REAL) $ 0.074373 0.30%
renzo-restaked-eth
Renzo Restaked ETH (EZETH) $ 2,421.84 3.59%
pieverse
Pieverse (PIEVERSE) $ 0.870541 4.40%
royal-dollar
Royal Dollar (RUSD) $ 0.998700 233.10%
noon
Noon (NOON) $ 0.751949 3,924.05%
kinesis-silver
Kinesis Silver (KAG) $ 63.09 3.50%
sbtc-2
sBTC (SBTC) $ 77,039.00 2.14%
pendle
Pendle (PENDLE) $ 1.30 1.50%
ribbita-by-virtuals
Ribbita by Virtuals (TIBBIR) $ 0.222545 30.00%
blockstack
Stacks (STX) $ 0.118868 0.20%
jupiter-staked-sol
Jupiter Staked SOL (JUPSOL) $ 115.56 4.52%
tezos
Tezos (XTZ) $ 0.199743 0.10%
savings-usdd
Savings USDD (SUSDD) $ 1.03 0.02%
frax
Legacy Frax Dollar (FRAX) $ 0.991258 0.10%
peanut-2-2
Peanut (PEANUT) $ 0.000595 14.90%
kite-2
Kite (KITE) $ 0.090559 3.30%
crvusd
crvUSD (CRVUSD) $ 0.999058 0.00%
msol
Marinade Staked SOL (MSOL) $ 133.18 5.83%
conflux-token
Conflux (CFX) $ 0.040878 2.00%
arbitrum-bridged-weth-arbitrum-one
Arbitrum Bridged WETH (Arbitrum One) (WETH) $ 2,265.06 3.52%
agora-dollar
AUSD (AUSD) $ 0.999408 0.00%
fgrs-figure-tokenized-stock
FGRS (Figure Tokenized Stock) (FGRS) $ 30.41 9.70%
grass
Grass (GRASS) $ 0.314559 0.70%
quantixai
Quantix Finance (QFI) $ 50.70 1.60%
thetrumptoken
TheTrumpToken (GREAT) $ 12.14 0.20%
plasma
Plasma (XPL) $ 0.075402 0.80%
staked-aave
Staked Aave (STKAAVE) $ 126.65 0.70%
tradable-na-rent-financing-platform-sstn
Tradable NA Rent Financing Platform SSTN (PC0000031) $ 1.00 0.00%
bonk
Bonk (BONK) $ 0.000002 0.80%
stader-ethx
Stader ETHx (ETHX) $ 2,455.55 2.19%
akedo
Akedo (AKE) $ 0.008823 3.90%
re-protocol-reusd
Re Protocol reUSD (REUSD) $ 1.10 0.10%
humanity
Humanity (H) $ 0.100077 16.80%
ape-and-pepe
Ape and Pepe (APEPE) $ 0.000001 1.90%
falcon-finance-ff
Falcon Finance (FF) $ 0.063625 0.60%
lorenzo-wrapped-bitcoin
Lorenzo Wrapped Bitcoin (ENZOBTC) $ 78,319.00 0.42%
ultima
Ultima (ULTIMA) $ 2,283.73 0.00%
vaneck-treasury-fund
VanEck Treasury Fund (VBILL) $ 1.00 0.00%
gteth
GTETH (GTETH) $ 2,265.16 3.54%
floki
FLOKI (FLOKI) $ 0.000020 0.00%
decred
Decred (DCR) $ 10.85 8.40%
optimism
Optimism (OP) $ 0.081648 0.00%
usa
USAT (USAT) $ 0.998896 0.00%
syrup
Maple Finance (SYRUP) $ 0.157220 4.00%
compound-governance-token
Compound (COMP) $ 17.96 1.10%
bnb48-club-token
KOGE (KOGE) $ 52.33 1.10%
usdai
USDai (USDAI) $ 0.999474 0.00%
apyusd
apyUSD (APYUSD) $ 1.31 0.60%
jasmycoin
JasmyCoin (JASMY) $ 0.003442 3.90%
societe-generale-forge-eurcv
EUR CoinVertible (EURCV) $ 1.16 0.20%
wefi
WeFi (WFI) $ 2.05 1.00%
raydium
Raydium (RAY) $ 0.613493 0.60%
coco-2
coco (COCO) $ 0.164370 1.40%
tradable-apac-diversified-finance-provider-sstn
Tradable APAC Diversified Finance Provider SSTN (PC0000033) $ 1.00 0.00%
doublezero
DoubleZero (2Z) $ 0.046714 2.10%
spark-usdc
Spark USDC (SUSDC) $ 1.10 15.50%
spiko-us-t-bills-money-market-fund
Spiko US T-Bills Money Market Fund (USTBL) $ 1.09 0.00%
susdai
Staked USDai (SUSDAI) $ 1.07 0.02%
ethereum-name-service
Ethereum Name Service (ENS) $ 3.83 0.90%
trust-wallet-token
Trust Wallet (TWT) $ 0.383074 0.30%
zebec-network
Zebec Network (ZBCN) $ 0.001579 0.80%
starknet
Starknet (STRK) $ 0.022510 0.50%
iota
IOTA (IOTA) $ 0.033638 4.30%
build-on
BUILDon (B) $ 0.151161 2.30%
strategy-pp-variable-xstock
Strategy PP Variable xStock (STRCX) $ 100.56 1.10%
coinbase-wrapped-staked-eth
Coinbase Wrapped Staked ETH (CBETH) $ 2,539.40 3.57%
gusd
GUSD (GUSD) $ 0.997959 0.00%
mx-token
MX (MX) $ 1.63 0.20%
axie-infinity
Axie Infinity (AXS) $ 0.854123 1.20%
eigenlayer
EigenCloud (prev. EigenLayer) (EIGEN) $ 0.169808 1.90%
wrapped-stx-velar
Wrapped STX (Velar) (WSTX) $ 0.308952 19.71%
safo
Spiko Amundi Overnight Swap Fund (SAFO) $ 1.02 0.00%
the-graph
The Graph (GRT) $ 0.013195 0.60%
kaia
Kaia (KAIA) $ 0.022402 0.60%
telcoin
Telcoin (TEL) $ 0.001451 3.90%
satoshi-stablecoin
Satoshi Stablecoin (SATUSD) $ 0.995549 0.13%
akash-network
Akash Network (AKT) $ 0.476521 3.40%
maga-bitcoin
MAGA Bitcoin (MBTC) $ 0.180532 10.22%
hastra-wrapped-ylds
Hastra Wrapped YLDS (WYLDS) $ 0.999492 0.03%
btse-token
BTSE Token (BTSE) $ 0.872852 7.10%
fartcoin
Fartcoin (FARTCOIN) $ 0.141104 0.20%
theta-token
Theta Network (THETA) $ 0.140761 3.40%
undeads-games
Undeads Games (UDS) $ 1.50 0.42%
wrapped-apecoin
Wrapped ApeCoin (WAPE) $ 0.147916 1.04%
convex-finance
Convex Finance (CVX) $ 1.49 4.70%
shuffle-2
Shuffle (SHFL) $ 0.296994 3.40%
bitcoin-avalanche-bridged-btc-b
Avalanche Bridged BTC (Avalanche) (BTC.B) $ 76,260.00 3.16%
swissborg
SwissBorg (BORG) $ 0.140496 0.80%
lido-earn-eth
Lido Earn ETH (EARNETH) $ 1,898.44 1.10%
binance-peg-busd
Binance-Peg BUSD (BUSD) $ 1.00 0.05%
dogwifcoin
dogwifhat (WIF) $ 0.136386 0.50%
tradable-latam-fintech-sstn
Tradable LatAm Fintech SSTN (PC0000097) $ 1.00 0.00%
vision-3
Vision (VSN) $ 0.035598 0.20%
thorchain
THORChain (RUNE) $ 0.394597 3.00%
zano
Zano (ZANO) $ 8.39 2.00%
binance-peg-dogecoin
Binance-Peg Dogecoin (DOGE) $ 0.107393 0.17%
avant-usd
Avant USD (AVUSD) $ 0.998900 0.40%
jpysc
JPYSC (JPYSC) $ 0.006280 0.30%
megprime
MegPrime (MPP) $ 0.721160 0.75%
ozone-chain
Ozone Chain (OZO) $ 0.131003 0.60%
rollbit-coin
Rollbit Coin (RLB) $ 0.079018 1.20%
chiliz
Chiliz (CHZ) $ 0.011913 0.20%
decentraland
Decentraland (MANA) $ 0.063690 2.00%
cash-4
CASH (CASH) $ 0.998973 0.00%
savings-dai
Savings Dai (SDAI) $ 1.17 0.17%
ecash
eCash (XEC) $ 0.000006 0.10%
grx-chain
GRX Chain (GRX) $ 13.05 0.00%
safepal
SafePal (SFP) $ 0.244547 0.50%
bdtcoin
BDTCOIN (BDTC) $ 16.45 3.32%
apecoin
ApeCoin (APE) $ 0.122126 0.30%
ether-fi-staked-eth
ether.fi Staked ETH (EETH) $ 2,317.47 1.05%
genius-3
Genius (GENIUS) $ 0.359685 1.20%
neo
NEO (NEO) $ 1.70 2.50%
theo-short-duration-us-treasury-fund
Theo Short Duration US Treasury Fund (THBILL) $ 1.02 0.00%
unit-bitcoin
Unit Bitcoin (UBTC) $ 76,318.00 3.07%
1inch
1INCH (1INCH) $ 0.083186 0.40%
gmt-token
GoMining Token (GOMINING) $ 0.286710 1.30%
arweave
Arweave (AR) $ 1.75 0.60%
frax-ether
Frax Ether (FRXETH) $ 2,262.16 2.20%
alpha-bulgaria-warrants
Alpha Bulgaria Warrants (ALFW) $ 3.20 0.00%
wrapped-hype
Wrapped HYPE (WHYPE) $ 33.57 1.97%
stp-network
AWE Network (AWE) $ 0.058628 3.10%
origintrail
OriginTrail (TRAC) $ 0.253874 1.20%
the-sandbox
The Sandbox (SAND) $ 0.038615 0.60%
kraken-wrapped-btc
Kraken Wrapped BTC (KBTC) $ 76,138.00 3.34%
chain-2
Onyxcoin (XCN) $ 0.002888 0.50%
staked-cap-usd
Staked Cap USD (STCUSD) $ 1.03 0.27%
astherus-usdf
Aster USDF (USDF) $ 0.997643 0.00%
frax-usd
Frax USD (FRXUSD) $ 0.999853 0.00%
benqi-liquid-staked-avax
BENQI Liquid Staked AVAX (SAVAX) $ 12.58 0.25%
havven
Synthetix (SNX) $ 0.190539 1.80%
wrapped-aave-ethereum-usdc
Wrapped Aave Ethereum USDC (WAETHUSDC) $ 1.16 0.95%
sosovalue
SoSoValue (SOSO) $ 0.316198 0.80%
bridged-usd-coin-starkgate
StarkGate Bridged USDC (Starknet) (USDC) $ 0.999674 0.01%
cap-4
Cap (CAP) $ 0.068942 0.40%
gate-wrapped-btc
Gate Wrapped BTC (GTBTC) $ 76,427.00 3.08%
tradable-na-third-party-online-merchant-sstn
Tradable NA Third Party Online Merchant SSTN (PC0000015) $ 1.00 0.00%
astherus-staked-bnb
Aster Staked BNB (ASBNB) $ 804.12 1.66%
meta-2-2
MetaDAO (META) $ 4.57 1.10%
securitize-tokenized-aaa-clo-fund
Securitize Tokenized AAA CLO Fund (STAC) $ 1,027.69 0.10%
vaulta
Vaulta (A) $ 0.060732 2.20%
tradable-latam-middle-market-lender-sstl
Tradable LatAm Middle-Market Lender SSTL (PC0000085) $ 1.00 0.00%
kamino
Kamino (KMNO) $ 0.018777 4.70%
unity-usd
Unity USD (UUSD) $ 1.00 0.10%
treehouse-eth
Treehouse ETH (TETH) $ 2,777.07 2.45%
binance-wrapped-btc
Binance Wrapped BTC (BBTC) $ 76,440.00 2.62%
tradable-singapore-fintech-ssl
Tradable Singapore Fintech SSL (PC0000077) $ 1.00 0.00%
circle-internet-group-ondo-tokenized-stock
Circle Internet Group (Ondo Tokenized Stock) (CRCLON) $ 70.84 3.40%
wemix-token
WEMIX (WEMIX) $ 0.196507 2.50%
the-black-bull
The Black Bull (ANSEM) $ 0.235640 9.20%
edgex
edgeX (EDGE) $ 0.279049 0.70%
bermuda-shorts
Bermuda Shorts (SHORT) $ 0.000022 1.00%
tagger
TAGGER (TAG) $ 0.000893 3.20%
cheems-token
Cheems Token (CHEEMS) $ 0.000000 0.10%
meteora
Meteora (MET) $ 0.177211 9.10%
geodnet
Geodnet (GEOD) $ 0.209618 0.10%
apollo-diversified-credit-securitize-fund
Apollo Diversified Credit Securitize Fund (ACRED) $ 1,109.45 0.00%
ibc-bridged-usdc
Noble USDC (USDC.N) $ 1.00 0.21%
newton-project
AB (AB) $ 0.000957 0.40%
instadapp
Fluid (FLUID) $ 1.13 1.70%
saturn-dollar
Saturn Dollar (USDAT) $ 0.999377 0.00%
cash-cat
Cash Cat (CASHCAT) $ 0.093505 10.60%
backpack
Backpack (BP) $ 0.366517 0.00%
quack-ai
Quack AI (Q) $ 0.021037 0.10%
payfi-strategy-token-usdc
PayFi Strategy Token USDC (PSTUSDC) $ 1.08 0.02%
polygon-pos-bridged-weth-polygon-pos
Polygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,261.63 3.58%
derive
Derive (DRV) $ 0.091209 3.10%
debridge
deBridge (DBR) $ 0.015283 2.80%
zama
Zama (ZAMA) $ 0.040902 0.60%
basic-attention-token
Basic Attention (BAT) $ 0.059010 2.30%
gauntlet-usdc-prime-morpho-vault
Gauntlet USDC Prime Morpho Vault (GTUSDC) $ 1.11 0.02%
wrapped-aave-ethereum-usdt
Wrapped Aave Ethereum USDT (WAETHUSDT) $ 1.15 0.80%
goldfish-gold
Goldfish Gold (GGBR) $ 4.34 1.40%
smilek
Smilek to the Bank (SMILEK) $ 0.000050 0.00%
dai-on-pulsechain
DAI on PulseChain (DAI) $ 0.002063 3.90%
usda-2
USDa (USDA) $ 0.967102 0.60%
railgun
Railgun (RAIL) $ 1.45 2.80%
arbitrum-bridged-wrapped-eeth
Arbitrum Bridged Wrapped eETH (Arbitrum) (WEETH) $ 2,460.40 3.55%
nxm
Nexus Mutual (NXM) $ 51.23 0.80%
cap-usd
Cap USD (CUSD) $ 0.999799 0.00%
solv-protocol-solvbtc-bbn
Solv Protocol Staked BTC (XSOLVBTC) $ 76,043.00 2.27%
dydx-chain
dYdX (DYDX) $ 0.101892 1.60%
usda-3
USDA (USDA) $ 0.992841 0.60%
bedrock-btc
Bedrock BTC (BRBTC) $ 78,850.00 2.46%
golem
Golem (GLM) $ 0.086263 0.70%
nexus-4
Nexus (NEX) $ 0.000001 4.60%
chutes
Chutes (SN64) $ 15.08 0.40%
show-2
SHOW (SHOW) $ 3.90 57.75%
yzy
YZY (YZY) $ 0.288185 0.00%
wrapped-ether-mantle-bridge
Mantle Bridged WETH (Mantle) (WETH) $ 2,256.05 3.59%
cysic
Cysic (CYS) $ 0.532661 2.40%
sentient
Sentient (SENT) $ 0.011797 3.80%
arbitrum-bridged-wsteth-arbitrum
Arbitrum Bridged wstETH (Arbitrum) (WSTETH) $ 2,775.15 3.40%
immutable-x
Immutable (IMX) $ 0.096381 5.10%
mantle-restaked-eth
Mantle Restaked ETH (CMETH) $ 2,447.46 3.67%
elrond-erd-2
MultiversX (EGLD) $ 2.75 0.40%
banana-for-scale-2
Banana For Scale (BANANAS31) $ 0.008371 0.70%
sonic-3
Sonic (S) $ 0.021379 0.10%
kaito
KAITO (KAITO) $ 0.338967 4.10%
bending-spoons-xstock
Bending Spoons xStock (BSPX) $ 38.44 0.20%
wrappedm-by-m0
WrappedM by M0 (WM) $ 0.999237 0.00%
antfun
AntFun (ANTFUN) $ 0.041318 0.70%
cronos-bridged-usdc-cronos
Cronos Bridged USDC (Cronos) (USDC) $ 0.999567 0.54%
four
Four (FORM) $ 0.202794 0.50%
jpool
JPool Staked SOL (JSOL) $ 129.85 6.36%
o1-exchange
o1.exchange (O) $ 0.480530 7.60%
na-post-settlement-legal-financing-receivables
Tradable NA Post-Settlement Legal Financing Receivables (PC0000101) $ 1.00 0.00%
drift-staked-sol
Drift Staked SOL (DSOL) $ 114.86 5.54%
perle
Perle (PRL) $ 0.438351 3.80%
plume
Plume (PLUME) $ 0.012303 0.30%
cygnus-finance-global-usd
Cygnus Finance Global USD (CGUSD) $ 0.995232 0.00%
palm-usd
Palm USD (PUSD) $ 0.998627 0.03%
aethir
Aethir (ATH) $ 0.003757 0.40%
tradable-north-america-pos-lender-sstn
Tradable North America PoS Lender SSTN (PC0000019) $ 1.00 0.00%
tradable-na-neobank-sstl
Tradable NA Neobank SSTL (PC0000023) $ 1.00 0.00%
superbridge-bridged-wsteth-base
Superbridge Bridged wstETH (Base) (WSTETH) $ 2,774.18 3.59%
zksync
ZKsync (ZK) $ 0.007426 1.80%
polygon-bridged-wbtc-polygon-pos
Polygon Bridged WBTC (Polygon POS) (WBTC) $ 76,130.00 3.08%
helio-protocol-hay
Lista USD (LISUSD) $ 0.997636 0.00%
mnee-usd-stablecoin
MNEE USD Stablecoin (MNEE) $ 0.999600 0.00%
felix-feusd
Felix feUSD (FEUSD) $ 0.998115 0.10%
ishares-core-s-p-500-etf-ondo-tokenized-etf
iShares Core S&P 500 ETF (Ondo Tokenized ETF) (IVVON) $ 778.71 0.10%
gaib-ai-dollar-alpha-usdc
Gaib AI Dollar Alpha USDC (AIDAUSDC) $ 0.998450 0.00%
vicicoin
ViciCoin (VCNT) $ 16.68 0.10%
anvil
Anvil (ANVL) $ 0.000841 1.80%
bybit-staked-sol
Bybit Staked SOL (BBSOL) $ 112.08 4.42%
legacy-token
Legacy Token (LGCT) $ 0.014697 21.81%
ravedao
RaveDAO (RAVE) $ 0.280789 3.20%
reserve-rights-token
Reserve Rights (RSR) $ 0.001169 3.40%
louzi
LOUZI (LOUZI) $ 0.083549 266.77%
triple-plus
Triple Plus (TPT) $ 1.12 6.36%
usdsui
USDsui (USDSUI) $ 1.00 0.00%
jusd
JUSD (JUSD) $ 0.998802 0.02%
universal-btc
Universal BTC (UNIBTC) $ 75,548.00 3.12%
digibyte
DigiByte (DGB) $ 0.003936 2.50%
unit-pump
Unit Pump (UPUMP) $ 0.002396 13.80%
nerona-usd
Nerona USD (USDNR) $ 15.97 0.01%
goplus-security
GoPlus Security (GPS) $ 0.012416 27.70%
savings-xdai
Savings xDAI (SDAI) $ 1.23 0.03%
ai-rig-complex
AI Rig Complex (ARC) $ 0.072321 0.80%
wrapped-avax
Wrapped AVAX (WAVAX) $ 10.07 0.11%
allora
Allora (ALLO) $ 0.294824 1.40%
bot
BOT (BOT) $ 9.63 1.40%
qtum
Qtum (QTUM) $ 0.680555 0.20%
midas-mf-one
Midas mF-ONE (MF-ONE) $ 1.12 0.00%
strata-senior-usde
Strata Senior USDe (SRUSDE) $ 0.997315 0.61%
proton
XPR Network (XPR) $ 0.002513 0.70%
law-blocks
Law Blocks AI (LBT) $ 0.293758 0.10%
crown-brlv
Crown BRLV (BRLV) $ 0.191731 0.20%
stau
STAU (STAU) $ 0.007138 3.60%
melania-meme
Melania Meme (MELANIA) $ 0.071257 3.30%
yearn-finance
yearn.finance (YFI) $ 1,974.21 3.20%
flare-bridged-xrp-flare
Flare Bridged XRP (Flare) (FXRP) $ 1.59 1.40%
matrixdock-gold
Matrixdock Gold (XAUM) $ 4,347.90 0.90%
mag7-ssi
MAG7.ssi (MAG7.SSI) $ 0.422870 0.40%
usdx
USDX (USDX) $ 0.671199 2.00%
baby-claw
Baby Claw (BABYCLAW) $ 0.091376 0.70%
ordinals
ORDI (ORDI) $ 3.37 1.30%
rif-token
Rootstock Infrastructure Framework (RIF) $ 0.070599 1.90%
staked-hype
Staked HYPE (STHYPE) $ 33.64 1.50%
safecoin
SAFEbit (SAFE) $ 0.099871 1.20%
comedian
Comedian (BAN) $ 0.070459 2.50%
zencash
Horizen (ZEN) $ 3.83 2.80%
nest-blackopal-liquidstone-ii-vault
Nest BlackOpal LiquidStone II Vault (NOPAL) $ 1.09 0.00%
ondo-u-s-dollar-token
Ondo U.S. Dollar Token (USDON) $ 1.00 0.00%
soon-2
SOON (SOON) $ 0.205039 6.10%
would
would (WOULD) $ 0.068650 1.70%
origin-ether
Origin Ether (OETH) $ 2,264.34 2.54%
midas-fasanara-global
Midas Fasanara Global (MGLOBAL) $ 1.01 0.00%
mustang
Mustang (MUST) $ 0.503016 0.00%
collector-crypt
Collector Crypt (CARDS) $ 0.164782 5.00%
spacex-bstocks-tokenized-stock
SpaceX (bStocks Tokenized Stock) (SPCXB) $ 142.43 1.10%
sierra-2
Sierra (SIERRA) $ 1.03 0.10%
gala
GALA (GALA) $ 0.001368 3.10%
gmx
GMX (GMX) $ 6.46 0.40%
bas
BNB Attestation Service (BAS) $ 0.026637 5.40%
midas-mtbill
Midas mTBILL (MTBILL) $ 1.07 0.00%
beam-2
Beam (BEAM) $ 0.001296 1.40%
quantum-resistant-ledger
Quantum Resistant Ledger (QRL) $ 0.847449 3.40%
binance-peg-cardano
Binance-Peg Cardano (ADA) $ 0.296226 0.63%
pearl-2
Pearl (PRL) $ 0.259771 3.60%
exod
EXOD (EXOD) $ 6.34 4.20%
mindwavedao
MindWaveDAO (NILA) $ 0.078169 0.40%
audiera
Audiera (BEAT) $ 0.198673 25.90%
celium
lium (SN51) $ 14.50 0.20%
tradable-eu-latam-pos-financing-sstl
Tradable Eu/LatAm PoS Financing SSTL (PC0000049) $ 1.00 0.00%
dexe
DeXe (DEXE) $ 1.84 4.50%
circle-internet-group-bstock
Circle Internet Group (bStocks Tokenized Stock) (CRCLB) $ 71.02 3.40%
unifai-network
UnifAI Network (UAI) $ 0.269221 0.90%
adi-token
ADI (ADI) $ 6.86 0.20%
swop-2
Swop (SWOP) $ 0.006453 0.80%
tori-trusd
Tori trUSD (TRUSD) $ 0.999589 0.00%
ethena-staked-ena
Ethena Staked ENA (SENA) $ 0.137562 2.67%
tesla-xstock
Tesla xStock (TSLAX) $ 335.95 0.20%
orca
Orca (ORCA) $ 1.05 0.70%
temple
TempleDAO (TEMPLE) $ 2.71 0.00%
0x
0x Protocol (ZRX) $ 0.074958 2.20%
safe
Safe (SAFE) $ 0.082784 0.90%
cyberdex
CyberDEX (CYDX) $ 0.182280 0.00%
bitget-wrapped-btc
Bitget Wrapped BTC (BGBTC) $ 64,326.00 0.20%
f-x-protocol-fxusd
f(x) Protocol fxUSD (FXUSD) $ 1.00 0.00%
the-vault-staked-sol
The Vault Staked SOL (VSOL) $ 111.60 5.09%
royal-euro
Royal Euro (REUR) $ 4.13 262.80%
re
RE (RE) $ 0.393431 1.80%
escoin-token
Escoin (ELG) $ 0.281299 0.60%
bedrock-token
Bedrock (BR) $ 0.214906 14.60%
qubic-network
Qubic (QUBIC) $ 0.000000 1.50%
nexpace
Nexpace (NXPC) $ 0.208642 1.40%
story-2
Data Network (DATA) $ 0.172019 0.10%
staked-frax-ether
Staked Frax Ether (SFRXETH) $ 2,589.68 3.62%
gas
Gas (GAS) $ 0.937507 1.60%
cow-protocol
CoW Protocol (COW) $ 0.106131 0.30%
reserve-protocol-eth-plus
ETHPlus (ETH+) $ 2,030.85 10.20%
dog-go-to-the-moon-rune
Dog (Bitcoin) (DOG) $ 0.000609 0.40%
standx-dusd
StandX DUSD (DUSD) $ 0.998227 0.00%
aioz-network
AIOZ Network (AIOZ) $ 0.047826 0.70%
fx-usd-saving
f(x) USD Saving (FXSAVE) $ 1.11 0.00%
meme-horse
MEME HORSE (MHORSE) $ 0.060500 0.00%
arkham
Arkham (ARKM) $ 0.086604 0.50%
wiki-cat
Wiki Cat (WKC) $ 0.000000 6.80%
basedhype
BasedHype (BASEDHYPE) $ 0.005969 5.60%
phantom-staked-sol
Phantom Staked SOL (PSOL) $ 103.72 5.47%
velo
Velo (VELO) $ 0.003374 8.30%
super-oeth
Super OETH (SUPEROETH) $ 2,263.65 2.59%
staked-trx
Staked TRX (STRX) $ 0.350706 0.03%
lab
LAB (LAB) $ 0.076391 3.40%
baby-doge-coin
Baby Doge Coin (BABYDOGE) $ 0.000000 0.30%
livepeer
Livepeer (LPT) $ 1.19 1.50%
magic-internet-money-arbitrum
Magic Internet Money (Arbitrum) (MIM) $ 0.996875 0.00%
skyai
SkyAI (SKYAI) $ 0.058203 20.10%
playnance
Playnance (GCOIN) $ 0.002324 6.40%
steakhouse-eth-morpho-vault
Steakhouse ETH Morpho Vault (STEAKETH) $ 2,357.07 1.81%
allunity-chf
AllUnity CHF (CHFAU) $ 1.23 0.20%
wrapped-ethereum-sollet
Wrapped Ethereum (Sollet) (SOETH) $ 229.19 3.08%
targon
Targon (SN4) $ 10.56 0.50%
dogbull
DogBull (DOGO) $ 0.056960 22.20%
precious-metals-usd
Precious Metals USD (PMUSD) $ 0.611938 2.20%
fidelity-digital-interest-token
Fidelity Digital Interest Token (FDIT) $ 1.00 0.00%
binance-peg-sol
Binance-Peg SOL (SOL) $ 99.17 4.44%
hydradx
Hydration (HDX) $ 0.009679 0.70%
tradable-na-legal-receivables-ssl
Tradable NA Legal Receivables SSL (PC0000081) $ 1.00 0.00%
diem
Diem (DIEM) $ 1,528.35 0.90%
blazestake-staked-sol
BlazeStake Staked SOL (BSOL) $ 125.89 4.62%
chainopera-ai
ChainOpera AI (COAI) $ 0.300888 1.90%
apriori
Capricorn (APR) $ 0.203564 7.60%
xdai
XDAI (XDAI) $ 1.01 1.00%
jelly-my-jelly
Jelly-My-Jelly (JELLYJELLY) $ 0.056078 1.10%
circle-xstock
Circle xStock (CRCLX) $ 71.01 3.30%
superfarm
SuperVerse (SUPER) $ 0.086405 0.30%
funfair
FUNToken (FUN) $ 0.005026 9.00%
jpycoin
JPY Coin (JPYC) $ 0.006270 0.20%
metal-blockchain
Metal Blockchain (METAL) $ 0.108333 3.10%
apes-2-2
APES (APES) $ 0.059901 0.90%
numeraire
Numeraire (NMR) $ 7.85 0.00%
brz
Brazilian Digital (BRZ) $ 0.190954 0.20%
stronghold-token
Stronghold (SHX) $ 0.003006 0.50%
centrifuge-2
Centrifuge (CFG) $ 0.142007 11.00%
kusama
Kusama (KSM) $ 2.89 1.50%
kinetiq-earn-vault
Kinetiq Earn Vault (VKHYPE) $ 33.98 2.41%
dappos
DAPPOS (DOS) $ 0.269390 17.90%
theta-fuel
Theta Fuel (TFUEL) $ 0.007246 1.80%
susda
sUSDa (SUSDA) $ 1.01 0.00%
flying-tulip
Flying Tulip (FT) $ 0.098649 0.30%
qusdt
QOM One Bridged USDT (QL1) (QUSDT) $ 0.998948 0.01%
bio-protocol
Bio Protocol (BIO) $ 0.024980 3.60%
fasttoken
Fasttoken (FTN) $ 0.159833 0.00%
pharos-network
Pharos (PROS) $ 0.392312 5.20%
dola-usd
DOLA (DOLA) $ 0.997857 0.00%
turbo
Turbo (TURBO) $ 0.000764 0.30%
usdu
USDu (USDU) $ 0.998921 0.00%
wrapped-pulse-wpls
Wrapped Pulse (WPLS) $ 0.000011 1.86%
walrus-2
Walrus (WAL) $ 0.020839 0.80%
mina-protocol
Mina Protocol (MINA) $ 0.040247 3.20%
nusd-2
Neutrl USD (NUSD) $ 0.998253 0.00%
aelf
aelf (ELF) $ 0.063052 28.80%
yuzu-usd
Yuzu USD (YZUSD) $ 0.997669 0.12%
book-of-meme
BOOK OF MEME (BOME) $ 0.000754 3.70%
subsquid
SQD (SQD) $ 0.040335 3.30%
micron-technology-bstock
Micron Technology (bStocks Tokenized Stock) (MUB) $ 953.45 4.00%
talus
Talus (US) $ 0.017716 2.10%
moonwell-flagship-eth-morpho-vault
Moonwell Flagship ETH (Morpho Vault) (MWETH) $ 2,432.58 2.98%
zignaly
ZIGChain (ZIG) $ 0.036379 1.10%
linea
Linea (LINEA) $ 0.002088 0.20%
wrapped-ether-linea
Bridged Wrapped Ether (Linea) (WETH) $ 2,268.84 3.37%
chip-2
USD.AI (CHIP) $ 0.025595 7.70%
anemoy-tokenized-apollo-diversified-credit-fund
Anemoy Tokenized Apollo Diversified Credit Fund (ACRDX) $ 1.02 0.00%
magic-internet-money
Magic Internet Money (Ethereum) (MIM) $ 0.993795 0.46%
wormhole
Wormhole (W) $ 0.008073 0.00%
na-capital-as-a-service-sstn
NA Capital-as-a-Service SSTN (PC0016245) $ 1.00 0.00%
avant-staked-usd
Avant Staked USD (SAVUSD) $ 1.14 0.00%
cross-2
CROSS (CROSS) $ 0.103408 1.70%
earnausd
earnAUSD (EARNAUSD) $ 1.00 0.00%
infinifi-usd
InfiniFi USD (IUSD) $ 0.999572 0.00%
wrapped-savings-rusd
Wrapped Savings rUSD (WSRUSD) $ 1.08 0.00%
sp500-xstock
SP500 xStock (SPYX) $ 771.44 0.30%
blackrock-daily-reinvestment-stablecoin-reserve-vehicle
BlackRock Daily Reinvestment Stablecoin Reserve Vehicle (BRSRV) $ 1.00 0.00%
usdkg
USDKG (USDKG) $ 1.00 0.10%
river
River (RIVER) $ 2.54 1.20%
espresso
Espresso (ESP) $ 0.074338 1.10%
fidelity-digital-dollar
Fidelity Digital Dollar (FIDD) $ 0.999265 0.00%
ecomi
ECOMI (OMI) $ 0.000179 5.00%
jupusd
JupUSD (JUPUSD) $ 0.999468 0.00%
xphere
Xphere (XP) $ 0.016473 4.30%
alloy-tether
Alloy Tether (AUSDT) $ 1.00 0.00%
sygnum-fiusd-liquidity-fund
Sygnum FIUSD Liquidity Fund (FIUSD) $ 11,990.89 0.00%
ai-xovia
AI XOVIA (AIX) $ 0.478430 1.00%
babypie-wrapped-btc
Babypie Wrapped BTC (MBTC) $ 89,481.00 0.00%
venus
Venus (XVS) $ 2.83 3.80%
bridged-usd-coin-linea
Linea Bridged USDC (Linea) (USDC) $ 1.00 0.40%
seeker
Seeker (SKR) $ 0.006920 0.10%
berachain-bera
Berachain (BERA) $ 0.148226 0.80%
tradable-latam-bnpl-sstn
Tradable LatAm BNPL SSTN (PC0000027) $ 1.00 0.00%
billions-network
Billions Network (BILL) $ 0.019344 0.40%
mantis
Mantis (M) $ 0.474470 62.30%
enjincoin
Enjin Coin (ENJ) $ 0.023384 0.40%
fonq
FONQ (FONQ) $ 0.066191 1.00%
cronos-bridged-usdt-cronos
Cronos Bridged USDT (Cronos) (USDT) $ 1.00 0.06%
straitsx-xusd
StraitsX XUSD (XUSD) $ 1.00 0.00%
crypto-com-staked-eth
Crypto.com Staked ETH (CDCETH) $ 2,405.16 4.40%
nano
Nano (XNO) $ 0.353230 0.90%
flow
Flow (FLOW) $ 0.027363 0.50%
bitcastle-token
bitcastle Token (BCE) $ 0.114984 3.00%
memetoon
MEMETOON (MEME) $ 0.000459 0.60%
sushi
Sushi (SUSHI) $ 0.159886 0.80%
casper-network
Casper Network (CSPR) $ 0.002730 12.80%
spdr-s-p-500-etf-ondo-tokenized-etf
SPDR S&P 500 ETF (Ondo Tokenized ETF) (SPYON) $ 773.63 0.30%
fidelity-usd-digital-liquidity-fund-acc
Fidelity USD Digital Liquidity Fund-Acc (FILQ-A) $ 100.96 0.00%
prize-protocol
Prize Protocol (PRIZE) $ 0.000893 1.80%
ravencoin
Ravencoin (RVN) $ 0.002717 0.70%
micron-technology-ondo-tokenized-stock
Micron Technology (Ondo Tokenized Stock) (MUON) $ 952.55 4.20%
microstrategy-xstock
MicroStrategy xStock (MSTRX) $ 92.90 4.30%
polygon-bridged-weeth-katana
Polygon Bridged weETH (Katana) (WEETH) $ 2,460.06 3.66%
xpin-network
XPIN Network (XPIN) $ 0.001084 21.80%
kava
Kava (KAVA) $ 0.040737 0.10%
zilliqa
Zilliqa (ZIL) $ 0.002258 1.70%
arcs
ARCS (ARX) $ 0.008983 1.00%
purr-2
Purr (PURR) $ 0.073600 0.20%
moonwell-flagship-usdc-morpho-vault
Moonwell Flagship USDC (Morpho Vault) (MWUSDC) $ 1.12 15.95%
io
io.net (IO) $ 0.114758 0.50%
ozapay
Ozapay (OZA) $ 0.048398 1.30%
babylon
Babylon (BABY) $ 0.010063 0.00%
redstone-oracles
RedStone (RED) $ 0.088645 16.40%
robinhood-wrapped-eth-robinhood-chain
Robinhood Wrapped ETH (Robinhood Chain) (WETH) $ 1,899.17 1.30%
unitas
Unitas (UP) $ 0.341288 2.90%
concordium
Concordium (CCD) $ 0.003385 5.30%
vaultbridge-bridged-wbtc-katana
VaultBridge Bridged WBTC (Katana) (VBWBTC) $ 76,100.00 2.93%
sentismai
SentismAI (SENTIS) $ 0.218926 1.40%
rekt-4
Rekt (REKT) $ 0.000000 2.00%
holoworld
Holoworld (HOLO) $ 0.055646 0.90%
axelar
Axelar (AXL) $ 0.034572 1.60%
oasis-network
Oasis (ROSE) $ 0.005328 1.90%
acurast
Acurast (ACU) $ 0.119425 2.10%
frankencoin
Frankencoin (ZCHF) $ 1.23 0.20%
ishares-bitcoin-trust-ondo-tokenized
iShares Bitcoin Trust (Ondo Tokenized) (IBITON) $ 36.34 4.20%
ethgas-2
ETHGas (GWEI) $ 0.021228 9.90%
resupply-usd
Resupply USD (REUSD) $ 0.989004 0.60%
zetachain
ZetaChain (ZETA) $ 0.026916 0.40%
score
Score (SN44) $ 7.96 1.90%
steakhouse-confidential-prime-usdc
Steakhouse Confidential Prime USDC (STEAKCUSDC) $ 1.02 0.00%
pentagon-chain
Pentagon Chain (PC) $ 41.94 0.40%
non-playable-coin
Non-Playable Coin (NPC) $ 0.005119 1.40%
compound-ether
cETH (CETH) $ 38.08 10.18%
staked-usd1
staked USD1+ (SUSD1+) $ 1.02 0.02%
novem-pro
Novem Pro (NVM) $ 0.425702 1.69%
toshi
Toshi (TOSHI) $ 0.000098 0.60%
nvidia-ondo-tokenized-stock
NVIDIA (Ondo Tokenized Stock) (NVDAON) $ 219.75 1.20%
zerebro
Zerebro (ZEREBRO) $ 0.041105 0.70%
peaq-2
peaq (PEAQ) $ 0.016916 4.90%
peanut-the-squirrel
Peanut the Squirrel (PNUT) $ 0.041043 0.20%
ether-fi-staked-btc
Ether.fi Staked BTC (EBTC) $ 76,722.00 4.00%
peoples-reserve-network
Peoples Reserve (PRN) $ 0.060248 0.50%
affine
affine (SN120) $ 10.58 3.00%
official-fo
Official FO (FO) $ 0.348382 0.20%
xyo-network
XYO Network (XYO) $ 0.002917 0.40%
troll-2
TROLL (TROLL) $ 0.040613 1.90%
spark-2
Spark (SPK) $ 0.013068 2.40%
keeta
Keeta (KTA) $ 0.069030 28.20%
midas-fasanara-global-open
Midas Fasanara Global Open (MGLO) $ 1.00 0.00%
popcat
Popcat (POPCAT) $ 0.041033 0.50%
osk
OSK (OSK) $ 37.99 1.20%
altlayer
AltLayer (ALT) $ 0.005829 0.30%
request-network
Request (REQ) $ 0.050349 0.50%
reental
Reental (RNT) $ 0.287315 0.20%
nervos-network
Nervos Network (CKB) $ 0.000806 0.20%
gemini-dollar
Gemini Dollar (GUSD) $ 0.999901 0.20%
chainflip
Chainflip (FLIP) $ 0.441718 1.30%
usd
Overnight.fi USD+ (USD+) $ 0.993561 0.00%
ontology
Ontology (ONT) $ 0.038929 0.80%
unitywallet-token
UnityWallet Token (UNT) $ 0.059175 0.30%
astar
Astar (ASTR) $ 0.004441 1.40%
midas-mhyper
Midas mHYPER (MHYPER) $ 1.12 0.10%
niu-lai
牛来 (Niu Lai) (牛来) $ 0.038717 15.90%
tether-gold-tokens
Tether Gold Tokens (XAUT0) $ 5,021.54 4.07%
orochi-network
Orochi Network (ON) $ 0.267868 14.80%
islamic-coin
Islamic Coin (ISLM) $ 0.010296 162.10%
eurite
Eurite (EURI) $ 1.16 0.20%
bitdca
BitDCA (BDCA) $ 0.464237 0.50%
asset
REAL (ASSET) $ 0.251702 0.40%
huobi-btc
Huobi BTC (HBTC) $ 41,869.00 2,404.88%
okx-wrapped-btc
OKX Wrapped BTC (XBTC) $ 76,354.00 3.14%
loaded-lions
Loaded Lions (LION) $ 0.001242 0.00%
blur
Blur (BLUR) $ 0.013124 2.20%
bitkub-coin
KUB Coin (KUB) $ 0.545499 1.60%
jl-jupusd
Jupiter Lend JUPUSD (JLJUPUSD) $ 1.01 1.99%
spacex-xstocks
SpaceX xStock (SPCXX) $ 142.50 1.10%
notcoin
Notcoin (NOT) $ 0.000378 1.20%
constitutiondao
ConstitutionDAO (PEOPLE) $ 0.007413 1.20%
dusk-network
DUSK (DUSK) $ 0.062550 3.60%
fractal-bitcoin
Fractal Bitcoin (FB) $ 0.343825 0.60%
austin-capitals
Austin Capitals (AUX) $ 4.25 0.00%
gekko
GEKKO (GEKKO) $ 0.000001 0.10%
mask-network
Mask Network (MASK) $ 0.373712 5.80%
useless-3
Useless Coin (USELESS) $ 0.036845 8.20%
bim-2
BIM (BIM) $ 1.22 1.00%
noon-usn
Noon USN (USN) $ 0.999265 0.00%
mog-coin
Mog Coin (MOG) $ 0.000000 0.10%
strata-junior-usde
Strata Junior USDe (JRUSDE) $ 1.03 0.06%
polymesh
Polymesh (POLYX) $ 0.027979 0.80%
gohome
GOHOME (GOHOME) $ 69.72 0.30%
tellor
Tellor Tributes (TRB) $ 13.03 0.70%
infrared-bera
Infrared Bera (IBERA) $ 0.397192 9.57%
opcode
Opcode (OPCODE) $ 0.036520 2.20%
ronin
Ronin (RON) $ 0.047231 0.70%
renzo-restaked-lst
Renzo Restaked LST (PZETH) $ 2,639.96 6.97%
megaeth
MegaETH (MEGA) $ 0.032218 3.80%
prometeus
Prom (PROM) $ 1.99 7.90%
huma-finance
Huma Finance (HUMA) $ 0.020919 1.10%
based-brett
Brett (BRETT) $ 0.003658 0.40%
lombard-protocol
Lombard (BARD) $ 0.102372 0.10%
snowbank
Snowbank (SB) $ 225.98 0.00%
aztec
Aztec (AZTEC) $ 0.012048 7.10%
threshold-network-token
Threshold Network (T) $ 0.003232 0.70%
nvidia-xstock
NVIDIA xStock (NVDAX) $ 219.76 1.20%
sandisk-bstocks-tokenized-stock
SanDisk (bStocks Tokenized Stock) (SNDKB) $ 1,646.15 5.70%
etherfi-weeths
ether.fi weETHs (WEETHS) $ 2,366.84 3.21%
ebtc-2
eBTC (EBTC) $ 64,272.00 0.20%
pirate-chain
Pirate Chain (ARRR) $ 0.181520 0.50%
dmt-nat
DMT-NAT (NAT) $ 0.000000 2.10%
magic-eden
Magic Eden (ME) $ 0.058067 1.70%
creditcoin-2
Creditcoin (CTC) $ 0.064456 1.30%
alphabet-xstock
Alphabet xStock (GOOGLX) $ 343.62 0.30%
binance-peg-shib
Binance-Peg SHIB (SHIB) $ 0.000007 0.97%
burnedfi
BurnedFi (BURN) $ 2.87 2.60%
celo
Celo (CELO) $ 0.058200 0.50%
ventuals-vhype
Ventuals vHYPE (VHYPE) $ 33.62 2.89%
ai-powered-finance
AI Powered Finance (AIPF) $ 0.583925 2.00%
staked-usdt
stUSDT Staked USDT (STUSDT) $ 0.996089 0.11%
mbg-by-multibank-group
MBG By Multibank Group (MBG) $ 0.106308 0.40%
pay-coin
Paycoin (PCI) $ 0.034174 2.60%
aegis-yusd
Aegis YUSD (YUSD) $ 0.998687 0.00%
fluid-wrapped-staked-eth
Fluid Wrapped Staked ETH (FWSTETH) $ 4,069.22 0.00%
moo-deng
Moo Deng (MOODENG) $ 0.035104 0.70%
project-galaxy
GAL (migrated to Gravity - G) (GAL) $ 0.271319 0.30%
hermez-network-token
Hermez Network (HEZ) $ 3.13 0.40%
elexium
Elexium (EX) $ 3.86 0.00%
apro
Apro (AT) $ 0.150377 2.90%
staked-frax-usd
Frax Staked frxUSD (SFRXUSD) $ 1.21 0.50%
grvt
GRVT Token (GRVT) $ 0.299731 6.00%
vvs-finance
VVS Finance (VVS) $ 0.000001 0.70%
invesco-qqq-etf-ondo-tokenized-etf
Invesco QQQ ETF (Ondo Tokenized ETF) (QQQON) $ 719.48 0.90%
wojak-finance
Wojak Finance (WOJ) $ 0.000766 0.93%
kgen
KGeN (KGEN) $ 0.171744 2.50%
space-and-time
Space and Time (SXT) $ 0.007347 2.80%
binance-usd
BUSD (BUSD) $ 0.987212 0.30%
tutorial
Tutorial (TUT) $ 0.040918 1.20%
botxcoin
BOTXCOIN (BOTX) $ 0.682217 0.46%
deep
DeepBook (DEEP) $ 0.013469 0.20%
fins
FINS (FINS) $ 0.040667 0.00%
atoshi
Atoshi (ATOS) $ 0.037231 0.80%
momentum-3
Momentum (MMT) $ 0.163196 2.20%
ankr
Ankr Network (ANKR) $ 0.003326 0.50%
spiko-amundi-overnight-swap-fund-gbp
Spiko Amundi Overnight Swap Fund (GBP) (GBPSAFO) $ 1.38 0.10%
efficientfrontier
EfficientFrontier (SN53) $ 6.30 2.50%
sixseven
SIXSEVEN (67) $ 0.033022 5.80%
pumpmeme
PumpMeme (PM) $ 1.03 0.50%
catizen
Catizen (CATI) $ 0.048394 0.40%
wrapped-dag
Wrapped DAG (WDAG) $ 0.015404 1.95%
monerium-eur-money-2
Monerium EUR emoney (EURE) $ 1.16 0.00%
america-party-5
America Party (AMERICA) $ 0.000000 0.30%
marscoin-4
MarsCoin (MARSCOIN) $ 0.032606 12.00%
folks
FOLKS (FOLKS) $ 1.81 0.50%
giggle-fund
Giggle Fund (GIGGLE) $ 32.54 1.00%
verge
Verge (XVG) $ 0.001968 0.20%
helius-staked-sol
Helius Staked SOL (HSOL) $ 112.60 5.27%
degen-base
Degen (DEGEN) $ 0.000894 5.50%
superbridge-bridged-wsteth-optimism
Superbridge Bridged wstETH (Optimism) (WSTETH) $ 2,772.53 3.52%
meet48
MEET48 (IDOL) $ 0.016002 2.30%
cargox
CargoX (CXO) $ 0.150395 0.50%
amp-token
Amp (AMP) $ 0.000360 0.30%
kinetiq
Kinetiq (KNTQ) $ 0.117085 6.50%
ssv-network
SSV Network (SSV) $ 2.19 0.90%
propy
Propy (PRO) $ 0.321681 1.10%
emerald-security-token
Emerald Security Token (EMRL.D) $ 1.39 2.80%
metya
MetYa (MY) $ 0.032577 1.70%
usd-coin-ethereum-bridged
Arbitrum Bridged USDC (Arbitrum) (USDC.E) $ 0.999982 0.01%
brla-digital-brla
BRLA Digital BRLA (BRLA) $ 0.190696 0.20%
ustbl-tokenized-u-s-treasury-bill
USTBL (USTBL) $ 1.06 0.00%
openledger-2
OpenLedger (OPEN) $ 0.148405 11.30%
nockchain
Nockchain (NOCK) $ 0.014052 2.50%
bridged-tether-opbnb
opBNB Bridged USDT (opBNB) (USDT) $ 0.998710 0.05%
spiko-digital-assets-cash-carry-fund-euro-share-class
Spiko Digital Assets Cash & Carry Fund - Euro Share Class (EURSPKCC) $ 1.16 0.20%
magma-finance
Magma Finance (MAGMA) $ 0.167141 4.70%
nasdaq-xstock
Nasdaq xStock (QQQX) $ 718.86 0.90%
vethor-token
VeThor (VTHO) $ 0.000307 0.60%
manadia
Manadia (UMXM) $ 0.104296 0.00%
storx
StorX (SRX) $ 0.051450 0.00%
firelight-staked-xrp
Firelight Staked XRP (STXRP) $ 1.30 10.36%
omni-network
Omni Network [Old] (OMNI) $ 0.657478 8.53%
helium
Helium (HNT) $ 0.169137 0.20%
fogo
Fogo (FOGO) $ 0.008035 0.50%
impossible-cloud-network-token
Impossible Cloud Network Token (ICNT) $ 0.122899 3.60%
mango-markets
Mango (MNGO) $ 0.027688 0.30%
pathusd
pathUSD (PATHUSD) $ 1.00 0.70%
hive_dollar
Hive Dollar (HBD) $ 0.941238 2.90%
rocket-pool
Rocket Pool (RPL) $ 1.36 2.00%
mezo-usd
Mezo USD (MUSD) $ 0.990868 0.10%
novachargex-coin
NovaChargeX Coin (NCX) $ 0.254759 0.00%
incrypt
Incrypt (INC) $ 0.005070 10.60%
backed-cspx-core-s-p-500
Backed CSPX Core S&P 500 (BCSPX) $ 828.90 1.00%
ston-2
STON (STON) $ 0.433640 1.60%
mocaverse
Moca Network (MOCA) $ 0.007176 0.40%
kinetiq-markets-lst
Kinetiq Markets HYPE (KMHYPE) $ 34.89 1.88%
euler
Euler (EUL) $ 1.27 8.60%
savings-crvusd
Savings crvUSD (SCRVUSD) $ 1.07 1.31%
metronome-synth-usd
Metronome Synth USD (MSUSD) $ 0.713100 1.00%
pumpbtc
pumpBTC (PUMPBTC) $ 76,077.00 2.54%
hashkey-ecopoints
HashKey Platform Token (HSK) $ 0.087606 1.50%
coindepo
COINDEPO (COINDEPO) $ 0.110026 2.60%
bridged-wrapped-steth-gnosis
Bridged Wrapped stETH (Gnosis) (WSTETH) $ 2,772.17 3.56%
wink
WINkLink (WIN) $ 0.000030 2.90%
haedal-staked-sui
Haedal Staked SUI (HASUI) $ 1.21 1.01%
succinct
Succinct (PROVE) $ 0.154292 3.70%
liquity-bold-2
BOLD (BOLD) $ 1.00 0.10%
eni-bridged-usdt-eni
ENI Bridged USDT (ENI) (USDT) $ 1.00 0.48%
terra-luna-2
Terra (LUNA) $ 0.042084 2.50%
ong
Ontology Gas (ONG) $ 0.062041 4.20%
gold-park
Gold Park (GPT) $ 0.007902 1.20%
binance-peg-bitcoin-cash
Binance-Peg Bitcoin Cash (BCH) $ 536.43 0.22%
unipoly
Unipoly (UNP) $ 0.106563 0.00%
coti
COTI (COTI) $ 0.009891 3.50%
l2-standard-bridged-weth-optimism
L2 Standard Bridged WETH (Optimism) (WETH) $ 2,264.62 3.22%
edu-coin
Open Campus (EDU) $ 0.036380 5.30%
bridged-wrapped-ether-starkgate
Bridged Ether (StarkGate) (ETH) $ 2,241.79 5.41%
memecoin-2
Memecoin (MEME) $ 0.000458 0.60%
catecoin-3
Catecoin (CATE) $ 0.038138 175.50%
zero-gravity
0G (0G) $ 0.138010 8.90%
deapcoin
DEAPCOIN (DEP) $ 0.000980 0.70%
paxos-standard
Pax Dollar (USDP) $ 0.999082 0.00%
nesa
Nesa (NES) $ 0.206072 3.10%
uma
UMA (UMA) $ 0.321345 1.30%
siren-2
Siren (SIREN) $ 0.040182 2.90%
lido-earnusd
Lido EarnUSD (EARNUSD) $ 1.03 0.00%
apex-token-2
APEX (APEX) $ 0.198216 7.80%
robo-token-2
Fabric Protocol (ROBO) $ 0.012978 4.10%
sk-hynix-bstocks-tokenized-stock
SK Hynix (bStocks Tokenized Stock) (SKHYB) $ 162.64 2.60%
capybobo
Capybobo (PYBOBO) $ 0.000730 6.10%
ai-analysis-token
AI Analysis Token (AIAT) $ 0.243569 0.70%
dfdv-staked-sol
DFDV Staked SOL (DFDVSOL) $ 103.99 5.55%
avantis
Avantis (AVNT) $ 0.084956 7.80%
baseline
Baseline (B) $ 2.41 0.10%
hims-hers-health-ondo-tokenized-stock
Hims & Hers Health (Ondo Tokenized Stock) (HIMSON) $ 27.50 3.80%
across-protocol
Across Protocol (ACX) $ 0.040829 2.30%
coinex-token
CoinEx (CET) $ 0.011685 0.60%
kobe-the-shiba-inu
Kobe the Shiba Inu (KOBE) $ 0.294114 16,936.27%
utya
Utya (UTYA) $ 0.028699 0.70%
nkyc-token
NKYC Token (NKYC) $ 7.14 1.00%
nirvana-ana-2
Nirvana ANA (ANA) $ 3.80 0.50%
cortex-2
Cortex (CX) $ 0.019030 0.80%
block-street
Block Street (BSB) $ 0.120262 2.80%
g-token
Gravity (by Galxe) (G) $ 0.003935 0.10%
universal-usd
Universal USD (USDU) $ 1.00 0.00%
apex-4
APEX (AP3X) $ 0.016281 1.50%
ore
ORE (ORE) $ 58.84 1.70%
zylo-ecosystem
Zylo Ecosystem (ZYLO) $ 0.030667 0.80%
cat-in-a-dogs-world
cat in a dogs world (MEW) $ 0.000318 1.10%
stonkbroker
StonkBroker (STONKBROKE) $ 0.018044 2.80%
collect-on-fanable
Collect on Fanable (COLLECT) $ 0.051997 13.10%
kujira
Kujira (KUJI) $ 0.026902 0.50%
tokenised-gbp
Tokenised GBP (TGBP) $ 1.35 0.10%
templar
τemplar (SN3) $ 5.30 5.30%
liquity-usd
Liquity USD (LUSD) $ 1.00 0.00%
stargate-bridged-usdc
Stargate Bridged USDC (USDC.E) $ 0.999336 0.04%
api3
Api3 (API3) $ 0.191777 1.90%
tdccp
TDCCP (TDCCP) $ 0.043344 1.50%
iota-2
iota (SN9) $ 5.86 6.40%
monerium-eur-money
Monerium EUR emoney [OLD] (EURE) $ 1.16 0.10%
whiteheart
Whiteheart (WHITE) $ 2,694.76 3.20%
proprietary-trading-network
Vanta Network (SN8) $ 5.43 3.10%
bridged-nxpc
Bridged NXPC (NXPC) $ 0.381388 1.14%
band-protocol
Band (BAND) $ 0.150705 1.20%
wrapped-cro
Wrapped CRO (WCRO) $ 0.083017 2.92%
nosana
Nosana (NOS) $ 0.271232 2.40%
changenow
ChangeNOW (NOW) $ 0.324600 0.50%
dogelon-mars
Dogelon Mars (ELON) $ 0.000000 1.60%
uquid-coin
Uquid Coin (UQC) $ 2.70 0.00%
bancor
Bancor Network (BNT) $ 0.268439 1.40%
unit-plasma
Unit Plasma (UXPL) $ 0.078337 2.00%
sai
Sai (SAI) $ 10.02 0.30%
pipedog
pipedog (PIPEDOG) $ 0.002164 9.20%
openeden-open-dollar
OpenEden OpenDollar (USDO) $ 0.997645 0.00%
terrausd
TerraClassicUSD (USTC) $ 0.004783 0.80%
manta-network
Manta Network (MANTA) $ 0.055303 0.90%
infinifi-locked-iusd-1week
infiniFi Locked iUSD (1week) (LIUSD) $ 1.16 0.00%
youves-uusd
Youves uUSD (UUSD) $ 0.998600 0.10%
neiro-3
Neiro (NEIRO) $ 0.000063 0.10%
binance-peg-litecoin
Binance-Peg Litecoin (LTC) $ 60.25 0.65%
galaxy-usdt-quality
Galaxy USDT Quality (ETH:GUSDTQ) $ 1.01 0.00%
vana
Vana (VANA) $ 0.856663 1.20%
swarm-network
Swarm Network (TRUTH) $ 0.012647 2.20%
bridged-weth
Bridged WETH (WETH) $ 2,260.15 3.61%
world-mobile-token
World Mobile Token (WMTX) $ 0.030932 2.70%
dacxi
Dacxi (DXI) $ 0.000421 1.18%
zedxion
Zedxion (ZEDXION) $ 0.415690 0.00%
constellation-labs
Constellation (DAG) $ 0.006721 4.00%
lista
Lista DAO (LISTA) $ 0.061418 1.70%
midas-m1-usd-market-neutral
Midas M1 USD Market Neutral (MM1-USD) $ 1.02 0.00%
frax-share
Frax (prev. FXS) (FRAX) $ 0.279648 0.50%
spacecoin-2
Spacecoin (SPACE) $ 0.004567 1.60%
geode-chain
Geode Chain (GEODE) $ 0.002368 0.30%
sweth
Swell Ethereum (SWETH) $ 2,521.55 3.25%
home
HOME (HOME) $ 0.006081 1.00%
mezo-wrapped-btc
Mezo Wrapped BTC (BTC) $ 76,504.00 2.26%
sodax
SODAX (SODA) $ 0.017413 1.90%
anoma
Anoma (XAN) $ 0.010399 2.50%
avalanche-bridged-weth-avalanche
Avalanche Bridged WETH (Avalanche) (WETH) $ 2,248.92 4.08%
bucket-protocol-buck-stablecoin
Bucket Protocol BUCK Stablecoin (BUCK) $ 0.997079 0.00%
starpower
Starpower (STAR) $ 0.139279 7.80%
myonion-fun
MyOnion.fun ($ONION) $ 0.031861 6.90%
obligate-trade-finance-yield
Obligate Trade Finance Yield (OTFY) $ 1.01 0.00%
asteroid-shiba
Asteroid Shiba (ASTEROID) $ 0.000062 0.20%
irys
Irys (IRYS) $ 0.012902 3.40%
chia
Chia (XCH) $ 1.37 3.40%
metamask-usd
MetaMask USD (MUSD) $ 0.999259 0.00%
ethereum-pow-iou
EthereumPoW (ETHW) $ 0.239374 1.90%
alchemy-pay
Alchemy Pay (ACH) $ 0.006178 4.95%
sahara-ai
Sahara AI (SAHARA) $ 0.007211 0.40%
movement
Movement (MOVE) $ 0.005943 1.90%
predictions
Predictions (PRDT) $ 1.07 0.00%
gensyn
Gensyn (AI) $ 0.019673 0.20%
mantra-dao
MANTRA (MANTRA) $ 0.004587 1.00%
vaultbridge-bridged-usdt-katana
Vault Bridge Bridged USDT (Katana) (VBUSDT) $ 0.998263 0.18%
tornado-cash
Tornado Cash (TORN) $ 5.31 3.70%
bridged-tether-linea
Linea Bridged USDT (Linea) (USDT) $ 0.999053 0.02%
orbs
Orbs (ORBS) $ 0.005111 0.30%
ishares-silver-trust-ondo-tokenized-stock
iShares Silver Trust (Ondo Tokenized Stock) (SLVON) $ 57.12 3.10%
nyc-token
NYC (NYC) $ 0.084662 0.10%
vaultbridge-bridged-eth-katana
VaultBridge Bridged ETH (Katana) (VBETH) $ 2,263.34 3.75%
coredaoorg
Core (CORE) $ 0.020258 1.90%
the-grays-currency
The Grays Currency (PTGC) $ 0.000087 21.70%
status
Status (SNT) $ 0.005209 3.80%
mowcat
MowCat (MOW) $ 0.024961 15.10%
main-street-usd
Main Street USD (MSUSD) $ 0.331660 0.20%
merlin-chain
Merlin Chain (MERL) $ 0.017622 2.90%
project-89
Project 89 (PROJECT89) $ 0.032983 19,244.35%
hex-trust-usdx
Hex Trust USD (USDX) $ 0.988679 0.10%
venom
Venom (VENOM) $ 0.010538 13.70%
wrapped-aave-ethereum-weth
Wrapped Aave Ethereum WETH (WAETHWETH) $ 2,395.08 1.66%
alchemist-ai
Alchemist AI (ALCH) $ 0.024423 0.00%
iexec-rlc
iExec RLC (RLC) $ 0.279980 3.20%
galaxy-usdc-quality
Galaxy USDC Quality (Ethereum) (ETH:GUSDCQ) $ 1.01 0.00%
spy-bstocks-tokenized-stock
SPY (bStocks Tokenized Stock) (SPYB) $ 767.57 0.20%
endurance
Fusionist (ACE) $ 0.224970 47.50%
binance-peg-dai
Binance-Peg DAI (DAI) $ 1.00 0.08%
ocean-protocol
Ocean Protocol (OCEAN) $ 0.100440 13.20%
zerobase
ZEROBASE (ZBT) $ 0.074845 3.60%
neet
Not in Employment, Education, or Training (NEET) $ 0.024151 0.40%
tcy
THORChain Yield (TCY) $ 0.129941 0.50%
illuvium
Illuvium (ILV) $ 2.91 0.30%
arcium
Arcium (ARX) $ 0.115112 4.80%
iotex
IoTeX (IOTX) $ 0.002538 0.40%
securitize-corp
Securitize (SECZ) $ 5.89 9.30%
amnis-aptos
Amnis Aptos (AMAPT) $ 1.03 14.40%
moolah
Moolah (MOOLAH) $ 0.023681 5.80%
the-innovation-game
The Innovation Game (TIG) $ 0.771813 0.30%
restaked-swell-eth
Restaked Swell ETH (RSWETH) $ 2,405.52 3.18%
tensor
Tensor (TNSR) $ 0.031205 0.30%
cat-in-hood
Cat in Hood (HOODCAT) $ 0.026046 3,111.37%
pons
Pons (PONS) $ 0.032284 15.40%
kiichain
KiiChain (KII) $ 0.071343 2.50%
bitcoin-hyper-5
Bitcoin Hyper (HYPER) $ 0.025199 12,225.36%
xtcom-token
XT.com (XT) $ 3.82 1.20%
main-street-yield
Main Street Yield (MSY) $ 0.356396 0.40%
tronbank
TronBank (TBK) $ 0.340510 2.80%
snek
Snek (SNEK) $ 0.000308 0.40%
dual
Dual (DUAL) $ 0.003034 1.40%
jpy-coin
JPY Coin (JPYC) $ 0.008807 6.30%
renzo
Renzo (REZ) $ 0.002630 1.00%
synapse-2
Synapse (SYN) $ 0.104424 0.20%
san-chan-2
San Chan (SANCHAN) $ 0.029602 99,999.99%
bridged-wrapped-bitcoin-starkgate
Bridged Wrapped Bitcoin (StarkGate) (WBTC) $ 75,778.00 3.80%
bankercoin-2
BankrCoin (BNKR) $ 0.000228 1.40%
osmosis
Osmosis (OSMO) $ 0.028987 4.10%
wrapped-frax
Wrapped FRAX (WFRAX) $ 0.866605 8.25%
openai-republic-pre-ipo
OpenAI (Republic Pre-IPO) (PREOPAI) $ 781.17 1.50%
token-pocket
TokenPocket Token (TPT) $ 0.007122 3.50%
aergo
Aergo [OLD] (AERGO) $ 0.048026 4.51%
cartesi
Cartesi (CTSI) $ 0.024280 0.90%
electronic-usd
Electronic USD (EUSD) $ 0.997547 0.10%
yfsx
YFSX (YFSX) $ 1,123.10 1.10%
siacoin
Siacoin (SC) $ 0.000450 0.30%
cronos-bridged-wbtc-cronos
Cronos Bridged WBTC (Cronos) (WBTC) $ 76,176.00 3.32%
prospective
Prospective (PROS) $ 0.022337 0.20%
victoria-vr
Victoria VR (VR) $ 0.001322 11.40%
atomone
AtomOne (ATONE) $ 0.143734 19.90%
sailout-royalty
SailOut Royalty (SAIL.R) $ 14.60 0.00%
stargate-bridged-weth
Stargate Bridged WETH (WETH) $ 2,264.41 3.38%
fake-world-assets
Fake World Assets (FWA) $ 0.022089 15.20%
gyroscope-gyd
Gyroscope GYD (GYD) $ 0.992463 0.00%
qanplatform
QANplatform (QANX) $ 0.012786 0.30%
hundred
HUNDRED (HUNDRED) $ 0.000241 0.10%
arowana
Arowana (ARW) $ 0.043425 13.70%
swftcoin
SWFTCOIN (SWFTC) $ 0.002169 2.20%
openeden
OpenEden (EDEN) $ 0.051374 0.80%
sats-ordinals
SATS (Ordinals) (SATS) $ 0.000000 1.70%
janction
Janction (JCT) $ 0.001871 26.10%
nillion
Nillion (NIL) $ 0.043039 9.60%
roll-2
ROLL (ROLL) $ 0.138586 0.80%
gogopool-ggavax
Hypha Staked AVAX (STAVAX) $ 9.66 12.52%
energy-web-token
Energy Web Token (EWT) $ 0.264283 0.50%
unicorn-3-2
Unicorn (UWU) $ 0.021393 7.10%
nexst
NEXST (NXT) $ 0.093750 0.20%
coreum
Coreum [OLD] (COREUM) $ 0.035648 7.03%
nova-3
NOVA (SN68) $ 4.36 1.70%
usdh-2
USDH (USDH) $ 0.998151 0.30%
wibx
Wibx (WBX) $ 0.001803 0.10%
freysa-ai
Freysa AI (FAI) $ 0.002586 1.10%
alphabet-class-a-ondo-tokenized-stock
Alphabet Class A (Ondo Tokenized Stock) (GOOGLON) $ 343.89 0.20%
velodrome-finance
Velodrome Finance (VELO) $ 0.016537 1.90%
jpyc
JPY Coin v1 (JPYC) $ 0.008575 0.50%
kyber-network-crystal
Kyber Network Crystal (KNC) $ 0.100993 1.50%
dodo
DODO (DODO) $ 0.021121 6.50%
zora
Zora (ZORA) $ 0.004714 1.10%
bora
BORA (BORA) $ 0.018277 0.90%
coinbase-wrapped-xrp
Coinbase Wrapped XRP (CBXRP) $ 1.59 1.42%
everything
Everything (EV) $ 0.000211 1.10%
hyperlane
Hyperlane (HYPER) $ 0.062215 2.70%
alphabet-bstocks-tokenized-stock
Alphabet (bStocks Tokenized Stock) (GOOGLB) $ 342.96 0.20%
power-ledger
Powerledger (POWR) $ 0.036867 2.00%
palladium-network
Palladium Network (PLLDV3) $ 0.392429 7.90%
tokenlon
Tokenlon (LON) $ 0.168986 0.20%
ronin-bridged-weth-ronin
Ronin Bridged WETH (Ronin) (WETH) $ 2,269.79 3.24%
hive
Hive (HIVE) $ 0.037661 0.10%
abey
Abey (ABEY) $ 0.019675 0.30%
usd-coin-avalanche-bridged-usdc-e
Avalanche Bridged USDC (Avalanche) (USDC.E) $ 0.999655 0.13%
scandic-coin
Scandic Coin (SNC) $ 0.163037 1.50%
binaryx
BinaryX [OLD] (BNX) $ 31.89 0.10%
zest-protocol
Zest Protocol (ZEST) $ 0.139815 0.60%
croatian-ff-fan-token
Croatian Football Federation Token (VATRENI) $ 1.12 1.70%
qkacoin
Qkacoin (QKA) $ 0.643710 0.00%
auction
Bounce (AUCTION) $ 2.75 0.80%
auki-labs
Auki (AUKI) $ 0.004280 7.10%
aleo
ALEO (ALEO) $ 0.015035 0.40%
gaib-aid
GAIB AID (AID) $ 0.997658 0.50%
stargate-finance
Stargate Finance (STG) $ 0.143826 3.00%
rserg
rsERG (RSERG) $ 0.362218 1.39%
mass-vehicle-ledger
MVL (MVL) $ 0.000729 2.90%
cetus-protocol
Cetus Protocol (CETUS) $ 0.020990 1.40%
dovu-2
DOVU (DOVU) $ 0.002008 1.90%
orizon
Orizon (ORI) $ 51.61 2.00%
versatize-coin
Versatize Coin (VTCN) $ 0.199847 0.00%
lumia
Lumia (LUMIA) $ 0.083538 3.10%
skale
SKALE (SKL) $ 0.003266 0.30%
lobster-2
龙虾 (Lobster) (龙虾) $ 0.019701 1.00%
woo-network
WOO (WOO) $ 0.010434 2.00%
black-phoenix
Black Phoenix (BPX) $ 0.003409 0.10%
aevo-exchange
Aevo (AEVO) $ 0.020875 5.20%
wyde-end-hunger
WYDE: End Hunger (EAT) $ 0.000193 2.20%
yield-basis
Yield Basis (YB) $ 0.074062 1.00%
icon
ICON (ICX) $ 0.017522 0.40%
carv
CARV (CARV) $ 0.028939 0.70%
universal-eth
Universal ETH (UNIETH) $ 2,126.59 9.98%
steem
Steem (STEEM) $ 0.034491 0.30%
bsquared-network
BSquared Network (B2) $ 0.461367 3.70%
saffron-finance
saffron.finance (SFI) $ 239.24 18.40%
compound-wrapped-btc
cWBTC (CWBTC) $ 1,534.90 2.99%
smooth-love-potion
Smooth Love Potion (SLP) $ 0.000527 1.30%
lorenzo-stbtc
Lorenzo stBTC (STBTC) $ 64,835.00 8.62%
avalaunch
Avalaunch (XAVA) $ 0.190441 0.30%
nxusd
NXUSD (NXUSD) $ 1.01 1.90%
re-protocol-reusde
Re Protocol reUSDe (REUSDE) $ 1.40 0.20%
my-paqman-coin
My Paqman Coin (MPC) $ 0.000002 0.90%
elephant-money
Elephant Money (ELEPHANT) $ 0.000000 0.70%
opengradient
OpenGradient (OPG) $ 0.099727 3.80%
backed-ib01-treasury-bond-0-1yr
Backed IB01 $ Treasury Bond 0-1yr (BIB01) $ 121.52 0.00%
ishares-20-year-treasury-bond-etf-ondo-tokenized-etf
iShares 20+ Year Treasury Bond ETF (Ondo Tokenized ETF) (TLTON) $ 85.12 0.60%
unit-00-rei
Rei (REI) $ 0.018728 13.90%
pundi-x-2
Pundi X (PUNDIX) $ 0.072489 0.00%
waves
Waves (WAVES) $ 0.186517 0.80%
peapods-finance
Peapods Finance (PEAS) $ 1.88 0.40%
binance-peg-zcash-token
Binance-Peg ZEC (ZEC) $ 280.89 3.03%
roundhill-memory-etf-bstocks-tokenized-stock
Roundhill Memory ETF (bStocks Tokenized Stock) (DRAMB) $ 56.40 2.80%
public-meme-token
Public Masterpiece Token (PMT) $ 0.101057 0.00%
lack-of-memes
Lack Of Memes (MEMELESS) $ 0.204830 15,616.49%
cyberconnect
CYBER (CYBER) $ 0.303415 1.70%
verus-coin
Verus (VRSC) $ 0.230870 7.70%
b3
B3 (Base) (B3) $ 0.000400 4.00%
codatta
Codatta (XNY) $ 0.007416 2.20%
lisk
Lisk (LSK) $ 0.079546 0.70%
yield-guild-games
Yield Guild Games (YGG) $ 0.019594 1.90%
iostoken
IOST (IOST) $ 0.000529 0.40%
ryze
Ryze (RYZE) $ 0.069686 0.40%
btu-protocol
BTU Protocol (BTU) $ 0.253034 0.00%
stepn
GMT (GMT) $ 0.005890 0.30%
chaingpt
ChainGPT (CGPT) $ 0.019570 0.10%
buy-and-retire-3
buy and retire (530A) $ 0.018328 99,999.99%
stratis
Xertra (STRAX) $ 0.008293 0.40%
gama-token
Gama Token (GAMA) $ 0.182101 0.70%
wall-street-shiba
Wall Street Shiba (STIBA) $ 0.017362 1,263.07%
liquity
Liquity (LQTY) $ 0.183648 0.40%
based-one
Based (BASED) $ 0.076994 1.10%
faith-tribe
Faith Tribe (FTRB) $ 0.004379 10.50%
bulla-3
BULLA (BULLA) $ 0.017973 1.20%
power-protocol
Power Protocol (POWER) $ 0.085572 0.60%
dogs-2
Dogs (DOGS) $ 0.000035 0.50%
megausd
MegaUSD (USDM) $ 0.999369 0.00%
cigarette-token
Cigarette (CIG) $ 0.000375 11.70%
pha
PHALA (PHA) $ 0.021292 0.50%
restaking-vault-eth
Restaking Vault ETH (RSTETH) $ 3,335.41 0.00%
microstrategy-ondo-tokenized-stock
MicroStrategy (Ondo Tokenized Stock) (MSTRON) $ 92.74 4.50%
currenc-group-inc
CURRENC Group Inc. (CURR) $ 3.78 2.10%
yieldfi-yprism
YieldFi yPRISM (YPRISM) $ 1.00 0.00%
naoris
NaoX Protocol (NAORIS) $ 0.029722 1.70%
x-dol-x
x-DOL-x (XDOL) $ 0.060245 0.00%
okzoo
OKZOO (AIOT) $ 0.036444 7.00%
biconomy
Biconomy (BICO) $ 0.017756 12.90%
tria
TRIA (TRIA) $ 0.008225 4.40%
hippius
Hippius (SN75) $ 3.87 4.70%
metis-token
Metis (METIS) $ 2.29 0.00%
bitmart-token
BitMart (BMX) $ 0.052130 14.70%
tiger-alpha
Tiger Alpha (SN107) $ 12.53 0.30%
little-john
Little John (JOHN) $ 0.017195 0.00%
mubarak
Mubarak (MUBARAK) $ 0.017626 6.60%
bityuan
Bityuan (BTY) $ 0.023770 6.20%
marvell-technology-ondo-tokenized-stock
Marvell Technology (Ondo Tokenized Stock) (MRVLON) $ 215.70 6.00%
strikecoin
StrikeX (STRX) $ 0.019956 4.40%
pippin
pippin (PIPPIN) $ 0.017515 1.30%
milk-alliance
MiL.k (MLK) $ 0.030783 1.20%
ishares-core-msci-eafe-etf-ondo-tokenized-etf
iShares Core MSCI EAFE ETF (Ondo Tokenized ETF) (IEFAON) $ 101.95 1.40%
gaib-said
GAIB sAID (SAID) $ 1.07 0.00%
sui-bridged-ether-sui
Sui Bridged Ether (Sui) (SBETH) $ 2,265.08 3.37%
lucidum
Lucidum (LUCIC) $ 0.105784 0.40%
kotai
KOTAI (KTI) $ 0.000041 5.70%
wrapped-bch
Wrapped BCH (WBCH) $ 572.66 0.00%
openserv
OpenServ (SERV) $ 0.022378 5.90%
gigachad-2
Gigachad (GIGA) $ 0.001797 1.90%
pinksale
PinkSale (PINKSALE) $ 169.68 0.30%
aixbt
aixbt (AIXBT) $ 0.017230 0.90%
ark
ARK (ARK) $ 0.086745 1.20%
galaxy-weth-quality
Galaxy WETH Quality (ETH:GWETHQ) $ 1,927.02 1.00%
sui-bridged-usdt-sui
Sui Bridged USDT (Sui) (SBUSDT) $ 0.999014 0.00%
spiko-uk-t-bills-money-market-fund
Spiko UK T-Bills Money Market Fund (UKTBL) $ 1.39 0.10%
bit2me
Bit2Me (B2M) $ 0.005822 0.60%
storj
Storj (STORJ) $ 0.040265 2.80%
decentralized-validator-token
Decentralized Validator Token (DVSTETH) $ 1,409.89 0.00%
metal
Metal DAO (MTL) $ 0.183320 1.60%
ergo
Ergo (ERG) $ 0.203948 0.40%
striker
Striker (STKRI) $ 0.302903 0.00%
overtake
OVERTAKE (TAKE) $ 0.051013 2.60%
magic-internet-money-optimism
Magic Internet Money (Optimism) (MIM) $ 0.998394 0.02%
rosa-inu
Rosa Inu (ROSA) $ 0.000169 1.30%
certik
Shentu (CTK) $ 0.103888 1.70%
intel-ondo-tokenized-stock
Intel (Ondo Tokenized Stock) (INTCON) $ 96.28 4.90%
socean-staked-sol
Sanctum Infinity (INF) $ 138.37 4.48%
bonfida
Bonfida (FIDA) $ 0.017036 0.30%
sign-global
Sign (SIGN) $ 0.006621 2.00%
tether-rainbow-bridge
Rainbow Bridged USDT (Near) (USDT.E) $ 0.998573 0.05%
ardor
Ardor (ARDR) $ 0.016889 4.90%
mev-capital-usual-boosted-usdc-morpho-vault
MEV Capital Usual Boosted USDC Morpho Vault (USUALUSDC+) $ 1.10 0.05%
audius
Audius (AUDIO) $ 0.011627 0.00%
max-token
MAX (MAX) $ 0.253671 0.30%
bitcoin-pro
Bitcoin Pro (BTCP) $ 8.84 0.00%
delta-exchange-token
Delta Exchange (DETO) $ 0.059954 0.00%
ink-bridged-weth-ink
Ink Bridged WETH (Ink) (WETH) $ 2,253.81 4.09%
songbird
Songbird (SGB) $ 0.000966 0.80%
wojak-5
wojak (WOJAK) $ 0.000000 3.80%
usual
Usual (USUAL) $ 0.008715 1.10%
tokamak-network
Tokamak Network (TON) $ 0.257019 4.90%
arcblock
Arcblock (ABT) $ 0.167487 1.10%
idlemine
IdleMine (IDLE) $ 0.001649 1.00%
apertum
Apertum (APTM) $ 0.132680 1.00%
pepeto
PEPETO (PEPETO) $ 0.168765 23,724.46%
morpheusai
Morpheus AI (MOR) $ 1.90 1.10%
enso
Enso (ENSO) $ 0.796710 2.20%
steakhouse-weth
Steakhouse WETH V2 (STEAKETH) $ 1,900.05 10.48%
civic
Civic (CVC) $ 0.016402 0.20%
wax
WAX (WAXP) $ 0.003512 0.60%
infinex-2
Infinex (INX) $ 0.008205 1.40%
definitive
Definitive (EDGE) $ 0.062336 0.60%
astherus-staked-usdf
Aster Staked USDF (ASUSDF) $ 1.06 0.20%
oho-blockchain
OHO Blockchain (OHO) $ 0.000708 0.10%
zelcash
Flux (FLUX) $ 0.038676 0.50%
sui-bridged-wbtc-sui
Sui Bridged WBTC (Sui) (WBTC) $ 76,051.00 2.86%
gradients
Gradients (SN56) $ 3.22 0.00%
l2-standard-bridged-weth-megaeth
L2 Standard Bridged WETH (MegaETH) (WETH) $ 2,110.88 8.47%
myx-finance
MYX Finance (MYX) $ 0.068536 2.00%
degate
DeGate (DG) $ 0.041606 2.20%
hyperbeat-usdt
Hyperbeat USDT (HBUSDT) $ 1.09 2.16%
clearpool
Clearpool (CPOOL) $ 0.016098 3.90%
humidifi
HumidiFi (WET) $ 0.069997 1.10%
bridged-usd-coin-scroll
Bridged USD Coin (Scroll) (USDC) $ 0.998592 0.35%
everipedia
IQ (IQ) $ 0.000593 1.20%
wrapped-xrp
Wrapped XRP (WXRP) $ 1.59 1.82%
araracoin
Araracoin (ARARA) $ 0.000443 0.10%
verse-world
Verse World (VERSE) $ 0.016026 1.20%
wrapped-gonka
Wrapped Gonka (WGNK) $ 0.135092 0.40%
bluwhale
Bluwhale (BLUAI) $ 0.012930 0.70%
brevis
Brevis (BREV) $ 0.063398 0.60%
ankreth
Ankr Staked ETH (ANKRETH) $ 2,296.45 10.41%
tesla-ondo-tokenized-stock
Tesla (Ondo Tokenized Stock) (TSLAON) $ 335.75 0.00%
keep-network
Keep Network (KEEP) $ 0.016370 6.40%
blast
Blast (BLAST) $ 0.000232 2.30%
seda-2
SEDA (SEDA) $ 0.020969 3.30%
celer-network
Celer Network (CELR) $ 0.001979 1.10%
adshares
Adshares (ADS) $ 0.403916 0.10%
compounding-open-dollar
Compounding OpenDollar (CUSDO) $ 1.06 0.50%
dinero-2
Dinero (DINERO) $ 0.012609 0.50%
aeon-3
AEON (AEON) $ 0.083009 7.70%
bridged-usd-coin-optimism
Standard Bridged USDC.e (Optimism) (USDC.E) $ 1.00 0.14%
a-hunters-dream
A Hunters Dream (CAW) $ 0.000000 0.80%
recall
Recall (RECALL) $ 0.044647 2.60%
solstice
Solstice (SLX) $ 0.063310 1.40%
nym
Nym (NYM) $ 0.018278 4.20%
yei-finance
Yei Finance (CLO) $ 0.118409 6.10%
wrapped-btt-tron
Wrapped BTT (Tron) (WBTT) $ 0.001097 0.00%
hegic
Hegic (HEGIC) $ 0.014142 1.90%
avalanche-old-bridged-wbtc-avalanche
Avalanche Bridged WBTC (Avalanche) (WBTC.E) $ 76,133.00 3.34%
kekius-maximus-6
Kekius Maximus (KEKIUS) $ 0.015226 1.60%
dia-data
DIA (DIA) $ 0.127114 4.80%
chain-key-bitcoin
Chain-key Bitcoin (CKBTC) $ 76,338.00 2.42%
xai-blockchain
Xai (XAI) $ 0.007197 5.60%
lorenzo-protocol
Lorenzo Protocol (BANK) $ 0.035514 2.40%
glue
Wrapped Glue (WGLUE) $ 0.027749 0.38%
cobak-token
Cobak (CBK) $ 0.151324 2.40%
halo-4
Halo (HALO) $ 0.050231 2.50%
chrema-coin
Chrema Coin (CRMC) $ 0.299966 32.30%
liquid-mercury
Liquid Mercury (MERC) $ 0.004639 5.50%
arpa
ARPA (ARPA) $ 0.008562 0.30%
uchain-2
UCHAIN (UCN) $ 149.20 2.40%
metronome-synth-eth
Metronome Synth ETH (MSETH) $ 2,253.52 3.51%
medxt
MEDXT (MEDXT) $ 0.000714 2.10%
czs-dog
CZ's Dog (BROCCOLI) $ 0.015416 0.40%
tx
tx (TX) $ 0.001866 6.70%
fart-coin
FART COIN (FRTC) $ 0.000000 0.00%
localcoinswap
LocalCoinSwap (LCS) $ 0.347730 0.50%
sapien-2
Sapien (SAPIEN) $ 0.074939 0.60%
midas-wellington-income-opportunities
Midas Wellington Income Opportunities (MWIN) $ 130,476.00 0.00%
zentry
Zentry (ZENT) $ 0.001832 7.40%
vin-2
VulgarTycoon (VIN) $ 0.879738 1.60%
connect-token-wct
WalletConnect Token (WCT) $ 0.033647 2.30%
wrapped-sei
Wrapped SEI (WSEI) $ 0.086761 1.63%
dolphin-2
Dolphin (POD) $ 0.332877 9.60%
dkargo
dKargo (DKA) $ 0.002911 8.00%
claude-crab
Claude Crab (CRABAI) $ 0.001547 0.00%
hypurr-fun
Hypurr Fun (HFUN) $ 14.60 5.70%
capx-ai
Capx AI (CAPX) $ 0.151344 0.30%
big-time
Big Time (BIGTIME) $ 0.005108 2.20%
tera-smart-money
TERA (TERA) $ 0.019917 0.00%
wmatic
Wrapped POL (WPOL) $ 0.109033 3.55%
somnia
Somnia (SOMI) $ 0.090219 1.30%
echelon-prime
Echelon Prime (PRIME) $ 0.231327 0.00%
medibloc
Medibloc (MED) $ 0.001249 5.90%
banana-gun
Banana Gun (BANANA) $ 3.58 0.80%
mey-network
Mey Network (MEY) $ 0.043493 2.90%
moonbirds
Moonbirds (BIRB) $ 0.050139 0.20%
ishares-core-us-aggregate-bond-etf-ondo-tokenized-etf
iShares Core US Aggregate Bond ETF (Ondo Tokenized ETF) (AGGON) $ 100.86 0.20%
wrapped-nxm
Wrapped NXM (WNXM) $ 56.46 3.16%
infinity-ground
Infinity Ground (AIN) $ 0.076738 0.70%
adventure-gold
Adventure Gold (AGLD) $ 0.152966 1.30%
chili-coin
Chili Coin (CHI) $ 0.000452 4.90%
quark-chain
QuarkChain (QKC) $ 0.001945 0.10%
advertise-coin
Advertise Coin (ADCO) $ 0.354767 0.00%
taiko
Taiko (TAIKO) $ 0.069339 1.50%
marsmi
MarsMi (MARSMI) $ 0.014069 0.90%
bless-2
Bless (BLESS) $ 0.007617 1.80%
golden-butterfly-sacred-armor
金蝶圣甲 (Golden Butterfly Sacred Armor) (金蝶圣甲) $ 0.069924 0.70%
hylo-staked-sol
Hylo Staked SOL (HYLOSOL) $ 101.87 5.33%
playsout
PlaysOut (PLAY) $ 0.037390 1.10%
wrapped-zedxion
Wrapped Zedxion (WZEDX) $ 0.419166 0.00%
xmaquina
XMAQUINA (DEUS) $ 0.021893 6.70%
zksync-bridged-usdc-zksync
zkSync Bridged USDC (zkSync) (USDC) $ 0.999696 0.00%
celo-dollar
Mento Dollar (USDM) $ 1.00 0.10%
debox
DeBox (BOX) $ 0.027437 2.40%
yield-optimizer-eth
Yield Optimizer ETH (YOETH) $ 2,047.23 10.25%
aquarius
Aquarius (AQUA) $ 0.000317 0.60%
wrapped-quil
Wrapped QUIL (QUIL) $ 0.016300 7.45%
mon-protocol
MON Protocol (MON) $ 0.021361 0.90%
coin98
Coin98 (C98) $ 0.013848 1.00%
qie
QIE Blockchain (QIE) $ 0.153635 1.10%
strategy-stretch-preferred-ondo-tokenized
Strategy Stretch Preferred (Ondo Tokenized) (STRCON) $ 98.24 0.20%
radix
Radix (XRD) $ 0.001018 14.60%
ava-ai
Ava AI (AVA) $ 0.013564 2.60%
magic
Treasure (MAGIC) $ 0.040080 0.40%
spacex-republic-pre-ipo
SpaceX (Republic Pre-IPO) (PRESPCX) $ 142.42 1.30%
autonomi
Autonomi (ANT) $ 0.039487 0.50%
electroneum
Electroneum (ETN) $ 0.000748 0.30%
researchcoin
ResearchCoin (RSC) $ 0.056439 19.90%
tree-capital
Tree (TREE) $ 0.147405 1.30%
my-neighbor-alice
My Neighbor Alice (ALICE) $ 0.134787 5.70%
streamex-gldy
Streamex GLDY (GLDY) $ 4,354.15 1.00%
nest-alpha-vault
Nest Alpha Vault (NALPHA) $ 1.11 0.00%
linea-bridged-wsteth-linea
Linea Bridged wstETH (Linea) (WSTETH) $ 2,773.99 3.49%
egl1
EGL1 (EGL1) $ 0.013974 10.00%
katana-network-token
Katana (KAT) $ 0.004206 0.10%
corn-3
Corn (CORN) $ 0.025405 0.20%
tokenize-xchange
Tokenize Xchange (TKX) $ 0.171556 86.60%
injective-bridged-usdt-injective
Injective Bridged USDT (Injective) (USDT) $ 0.998576 0.04%
radicle
Radworks (RAD) $ 0.225450 0.10%
global-commercial-business
Global Commercial Business (GCB) $ 0.011082 0.20%
hylo-usd
Hylo USD (HYUSD) $ 0.999351 0.00%
stbl
STBL (STBL) $ 0.026532 2.40%
sanctum-2
Cloud (CLOUD) $ 0.021740 1.00%
tokenos-ai
TokenOS AI (TOS) $ 0.013204 1.40%
catx
CATX (CATX) $ 0.000015 1,017.00%
test-3
Test (TST) $ 0.014065 4.80%
fuzzybear
Fuzzybear (FUZZY) $ 0.000041 2.80%
anime
Animecoin (ANIME) $ 0.002369 0.80%
binance-peg-polkadot
Binance-Peg Polkadot (DOT) $ 1.52 1.18%
esui-dollar
eSui Dollar (SUIUSDE) $ 0.999281 0.10%
tesla-bstocks-tokenized-stock
Tesla (bStocks Tokenized Stock) (TSLAB) $ 335.95 0.10%
miladystrategy
MiladyStrategy (MLDSTR) $ 0.014838 224.02%
cacao
Maya Protocol (CACAO) $ 0.123010 0.90%
moonwell-artemis
Moonwell (WELL) $ 0.002885 0.20%
compound-basic-attention-token
cBAT (CBAT) $ 0.002291 9.22%
spell-token
Spell (SPELL) $ 0.000076 0.60%
proton-loan
Loan Protocol (LOAN) $ 0.000386 0.40%
nero-chain
NERO Chain (NERO) $ 0.001294 0.30%
sophon
Sophon (SOPH) $ 0.003316 1.40%
zeus-netwok-zbtc
Zeus Network zBTC (ZBTC) $ 65,312.00 9.98%
octra
Octra (OCT) $ 0.020688 1.20%
wrapped-bitcoin-pulsechain
Wrapped Bitcoin (PulseChain) (WBTC) $ 154.84 3.42%
harrypotterobamasonic10in
HarryPotterObamaSonic10Inu (ETH) (BITCOIN) $ 0.012919 0.30%
quai-network
Quai Network (QUAI) $ 0.011939 2.30%
l2-standard-bridged-usdt-base
L2 Standard Bridged USDT (Base) (USDT) $ 0.998486 0.02%
ishares-core-s-p-total-us-stock-market-etf-ondo-tokenized-etf
iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF) (ITOTON) $ 169.82 1.10%
1-is-all-you-need
$1 is all you need ($1) $ 0.014314 697.83%
sofi-technologies-ondo-tokenized-stock
SoFi Technologies (Ondo Tokenized Stock) (SOFION) $ 17.66 2.90%
gamebuild
GameBuild (GAME) $ 0.000658 4.30%
verified-emeralds
Verified Emeralds (VEREM) $ 5.08 0.90%
mantle-bridged-usdc-mantle
Mantle Bridged USDC (Mantle) (USDC) $ 1.01 0.57%
theros
Theros (THEROS) $ 0.176606 12.10%
concierge-io
AVA (Travala) (AVA) $ 0.170625 0.10%
apple-xstock
Apple xStock (AAPLX) $ 310.86 1.70%
what-if-3
What IF (IF) $ 0.013887 12.70%
solayer
Solayer (LAYER) $ 0.060012 1.60%
vcred
VCRED (VCRED) $ 1.12 0.20%
kpk-eth-prime
kpk ETH Prime (KPK ETH PR) $ 2,040.95 0.30%
goatseus-maximus
Goatseus Maximus (GOAT) $ 0.012582 0.50%
bitchemical-token
Bitchemical Token (BCHEM) $ 0.013514 0.10%
sandisk-corporation-xstock
Sandisk Corporation xStock (SNDKX) $ 1,643.28 7.50%
citrea
Citrea (CTR) $ 0.008314 0.20%
chromaway
Chromia (CHR) $ 0.012805 1.30%
kelp-gain
Kelp Gain (AGETH) $ 2,021.37 1.30%
dynachain
Dynachain (DYNA) $ 0.034198 0.50%
vaultbridge-bridged-usdc-katana
VaultBridge Bridged USDC (Katana) (VBUSDC) $ 0.998812 0.29%
hakimi
哈基米 (Hajimi) (哈基米) $ 0.012446 5.00%
singularitynet
SingularityNET (AGIX) $ 0.052138 0.50%
solv-protocol
Solv Protocol (SOLV) $ 0.002313 3.00%
portal-2
Portal (PORTAL) $ 0.013836 2.10%
shardus
Shardus (ULT) $ 0.030505 1.40%
flock-2
FLOCK (FLOCK) $ 0.028071 0.50%
joe
JOE (JOE) $ 0.026911 0.40%
stable-mint-usd
Stable Mint USD (USDSM) $ 0.989872 0.90%
bonk-staked-sol
Bonk Staked SOL (BONKSOL) $ 114.92 4.60%
ao-computer
ao Computer (AO) $ 2.01 5.30%
gnosis-xdai-bridged-usdc-gnosis
Gnosis xDAI Bridged USDC (Gnosis) (USDC) $ 0.999695 0.00%
pepecoin-network
Pepecoin (PEP) $ 0.000120 34.20%
usd-coinvertible
USD CoinVertible (USDCV) $ 0.999048 0.00%
synfutures
SynFutures (F) $ 0.002618 1.30%
harmony-horizen-bridged-usdc-harmony
Harmony Horizon Bridged USDC (Harmony) (1USDC) $ 0.999698 0.00%
bob-build-on-bitcoin
BOB (Build on Bitcoin) (BOB) $ 0.003807 0.10%
fluid-wrapped-ether
Fluid Wrapped Ether (FWETH) $ 4,040.26 0.00%
rujira
Rujira (RUJI) $ 0.164396 2.60%
credible-finance
Credible Finance (CRED) $ 0.539820 3.40%
sceptre-staked-flr
Sceptre Staked FLR (SFLR) $ 0.017776 0.35%
epic-chain
Epic Chain (EPIC) $ 0.362831 7.50%
deso
Decentralized Social (DESO) $ 1.16 1.50%
simon-s-cat
Simon's Cat (CAT) $ 0.000002 0.30%
bifrost
Bifrost (BFC) $ 0.008694 2.60%
mira-3
Mira (MIRA) $ 0.037537 1.00%
staked-usn
Staked USN (SUSN) $ 1.16 0.09%
overtime
Overtime (OVER) $ 0.218706 2.80%
cdai
cDAI (CDAI) $ 0.025036 0.06%
mwx-token
MWX Token (MWXT) $ 0.054127 0.40%
wrapped-xpl
Wrapped XPL (WXPL) $ 0.097847 4.93%
tokenbot-2
tokenbot (CLANKER) $ 12.16 0.70%
usdb
USDB (USDB) $ 1.00 0.50%
steakhouse-usdt
Steakhouse USDT V2 (STEAKUSDT) $ 1.00 0.07%
og-fan-token
OG Fan Token (OG) $ 2.51 2.90%
xsgd
XSGD (XSGD) $ 0.783150 0.10%
stablr-usd
StablR USD (USDR) $ 0.566576 34.90%
gains-network
Gains Network (GNS) $ 0.500595 0.00%
polygon-bridged-wsteth-polygon
Polygon Bridged wstETH (Polygon) (WSTETH) $ 2,772.84 3.57%
yusd-stablecoin
YUSD Stablecoin (YUSD) $ 0.994981 0.00%
atletico-madrid
Atletico Madrid Fan Token (ATM) $ 1.34 5.70%
makerdao-arbitrum-bridged-dai-arbitrum-one
MakerDAO Arbitrum Bridged DAI (Arbitrum One) (DAI) $ 0.999898 0.02%
metaplex
Metaplex (MPLX) $ 0.024865 1.20%
pulsechain-peacock
PulseChain Peacock (PCOCK) $ 0.014015 11.30%
diamond-token-2
DIAMOND TOKEN 💎 (DIT) $ 0.119887 4.10%
griffain
GRIFFAIN (GRIFFAIN) $ 0.011823 2.30%
cupsey-2
CUPSEY (CUPSEY) $ 0.011810 3.20%
wrapped-tao
Wrapped TAO (WTAO) $ 195.98 1.43%
fluent-network
Fluent (BLEND) $ 0.059007 1.40%
wom-token
WOM Protocol (WOM) $ 0.051927 0.00%
stader-maticx
Stader MaticX (MATICX) $ 0.111224 10.73%
freedom-dollar
Freedom Dollar (FUSD) $ 0.999286 0.00%
space-id
SPACE ID (ID) $ 0.027388 1.40%
bitmind
BitMind (SN34) $ 2.31 0.30%
tac
TAC (TAC) $ 0.002444 3.40%
mainframe-2
Mainframe (SN25) $ 2.39 11.10%
zenchain-2
ZenChain (ZTC) $ 0.000558 0.40%
tribe-2
Tribe (TRIBE) $ 0.311930 0.30%
zcoin
Firo (FIRO) $ 0.616899 0.30%
onfa
ONFA (OFT) $ 0.108819 0.40%
ridges-ai
Ridges AI (SN62) $ 2.28 0.40%
balsa-mm-fund
Balsa MM Fund (BMMF) $ 0.083690 0.00%
saucerswap
SaucerSwap (SAUCE) $ 0.012578 2.40%
mimatic
MAI (MIMATIC) $ 0.971321 0.20%
h2o-2
H2O (H2O) $ 5.11 0.70%
handy
Handy (HANDY) $ 0.001735 5.40%
hydrated-dollar
Hydrated Dollar (HOLLAR) $ 0.997480 0.10%
optio
Optio (OPT) $ 0.000682 40.70%
bubblemaps
Bubblemaps (BMT) $ 0.015826 5.00%
dolomite
Dolomite (DOLO) $ 0.022382 7.10%
steam-exchange
Wrapped STEAMX (WSTEAMX) $ 0.060141 0.06%
sdola
sDOLA (SDOLA) $ 1.16 1.56%
ishares-msci-eafe-etf-ondo-tokenized-etf
iShares MSCI EAFE ETF (Ondo Tokenized ETF) (EFAON) $ 108.70 1.00%
the-bitcoin-bull
The Bitcoin Bull (TBB) $ 0.011339 7.60%
beincom
Beincom (BIC) $ 0.005048 0.90%
quest-2
QUEST ($QUEST) $ 0.063720 1.90%
orderly-network
Orderly (ORDER) $ 0.027557 0.30%
hamster-kombat
Hamster Kombat (HMSTR) $ 0.000174 0.90%
ishares-tips-bond-etf-ondo-tokenized-etf
iShares TIPS Bond ETF (Ondo Tokenized ETF) (TIPON) $ 111.68 0.80%
heima
Heima (HEI) $ 0.137716 12.20%
vestra-dao
Vestra DAO (VSTR) $ 0.005780 9.90%
huobi-token
Huobi (HT) $ 0.101604 0.60%
metadium
Metadium (META) $ 0.006376 0.50%
telos
Telos (TLOS) $ 0.024490 3.50%
moviebloc
MovieBloc (MBL) $ 0.000563 1.10%
mango-network
Mango Network (MGO) $ 0.006919 1.00%
hyperbeat-lst-vault
Hyperbeat LST Vault (LSTHYPE) $ 34.40 2.76%
origin-protocol
Origin Token (OGN) $ 0.015950 1.00%
unitas-gold
Unitas Gold (XGLD) $ 4,358.75 5.10%
kaio
KAIO (KAIO) $ 0.016033 9.90%
pleasing-gold
Pleasing Gold (PGOLD) $ 558.45 97.00%
etherfuse-ustry
Etherfuse USTRY (USTRY) $ 1.07 0.77%
chex-token
Chintai (CHEX) $ 0.008709 5.20%
diam
DIAM (DIAM) $ 0.005183 0.80%
superform
Superform (UP) $ 0.049116 2.90%
yieldfi-ytoken
YieldFi yToken (YUSD) $ 0.998454 0.00%
maverick-protocol
Maverick Protocol (MAV) $ 0.009251 2.30%
binance-peg-avalanche
Binance-Peg Avalanche (AVAX) $ 10.05 0.75%
lagrange
Lagrange (LA) $ 0.055946 10.00%
rize
RIZE (RIZE) $ 0.005204 4.30%
bitcoin-diamond
Bitcoin Diamond (BCD) $ 0.061182 0.00%
stake-link
stake.link (SDL) $ 0.281831 5.20%
tradable-latam-charge-card-ssn
Tradable LatAm Charge Card SSN (PC0000111) $ 1.00 0.00%
tung-tung-tung-sahur-2
Tung Tung Tung Sahur (TRIPLET) $ 0.010723 4.00%
aurora-near
Aurora (AURORA) $ 0.014688 1.90%
felysyum
Felysyum (FELY) $ 0.244629 0.70%
rocksolid-reth
RockSolid rETH (ROCK.RETH) $ 2,454.73 9.96%
yom
YOM (YOM) $ 0.091330 7.20%
chill-guy
Just a chill guy (CHILLGUY) $ 0.010705 0.70%
origyn-foundation
ORIGYN (OGY) $ 0.001316 1.10%
ember-third-eye
Ember Third Eye (ETHIRD) $ 1.05 0.10%
pdd-holdings-ondo-tokenized
PDD Holdings (Ondo Tokenized) (PDDON) $ 86.96 0.30%
lava-network
Lava Network (LAVA) $ 0.017932 1.00%
initia
Initia (INIT) $ 0.051673 4.10%
bald
Bald (BALD) $ 0.010527 0.80%
metamui
MetaMUI (MMUI) $ 0.022283 0.50%
unit-fartcoin
Unit Fartcoin (UFART) $ 0.138571 7.60%
boundless
Boundless (ZKC) $ 0.036341 0.40%
infinit
INFINIT (IN) $ 0.030420 0.10%
4-2
4 (4) $ 0.010486 2.70%
harmony
Harmony (ONE) $ 0.000705 0.10%
nest-alpha-vault-lp
Nest Alpha Vault (LP) (INALPHA) $ 0.954200 0.00%
wanchain
Wanchain (WAN) $ 0.052420 0.60%
tether-avalanche-bridged-usdt-e
Avalanche Bridged USDT (Avalanche) (USDTE) $ 0.999217 0.01%
gold-token-sa-dgld-tokenized-gold
Digital Gold (DGLD) $ 4,318.88 0.50%
loopring
Loopring (LRC) $ 0.007577 4.90%
ishares-gold-trust-ondo-tokenized-stock
iShares Gold Trust (Ondo Tokenized Stock) (IAUON) $ 81.77 0.90%
olaxbt
OlaXBT (AIO) $ 0.044844 8.90%
marinade
Marinade (MNDE) $ 0.018835 0.20%
openkaito
OpenKaito (SN5) $ 2.51 0.20%
decentrawood
Decentrawood (DEOD) $ 0.017138 1.40%
xeffy
Xeffy (XEF) $ 0.005797 0.60%
chainbase
Chainbase (C) $ 0.063580 2.20%
bone-shibaswap
Bone ShibaSwap (BONE) $ 0.040573 2.30%
gods-unchained
Gods Unchained (GODS) $ 0.023018 11.50%
defi-money
Defi.money (MONEY) $ 0.998951 0.00%
spacex-ondo-tokenized-stock
SpaceX (Ondo Tokenized Stock) (SPCXON) $ 142.37 1.00%
nineteen-ai
Blockmachine (SN19) $ 2.12 0.50%
eusd-2
eUSD (EUSD) $ 0.999340 0.00%
rootstock
Rootstock Bitcoin (RBTC) $ 75,199.00 3.34%
frenpet
Fren Pet (FP) $ 1.40 5.60%
stader-bnbx
Stader BNBx (BNBX) $ 689.31 10.53%
trusta-ai
Trusta AI (TA) $ 0.055735 3.40%
vifoxcoin
ViFoxCoin (VFX) $ 1.00 0.00%
kled-ai
Kled AI (KLED) $ 0.010036 0.60%
wisdomtree-floating-rate-treasury-fund-dinari-tokenized-etf
WisdomTree Floating Rate Treasury Fund (Dinari Tokenized ETF) (USFR) $ 50.50 0.00%
backed-govies-0-6-months-euro
Backed GOVIES 0-6 months EURO (BC3M) $ 146.32 0.20%
usda-4
USDA (USDA) $ 1.00 0.10%
thorswap
THORSwap (THOR) $ 0.039577 1.40%
south-korea-bull-3x-etf-bstocks-tokenized-stock
South Korea Bull 3X ETF (bStocks Tokenized Stock) (KORUB) $ 19.40 5.60%
osaka-protocol
Osaka Protocol (OSAK) $ 0.000000 0.30%
thinking-cat
Thinking Cat (HMM) $ 0.009948 23.90%
dexnet
DexNet (DEXNET) $ 0.005014 4.30%
gigadot
GIGADOT (GDOT) $ 1.27 11.45%
superrare
SuperRare (RARE) $ 0.012095 1.10%
alchemix-usd
Alchemix USD (ALUSD) $ 0.937225 0.50%
wrapped-core
Wrapped CORE (WCORE) $ 0.085938 2.59%
404-gen
404—GEN (SN17) $ 1.81 0.50%
iagon
Iagon (IAG) $ 0.020481 3.00%
usdc-rainbow-bridge
Rainbow Bridged USDC (Near) (USDC.E) $ 0.999337 0.08%
ix-swap
IXS (IXS) $ 0.054481 0.70%
tg-casino
TG.Casino (TGC) $ 0.128084 0.50%
buttcoin-7
Buttcoin (BUTTCOIN) $ 0.009803 3.20%
edexa
edeXa (EDX) $ 0.012820 0.10%
alethea-artificial-liquid-intelligence-token
Artificial Liquid Intelligence (ALI) $ 0.001042 1.30%
wormhole-bridged-weth-monad
Wormhole Bridged WETH (Monad) (WETH) $ 2,255.57 3.95%
ishares-core-msci-emerging-markets-etf-ondo-tokenized-etf
iShares Core MSCI Emerging Markets ETF (Ondo Tokenized ETF) (IEMGON) $ 80.84 1.80%
caldera
Caldera (ERA) $ 0.055850 0.60%
opinion
Opinion (OPN) $ 0.053659 5.20%
sideshift-token
SideShift (XAI) $ 0.068015 0.00%
hairdao
HairDAO (HAIR) $ 13.88 2.20%
corgiai
CorgiAI (CORGIAI) $ 0.000027 2.10%
poollotto-finance
Poollotto.finance (PLT) $ 0.538283 219.70%
ellipsis
Ellipsis [OLD] (EPS) $ 0.013461 0.60%
tap
XTP (XTP) $ 0.000982 3.30%
semicon-bull-3x-etf-bstocks-tokenized-stock
Semicon Bull 3X ETF (bStocks Tokenized Stock) (SOXLB) $ 128.05 11.10%
secret
Secret (SCRT) $ 0.026580 4.20%
squid-3
Squid (QUID) $ 0.067389 4.80%
altura-2
Altura Vault Tokens (AVLT) $ 0.325426 3.10%
mitosis
Mitosis (MITO) $ 0.025997 2.40%
big-dog-fink
Big Dog Fink (BINK) $ 0.000065 0.30%
elsa
Elsa (ELSA) $ 0.042026 0.40%
usdm-2
USDM (USDM) $ 0.998921 0.40%
aura-on-sol
aura (AURA) $ 0.009941 0.70%
yield-optimizer-usd
Yield Optimizer USD (YOUSD) $ 1.06 0.00%
pawswap
PAW (PAW) $ 0.000000 0.10%
rupiah-token
Rupiah Token (IDRT) $ 0.000055 2.70%
tendies-2
TENDIES (TENDIES) $ 0.009550 1.90%
iusd
Indigo Protocol iUSD (IUSD) $ 0.999340 2.10%
ninja-squad
Ninja Squad Token (NST) $ 1.10 0.20%
pythia
PYTHIA (PYTHIA) $ 0.009466 6.40%
elonxcat
ElonXCat (EXC) $ 0.000000 1.00%
ai-companions
AI Companions (AIC) $ 0.009367 9.50%
xion-2
Xion (XION) $ 0.101475 0.80%
ambire-wallet
Ambire Wallet (WALLET) $ 0.012952 0.20%
eesee
Eesee (ESE) $ 0.011913 0.80%
stablr-euro
StablR Euro (EURR) $ 0.545792 0.10%
nvidia-bstocks
NVIDIA (bStocks Tokenized Stock) (NVDAB) $ 219.06 1.40%
bitcast
Bitcast (SN93) $ 2.47 7.20%
ishares-russell-1000-growth-etf-ondo-tokenized-etf
iShares Russell 1000 Growth ETF (Ondo Tokenized ETF) (IWFON) $ 492.74 1.60%
lukso-token
LUKSO [OLD] (LYXE) $ 0.103569 2.70%
fartboy
Fartboy ($FARTBOY) $ 0.009328 2.40%
act-i-the-ai-prophecy
Act I The AI Prophecy (ACT) $ 0.009826 0.60%
nusd
Synthetix sUSD (SUSD) $ 0.231948 0.00%
alien-worlds
Alien Worlds (TLM) $ 0.001325 5.30%
pumpcade
PUMPCADE (PUMPCADE) $ 0.009281 0.70%
squirrel-by
Squirrel By 𝓜𝓪𝓽𝓽 𝓕𝓾𝓻𝓲𝓮 (SQUIRREL) $ 0.101802 0.00%
midas-re7-ethereum
Midas Re7 Ethereum (MRE7ETH) $ 1,930.96 1.00%
coinbase-xstock
Coinbase xStock (COINX) $ 146.58 1.60%
verona
Verona (VERONA) $ 0.099774 0.70%
kernel-2
KernelDAO (KERNEL) $ 0.032081 0.20%
scout-protocol-token
Scout Protocol Token (DEV) $ 0.021863 0.00%
vow
Vow (VOW) $ 0.029340 0.10%
kishu-inu
Kishu Inu (KISHU) $ 0.000000 4.30%
moonriver
Moonriver (MOVR) $ 0.736693 2.20%
adex
heyAura (ADX) $ 0.061889 2.20%
genius-ai
GENIUS AI (GNUS) $ 0.599854 0.40%
bnbtiger
BNB Tiger OG (BNBTIGEROG) $ 0.000000 1.60%
gunz
Gunz (GUN) $ 0.002956 1.00%
wise-token11
Wise (WISE) $ 0.104248 0.50%
benqi
BENQI (QI) $ 0.001257 1.80%
bertram-the-pomeranian
Bertram The Pomeranian (BERT) $ 0.009248 7.80%
pond-coin
PondCoin (PNDC) $ 0.000000 14.80%
defi-ssi
DEFI.ssi (DEFI.SSI) $ 0.358069 0.00%
konet
KONET (KONET) $ 0.019350 10.10%
nebius-bstocks-tokenized-stock
Nebius (bStocks Tokenized Stock) (NBISB) $ 248.15 7.30%
cronos-zkevm-cro
Cronos zkEVM CRO (ZKCRO) $ 0.079110 12.75%
layerzero-bridged-usdc-etherlink
Etherlink Bridged USDC (Etherlink) (USDC) $ 0.999617 0.01%
mcoin1
MCOIN (MCOIN) $ 0.050724 9.30%
botanix-pegged-bitcoin
Botanix Pegged Bitcoin (PBTC) $ 76,189.00 3.43%
schuman-europ
EURØP (EUROP) $ 1.16 0.20%
dymension
Dymension (DYM) $ 0.014153 0.40%
wo-ta-ma-laile
我踏马来了 (我踏马来了) $ 0.008933 0.60%
singularry
Singularry (SINGULARRY) $ 0.008929 0.80%
meta-platforms-ondo-tokenized-stock
Meta Platforms (Ondo Tokenized Stock) (METAON) $ 544.47 3.80%
eurocoinpay
EurocoinToken (ECTE) $ 0.088631 2.80%
hava
HAVA (HAVA) $ 2.22 0.00%
doodles
Doodles (DOOD) $ 0.001131 0.20%
capybara-nation
Capybara Nation (BARA) $ 0.000000 0.40%
uranium
Uranium (XU3O8) $ 5.50 0.30%
tradoor
Tradoor (TRADOOR) $ 0.611480 5.10%
compound-usd-coin
Compound USDC (CUSDC) $ 0.025317 0.04%
green
Green (GREEN) $ 0.000185 5.30%
wrapped-itry
Wrapped iTRY (WITRY) $ 0.023788 0.10%
stakestone
StakeStone (STO) $ 0.038696 1.40%
ccip-bridged-usdc-ronin
CCIP Bridged USDC (Ronin) (USDC) $ 1.00 0.05%
ishares-0-3-month-treasury-bond-etf-ondo-tokenized-etf
iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized ETF) (SGOVON) $ 102.04 0.20%
intuition
Intuition (TRUST) $ 0.048637 0.10%
gold-xstock
Gold xStock (GLDX) $ 399.47 1.20%
solayer-staked-sol
Solayer Staked SOL (SSOL) $ 112.14 4.30%
crypgpt
CrypGPT (CRYPGPT) $ 0.055769 1.80%
wrapped-songbird
Wrapped Songbird (WSGB) $ 0.001874 0.39%
boba-network
Boba Network (BOBA) $ 0.017520 3.40%
gauntlet-usdt-balanced
Gauntlet USDT Balanced (GTUSDTB) $ 1.00 0.08%
microsoft-ondo-tokenized-stock
Microsoft (Ondo Tokenized Stock) (MSFTON) $ 481.58 0.50%
gnosis-xdai-bridged-weth-gnosis-chain
Gnosis xDai Bridged WETH (Gnosis Chain) (WETH) $ 2,261.26 3.63%
apple-ondo-tokenized-stock
Apple (Ondo Tokenized Stock) (AAPLON) $ 310.93 1.60%
hippo-protocol
Hippo Protocol (HP) $ 0.006024 0.30%
binance-peg-filecoin
Binance-Peg Filecoin (FIL) $ 1.08 0.38%
lienfi
LienFi (LFI) $ 0.000137 79.60%
konnect
Konnect (KCT) $ 0.001166 17.60%
koma-inu
Koma Inu (KOMA) $ 0.014138 2.20%
aave-usdc-sonic
Aave USDC (Sonic) (ASONUSDC) $ 0.999549 0.01%
amd-ondo-tokenized-stock
AMD (Ondo Tokenized Stock) (AMDON) $ 482.63 3.70%
liquid-hype-yield
Liquid HYPE Yield (LIQUIDHYPE) $ 35.23 3.53%
swarm-3
Swarm (SN124) $ 2.35 8.80%
bitcoin-usd-btcfi
Bitcoin USD (BTCFi) (BTCUSD) $ 0.996147 0.00%
achain
Achain (ACT) $ 0.009796 1.00%
bella-protocol
Bella Protocol (BEL) $ 0.105022 1.40%
omnibridge-bridged-zcash-solana
OmniBridge Bridged Zcash (Solana) (ZEC) $ 279.96 3.31%
commonwealth-2
CommonWealth (CWU) $ 0.008389 7.10%
wecan
Wecan (WECAN) $ 0.001398 7.80%
taohash
Cacheon (SN14) $ 1.86 0.30%
cookie
Cookie DAO (COOKIE) $ 0.010560 1.60%
sk-hynix-xstock
SK Hynix xStock (SKHYX) $ 162.44 3.50%
blockv
BLOCKv (VEE) $ 0.005734 2.20%
yneth-max
ynETH MAX (YNETHX) $ 2,018.64 10.14%
elevatefi
ElevateFi (EFI) $ 11.14 1.70%
bridged-usdc-gnosis
Gnosis xDAI Bridged USDC (Gnosis) (USDC.E) $ 1.00 0.22%
cjournal-2
CJournal (CJL) $ 0.012850 0.50%
abelian
Abelian (ABEL) $ 0.058906 3.80%
staked-yuzu-usd
Staked Yuzu USD (SYZUSD) $ 0.998695 0.04%
paradex
Paradex (DIME) $ 0.012440 12.90%
frok-ai
FROK (FROK) $ 0.041349 0.70%
bxn
BXN (BXN) $ 0.000519 2.80%
yieldnest-rwa-max
YieldNest RWA MAX (YNRWAX) $ 0.959231 0.10%
solidus-aitech
AITECH Cloud Network (ACN) $ 0.004637 2.90%
ostrich
Ostrich (RICH) $ 0.181895 0.00%
shmonad
ShMonad (SHMON) $ 0.034647 2.20%
hyperion-staked-aptos
Hyperion Staked Aptos (STAPT) $ 1.51 0.15%
hemi
Hemi (HEMI) $ 0.008384 33.10%
thena
Thena (THE) $ 0.060161 0.60%
strike-2
Strike (STRIKE) $ 0.456432 0.30%
unicorn-fart-dust
Unicorn Fart Dust (UFD) $ 0.008217 1.60%
midas-mre7yield
Midas mRe7YIELD (MRE7YIELD) $ 1.07 0.00%
drift-protocol
Drift Protocol (DRIFT) $ 0.011394 0.10%
swarms
Swarms (SWARMS) $ 0.008147 1.40%
usdpt-western-union
USDPT | Western Union (USDPT) $ 0.999953 0.00%
dexsport
Dexsport (DESU) $ 0.014170 4.60%
limitless-3
Limitless (LMTS) $ 0.061465 0.20%
skor-ai
SKOR AI (SKORAI) $ 0.016474 0.00%
limewire-token
LimeWire (LMWR) $ 0.012773 1.80%
georgeplaysclashroyale
GeorgePlaysClashRoyale (CLASH) $ 0.008054 7.60%
babyboomtoken
BabyBoomToken (BBT) $ 0.046865 14.70%
forta
Forta (FORT) $ 0.012448 2.00%
lodesupply
LODEsupply (LODE) $ 2.86 0.00%
orchid-protocol
Orchid Protocol (OXT) $ 0.008099 2.00%
resolv
Resolv (RESOLV) $ 0.017174 1.50%
summer-point-token
Summer Point Token (SUMX) $ 0.010448 0.00%
theoriq
Theoriq (THQ) $ 0.009607 1.30%
vultisig
Vultisig (VULT) $ 0.079575 1.60%
memex-token
MEMEX Token (MMX) $ 0.030508 0.00%
paris-saint-germain-fan-token
Paris Saint-Germain Fan Token (PSG) $ 0.472170 2.20%
bitlayer-bitvm
Bitlayer (BTR) $ 0.030372 2.50%
usualx
USUALx (USUALX) $ 0.015993 1.90%
zkpass
zkPass (ZKP) $ 0.039346 0.70%
redteam
RedTeam (SN61) $ 1.56 8.40%
alpha-trader-exchange-atx
Quantum Innovate (SN63) $ 1.57 0.00%
looped-hype
Looped Hype (LHYPE) $ 59.96 1.50%
coinbase-ondo-tokenized-stock
Coinbase (Ondo Tokenized Stock) (COINON) $ 146.44 2.00%
pingo
PinGo (PINGO) $ 0.029233 2.60%
overnight-fi-usd-blast
Overnight.fi USD+ (Blast) (USD+) $ 0.980201 0.00%
beatswap
Beatswap (BTX) $ 0.034983 0.90%
midas-mapollo
Midas mAPOLLO (MAPOLLO) $ 1.11 0.00%
quick
Quickswap [OLD] (QUICK) $ 11.74 4.31%
makerdao-optimism-bridged-dai-optimism
MakerDAO Optimism Bridged DAI (Optimism) (DAI) $ 1.00 0.28%
dora-2
DORA (DORA) $ 0.007847 0.10%
bitlight
Bitlight (LIGHT) $ 0.181939 4.20%
ark-of-panda
Ark of Panda (AOP) $ 0.033107 18.43%
bitquant
ORO (SN15) $ 5.32 23.40%
fuel-network
Fuel Network (FUEL) $ 0.000882 1.30%
agoras-currency-of-tau
Agoras: Tau Net (AGRS) $ 0.185983 6.70%
hyperlink-hlhype
HyperLink hlHYPE (HLHYPE) $ 58.33 3.70%
mito
Mito (MITO) $ 0.219877 0.00%
usp-yield-optimized-stablecoin
USP Yield Optimized Stablecoin (USP) $ 1.12 0.20%
ponke
PONKE (PONKE) $ 0.014029 1.60%
jumptoken
JumpToken (JMPT) $ 0.527561 1.20%
usd-coin-pulsechain
Bridged USD Coin (PulseChain) (USDC) $ 1.00 0.29%
polyswarm
PolySwarm (NCT) $ 0.004132 0.50%
galatasaray-fan-token
Galatasaray Fan Token (GAL) $ 0.926887 0.80%
yellow
Yellow (YELLOW) $ 0.040360 0.30%
solid-x
Solid X (SOLIDX) $ 0.368850 13.50%
infinite-games
Infinite Games (SN6) $ 2.02 7.32%
chonketha-the-wet-beaver
Chonketha the Wet Beaver (CHONKETHA) $ 0.007738 4.10%
save
Save (SAVE) $ 0.152767 1.20%
intel-xstock
Intel xStock (INTCX) $ 96.32 14.10%
lumint
Lumint (LUMINT) $ 0.012046 7.10%
fih
fih (FIH) $ 0.007706 3.30%
newton-protocol
Newton Protocol (NEWT) $ 0.035804 1.10%
parcl
Parcl (PRCL) $ 0.008512 100.40%
switch-token
Switch Token (SWITCH) $ 0.000176 11.40%
trufin-staked-apt
TruFin Staked APT (TRUAPT) $ 1.57 0.00%
wolf-2
WOLF (WOLF) $ 0.007624 2.20%
solana-bridged-trx-solana
Solana Bridged TRX (Solana) (TRX) $ 0.286172 0.84%
santos-fc-fan-token
Santos FC Fan Token (SANTOS) $ 0.473502 2.50%
heroes-of-mavia
Heroes of Mavia (MAVIA) $ 0.030467 0.30%
mcdex
MUX Protocol (MCB) $ 2.00 0.70%
kleros
Kleros (PNK) $ 0.008234 0.40%
apollox-2
APX (APX) $ 0.218724 0.41%
ika
Ika (IKA) $ 0.002503 0.50%
amazon-ondo-tokenized-stock
Amazon (Ondo Tokenized Stock) (AMZNON) $ 259.74 0.00%
binance-peg-near-protocol
Binance-Peg NEAR Protocol (NEAR) $ 1.19 0.28%
balancer
Balancer (BAL) $ 0.106831 2.00%
as-roma-fan-token
AS Roma Fan Token (ASR) $ 0.844663 1.90%
honey-3
Honey (HONEY) $ 1.00 0.60%
foom
Foom (FOOM) $ 0.000000 0.20%
1guy
1GUY (1GUY) $ 0.008436 0.00%
tokenfi
TokenFi (TOKEN) $ 0.001878 4.40%
moonbeam
Moonbeam (GLMR) $ 0.007157 1.40%
unity-2
Unity (UTY) $ 0.999237 0.00%
redbelly-network-token
Redbelly Network (RBNT) $ 0.002737 0.60%
ishares-msci-emerging-markets-etf-ondo-tokenized-etf
iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF) (EEMON) $ 66.15 1.40%
i-love-puppies
I love puppies (PUPPIES) $ 0.000000 1.50%
slerf
Slerf [OLD] (SLERF) $ 0.014726 1.90%
daddy-tate
Daddy Tate (DADDY) $ 0.012278 4.90%
world-assets
WorldAssets (INC) $ 0.081668 1.30%
apex-5
Apex (SN1) $ 1.50 0.50%
unit-solana
Unit Solana (USOL) $ 99.07 4.36%
sino-2
SINO (SINO) $ 0.007360 0.10%
mia-2
MIA (MIA) $ 0.013340 0.10%
riv-coin
RIV Coin (RIV) $ 0.003427 2.20%
hylo-leveraged-sol
Hylo Leveraged SOL (XSOL) $ 0.068094 52.80%
firmachain
Firmachain (FCT) $ 0.005954 0.20%
build-on-bnb
Build On BNB (BOB) $ 0.000000 1.20%
memetern
Memetern (MXT) $ 0.007648 10.70%
jimothy-the-raccoon
Jimothy The Raccoon (JIMOTHY) $ 0.007247 11.00%
patience-token
Patience Token (PATIENCE) $ 4.43 0.60%
coinmetro
Coinmetro (XCM) $ 0.022955 0.20%
anzen-usdz
Anzen USDz (USDZ) $ 0.958647 0.50%
everlyn
Everlyn (LYN) $ 0.034515 0.60%
bitcoin-limited-edition
Bitcoin Limited Edition (BTCLE) $ 461.95 0.10%
wormhole-bridged-hype
Wormhole Bridged HYPE (HYPE) $ 33.62 1.82%
peercoin
Peercoin (PPC) $ 0.236923 7.30%
wrapped-viction
Wrapped Viction (WVIC) $ 0.065015 2.39%
pepecoin-2
PepeCoin (PEPECOIN) $ 0.073793 1.30%
coinbase-bstocks-tokenized-stock
Coinbase (bStocks Tokenized Stock) (COINB) $ 146.74 1.70%
amazon-xstock
Amazon xStock (AMZNX) $ 259.82 0.00%
wrapped-super-oeth
Wrapped Super OETH (WSUPEROETH) $ 2,464.73 3.53%
layer3
Layer3 (L3) $ 0.004006 1.50%
soil
Soil (SOIL) $ 0.094539 2.30%
robinhood-xstock
Robinhood xStock (HOODX) $ 91.19 3.90%
elysia
ELYSIA (EL) $ 0.001044 0.10%
vine
Vine (VINE) $ 0.007097 14.60%
fight-2
FIGHT (FIGHT) $ 0.003452 2.50%
zedxion-bridged-usdt-zedxion
Zedxion Bridged USDT (Zedxion) (USDT.Z) $ 0.998576 0.04%
fc-barcelona-fan-token
FC Barcelona Fan Token (BAR) $ 0.263124 1.70%
stasis-eurs
STASIS EURO (EURS) $ 1.19 0.00%
gpu-ai
GPU AI (GPUAI) $ 0.008297 5,526.14%
gitcoin
Gitcoin (GTC) $ 0.080379 1.10%
pear-protocol
Pear Protocol (PEAR) $ 0.014516 1.20%
slash-vision-labs
Slash Vision Labs (SVL) $ 0.002952 3.50%
bobo-coin-2
Bobo (BOBO) $ 0.007023 0.20%
superwalk
SuperWalk GRND (GRND) $ 0.008644 1.00%
numine-token
NUMINE Token (NUMI) $ 0.019852 0.10%
trevee-plasma-usd
Trevee Plasma USD (PLUSD) $ 0.996522 0.00%
avail
Avail (AVAIL) $ 0.001761 0.70%
catecoin
CateCoin (CATE) $ 0.000000 1.20%
assemble-protocol
Assemble AI (ASM) $ 0.004249 0.60%
microsoft-xstock
Microsoft xStock (MSFTX) $ 481.84 0.40%
w-ai-parked
basilica (SN39) $ 1.58 4.60%
dextools
DexTools (DEXT) $ 0.097539 3.00%
spacechain-erc-20
SpaceChain (ERC-20) (SPC) $ 0.011447 0.40%
meta-xstock
Meta xStock (METAX) $ 544.63 3.80%
backed-coinbase-global
Backed Coinbase Global (BCOIN) $ 148.49 0.50%
solomon
Solomon (SOLO) $ 0.600251 1.40%
crypto-com-wrapped-btc
Crypto.com Wrapped BTC (CDCBTC) $ 76,255.00 3.52%
aia
DeAgentAI (AIA) $ 0.068838 1.60%
l2-standard-bridged-weth-blast
L2 Standard Bridged WETH (Blast) (WETH) $ 2,263.87 3.35%
ado-network
ADO Protocol (ADO) $ 0.017057 15.50%
staked-yusd
Staked YUSD (SYUSD) $ 1.02 0.00%
access-protocol
Access Protocol (ACS) $ 0.000127 1.10%
wilder-world
Wilder World (WILD) $ 0.013579 6.00%
red-pulse
Phoenix Global [OLD] (PHB) $ 0.002098 0.30%
hopr
HOPR (HOPR) $ 0.010144 7.90%
anyswap
Anyswap (ANY) $ 0.514145 0.20%
sandisk-ondo-tokenized
SanDisk (Ondo Tokenized) (SNDKON) $ 1,649.21 5.90%
joe-coin
Joe Coin (JOE) $ 0.006768 5.80%
resistance-dog
Resistance Dog (REDO) $ 0.067663 0.40%
anzens-usda
Anzens USDA (USDA) $ 1.00 0.50%
rice-ai
Rice AI (RICE) $ 0.008783 165.20%
citrea-usd
Citrea USD (CTUSD) $ 1.00 0.00%
vanar-chain
Vanar Chain [OLD] (VANRY) $ 0.003113 1.00%
rss3
RSS3 (RSS3) $ 0.004433 1.00%
lido-staked-sol
Lido Staked SOL (STSOL) $ 120.82 4.58%
gamer-tag
The Game Company (GMRT) $ 0.028479 3.00%
wrapped-hypertensor
Wrapped Hypertensor (TENSOR) $ 7.57 1.30%
supra
Supra (SUPRA) $ 0.000205 0.90%
soulpeg-usd
SoulPeg USD (SPUSD) $ 0.997086 0.10%
smolecoin
smolecoin (SMOLE) $ 0.000016 2.40%
badger-dao
Badger (BADGER) $ 0.342904 0.50%
midas-rockaway-market-neutral
Midas Rockaway Market Neutral (MROX) $ 1.14 0.10%
noble-dollar-usdn
Noble Dollar (USDN) (USDN) $ 0.999803 0.00%
sturdy-subnet
Sturdy (SN10) $ 1.33 0.90%
mind-network
Mind Network (FHE) $ 0.026761 0.30%
stader
Stader (SD) $ 0.092680 0.50%
vertek
Xauras (XRS) $ 0.029784 0.00%
aiusd
AIUSD (AIUSD) $ 0.999178 0.00%
mossland
Mossland (MOC) $ 0.014753 0.60%
hana-network
Hana Network (HANA) $ 0.027558 17.30%
aism-faith-token
AISM FAITH TOKEN (AISM) $ 0.006614 1.90%
monacoin
MonaCoin (MONA) $ 0.062741 3.70%
xtal-2
XTAL (XTAL) $ 0.006581 6.50%
dadi-insight-token
DADI Insight Token (DIT) $ 15.29 0.00%
pikaboss
Pikaboss (PIKA) $ 0.000000 0.50%
aria-ai
Aria.AI (ARIA) $ 0.035870 10.00%
lukso-token-2
LUKSO (LYX) $ 0.214030 2.90%
wazirx
WazirX (WRX) $ 0.014217 2.90%
edu3games
Edu3Games (EGN) $ 0.007590 0.00%
taiwan-semiconductor-manufacturing-ondo-tokenized-stock
Taiwan Semiconductor Manufacturing (Ondo Tokenized Stock) (TSMON) $ 416.94 2.50%
wolfspeed-ondo-tokenized
Wolfspeed (Ondo Tokenized) (WOLFON) $ 31.03 7.90%
marvell-technology-bstocks-tokenized-stock
Marvell Technology (bStocks Tokenized Stock) (MRVLB) $ 215.18 5.80%
delysium
Delysium (AGI) $ 0.002481 4.10%
anthropic-prestocks-2
Anthropic PreStocks (ANTHROPIC) $ 872.90 6.50%
spacex-backpack-securities
SpaceX (Backpack Securities) (SPCX) $ 142.35 0.90%
defi-janus-henderson-anemoy-aaa-clo-fund
DeFi Janus Henderson Anemoy AAA CLO Fund (DEJAAA) $ 1.04 0.00%
crepe-2
CREPE (CREPE) $ 0.000009 9.00%
splendor
Splendor (SPLD) $ 0.170672 9.10%
australian-safe-shepherd
Australian Safe Shepherd (ASS) $ 0.000000 8.77%
pepefork
PepeFork (PORK) $ 0.000000 11.00%
turtle-4
Turtle (TURTLE) $ 0.041227 1.30%
flamewire
FlameWire (SN97) $ 4.57 0.20%
pulsechain-bridged-weth-pulsechain
Pulsechain Bridged WETH (Pulsechain) (WETH) $ 2,259.44 4.15%
dippy
Dippy (SN11) $ 1.38 0.10%
crob-mob
Crob Mob (CROB) $ 0.006379 3.10%
liquidity
Liquidity (SN77) $ 1.22 0.20%
wink-2
WINK (WINK) $ 0.029850 0.00%
win-3
Win (WIN) $ 0.000157 5.00%
rxr-coin
RXR Coin (RXRC) $ 0.157032 0.00%
broccoli-3
Broccoli (BROCCOLI) $ 0.006290 1.20%
reactive-network
Reactive Network (REACT) $ 0.005245 4.80%
micron-technology-backpack-securities
Micron Technology (Backpack Securities) (MU) $ 952.36 4.00%
sonic-svm
Sonic SVM (SONIC) $ 0.017427 0.60%
equitedge
EquitEdge (EEG) $ 0.019363 0.00%
tethereum-3
Tethereum (T99) $ 0.311364 0.00%
maza
Maza (MZC) $ 0.003045 0.00%
pofu
Pofu (POFU) $ 0.000063 0.90%
lisk-bridged-wsteth-lisk
Lisk Bridged wstETH (Lisk) (WSTETH) $ 2,777.63 3.24%
novatti-australian-digital-dollar
Australian Digital Dollar (AUDD) $ 0.710506 0.50%
gyen
GYEN (GYEN) $ 0.006172 5.30%
puffer-finance
Puffer (PUFFER) $ 0.011775 0.20%
coinmarketcap-20-index-dtf
CoinMarketCap 20 Index DTF (CMC20) $ 130.67 0.40%
data-universe
Data Universe (SN13) $ 1.18 0.20%
litentry
Litentry (LIT) $ 0.137621 10.20%
omisego
OMG Network (OMG) $ 0.044324 0.50%
kofi-aptos
Kofi Aptos (KAPT) $ 1.03 14.63%
strkbtc
strkBTC (STRKBTC) $ 64,290.00 0.20%
wrapped-monad
Wrapped MON (WMON) $ 0.017878 2.13%
origin-dollar
Origin Dollar (OUSD) $ 0.999536 0.10%
cod3x-usd
Cod3x USD (CDXUSD) $ 1.01 0.20%
froggie
Froggie (FROGGIE) $ 0.006162 0.30%
proshares-ultrapro-qqq-ondo-tokenized
ProShares UltraPro QQQ (Ondo Tokenized) (TQQQON) $ 72.55 2.90%
coinzoom-token
CoinZoom (ZOOM) $ 0.010388 8.40%
vnx-gold
VNX Gold (VNXAU) $ 139.49 1.80%
avalanche-bridged-dai-avalanche
Avalanche Bridged DAI (Avalanche) (DAI) $ 1.00 0.09%
patrol-tao-com
grail (SN81) $ 1.41 0.70%
o-intelligence-coin
O Intelligence Coin (OI) $ 6,143,176.00 1.90%
kyrgyz-som-stablecoin
Kyrgyz Som Stablecoin (KGST) $ 0.011409 0.10%
upland
Upland (SPARKLET) $ 0.020297 1.50%
doge-lumens
DogeLumens (DXLM) $ 0.000053 0.00%
gamestop-bstocks-tokenized-stock
GameStop (bStocks Tokenized Stock) (GMEB) $ 17.98 2.10%
sx-network-2
SX Network (SX) $ 0.013459 0.00%
spdr-gold-shares-ondo-tokenized
SPDR Gold Shares (Ondo Tokenized) (GLDON) $ 399.47 1.00%
kpk-usdc-prime
kpk USDC Prime (KPK USDC P) $ 1.01 0.02%
nebius-group-ondo-tokenized
Nebius Group (Ondo Tokenized) (NBISON) $ 247.99 7.30%
osmosis-allbtc
Osmosis allBTC (BTC) $ 65,107.00 7.97%
mcdull
McDull (Meme) (MCDULL) $ 0.000001 1.40%
kekius-maximus
Kekius Maximus (KEKIUS) $ 0.006054 1.50%
inverse-finance
Inverse Finance (INV) $ 8.52 1.60%
usdx-money-usdx
Stables Labs USDX (USDX) $ 0.008918 0.40%
thala-apt
Thala APT (THAPT) $ 1.03 13.82%
hashflow
Hashflow (HFT) $ 0.006555 2.10%
most-wanted-2
Most Wanted (MOST) $ 0.006024 14.50%
manifesting
Manifesting (MANIFEST) $ 0.006694 14.40%
oobit-2
Oobit (OOB) $ 0.010421 1.20%
venus-doge
Venus DOGE (VDOGE) $ 0.001848 11.17%
sharex-2
ShareX (SHARE) $ 0.334650 0.40%
trevee-staked-plasma-usd
Trevee Staked Plasma USD (SPLUSD) $ 1.00 0.00%
mansory-token
Mansory Token (MNSRY) $ 0.006672 0.30%
vitadao
VitaDAO (VITA) $ 0.228295 0.30%
apple-bstocks-tokenized-stock
Apple (bStocks Tokenized Stock) (AAPLB) $ 309.80 1.50%
pact-2
PACT (PACT) $ 0.000180 4.70%
mori-coin
MORI COIN (MORI) $ 0.005981 2.50%
hyperion-2
Hyperion (RION) $ 0.162042 0.70%
kan
KAN (KAN) $ 0.000603 1.40%
spiko-digital-assets-cash-carry-fund
Spiko Digital Assets Cash & Carry Fund (SPKCC) $ 1.02 0.00%
stake-dao
Stake DAO (SDT) $ 0.086972 1.10%
brickken
Brickken (BKN) $ 0.060420 0.30%
iron-fish
Iron Fish (IRON) $ 0.078662 0.50%
navi
NAVI Protocol (NAVX) $ 0.007240 4.10%
ahatoken
AhaToken (AHT) $ 0.000811 2.10%
avalon-2
Avalon (AVL) $ 0.015195 0.90%
punkstrategy
PunkStrategy (PNKSTR) $ 0.006499 1.70%
send-token-2
Send (SEND) $ 0.016544 0.10%
dojo-3
Dojo (SN52) $ 1.26 0.10%
rich-kids-of-tao
Rich Kids of TAO (SN110) $ 2.21 5.80%
alpha-fi
Alpha Fi (ALPHA) $ 0.589497 0.50%
husd
HUSD (HUSD) $ 0.037234 0.70%
toescoin
TOESCOIN (TOES) $ 0.005860 6.30%
bridged-wrapped-ether-sonic
Bridged Wrapped Ether (Sonic) (WETH) $ 2,258.14 3.75%
dominion-silver
Dominion Silver (SILV) $ 63.05 1.70%
imo
IMO (IMO) $ 0.425817 0.10%
xai-prestocks-2
xAI PreStocks (XAI) $ 75.02 5.60%
teddy-bear
TEDDY BEAR (BEAR) $ 0.000000 8.40%
nexacoin
Nexa (NEXA) $ 0.000001 0.90%
gamecow
GameCow (GCOW) $ 582.05 3.60%
applied-optoelectronics-bstocks-tokenized-stock
Applied Optoelectronics (bStocks Tokenized Stock) (AAOIB) $ 132.65 12.50%
wrapped-hbar
Wrapped HBAR (SaucerSwap) (WHBAR) $ 0.090483 2.99%
clash-of-lilliput
Clash of Lilliput (COL) $ 0.070701 0.20%
elastos
Elastos (ELA) $ 0.250934 2.30%
aos-2
τaos (SN79) $ 1.29 0.10%
games-for-a-living
Games for a Living (GFAL) $ 0.000814 5.70%
bitrise-token
Bitgert (BRISE) $ 0.000000 0.40%
avici
Avici (AVICI) $ 0.446178 3.00%
nimiq-2
Nimiq (NIM) $ 0.000415 2.00%
xhype-2
xHYPE (XHYPE) $ 1.04 0.00%
bilira
BiLira (TRYB) $ 0.020266 0.10%
axcnh
AxCNH (AXCNH) $ 0.146650 0.60%
giveback
GIVEBACK (GBACK) $ 0.005740 5.90%
hosky
Hosky (HOSKY) $ 0.000000 0.90%
ivault
ivault (IVT) $ 0.012183 3.20%
dolz-io
DOLZ.io (DOLZ) $ 0.008204 0.80%
matic-aave-usdc
Matic Aave Interest Bearing USDC (MAUSDC) $ 1.14 0.11%
marblex
MARBLEX (MBX) $ 0.020413 0.40%
ai-factory
AI Factory (SN80) $ 3.07 1.10%
milady-cult-coin
Milady Cult Coin (CULT) $ 0.000121 0.30%
pika-protocol
Pika Protocol (PIKA) $ 0.312339 0.80%
helium-mobile
Helium Mobile (MOBILE) $ 0.000063 1.60%
oracle-ondo-tokenized-stock
Oracle (Ondo Tokenized Stock) (ORCLON) $ 142.46 1.50%
symmio
SYMMIO (SYMM) $ 0.006944 1.80%
thorwallet
THORWallet DEX (TGT) $ 0.007548 0.00%
luca
LUCA (LUCA) $ 0.374392 2.50%
mpendle
mPendle (MPENDLE) $ 0.520132 25.35%
ishares-russell-2000-value-etf-ondo-tokenized-etf
iShares Russell 2000 Value ETF (Ondo Tokenized ETF) (IWNON) $ 227.48 1.20%
linea-bridged-wbtc-linea
Linea Bridged WBTC (Linea) (WBTC) $ 76,319.00 3.05%
bugscoin
BugsCoin (BGSC) $ 0.000604 8.10%
scor
Scor (SCOR) $ 0.012470 0.00%
the-arena
The Arena (ARENA) $ 0.000871 1.40%
toby-toadgod
Toby ToadGod (TOBY) $ 0.000000 30.40%
quantoz-usdq
Quantoz USDQ (USDQ) $ 0.997521 0.00%
everscale
Everscale (EVER) $ 0.002802 1.30%
token-dforce-usd
dForce USD (USX) $ 0.422475 0.26%
marlin
Marlin (POND) $ 0.000675 1.40%
hera-finance
Hera Finance (HERA) $ 1.20 1.40%
alltoscan
Alltoscan (ATS) $ 0.072624 0.40%
autonolas
Autonolas (OLAS) $ 0.018900 0.90%
radio-caca
Radio Caca (RACA) $ 0.000013 1.90%
sosana
SOSANA (SOSANA) $ 0.062013 2.80%
saga-2
Saga (SAGA) $ 0.013210 0.10%
ditgold
DITGOLD (DITAU) $ 0.006186 1.30%
partisia-blockchain
Partisia Blockchain (MPC) $ 0.010852 1.20%
marcopolo
MAP Protocol (MAPO) $ 0.000884 0.40%
liquid-euro
Liquid Euro (WEEUR) $ 1.18 0.20%
arcane-2
Arcane (ARCANE) $ 0.006516 1.30%
wrapped-elrond
Wrapped EGLD (WEGLD) $ 4.94 3.77%
eth-strategy
ETH Strategy (STRAT) $ 0.125629 0.50%
goldzip-gold
GoldZip Gold (XGZ) $ 139.94 1.00%
lantern-staked-sol
Lantern Staked SOL (LANTERNSOL) $ 118.49 4.42%
myshell
MyShell (SHELL) $ 0.020181 2.30%
anyspend
Anyspend (ANY) $ 0.024694 0.80%
steakhouse-usdc
Steakhouse USDC V2 (STEAKUSDC) $ 1.01 0.01%
wrapped-mantle
Wrapped Mantle (WMNT) $ 0.719693 0.28%
ready
Ready Cards (READY) $ 0.005425 14.10%
mame-inu
Mame Inu (MAME) $ 0.005407 5.00%
squidgrow-2
SquidGrow (SQGROW) $ 0.005382 10.00%
baby-shiba-inu
Baby Shiba Inu (BABYSHIBAI) $ 0.000000 0.20%
eli-lilly-ondo-tokenized-stock
Eli Lilly (Ondo Tokenized Stock) (LLYON) $ 1,228.03 3.50%
tars-protocol
TARS AI (TAI) $ 0.005996 7.90%
doublezero-staked-sol
DoubleZero Staked SOL (DZSOL) $ 101.42 5.53%
milady-meme-coin
Milady Meme Coin (LADYS) $ 0.000000 4.10%
p2p-protocol
P2P Protocol (P2P) $ 0.447886 0.40%
dinero-staked-eth
Dinero Staked ETH (PXETH) $ 2,252.22 3.69%
particle-network
Particle Network (PARTI) $ 0.022947 2.60%
reppo
REPPO (REPPO) $ 0.012966 3.70%
the-toad-pepe
The Toad Pepe (TOAD) $ 0.005532 28.70%
grove-2
Grove (GROVE) $ 0.007996 0.10%
mamo
Mamo (MAMO) $ 0.008825 0.80%
evernode
Evernode (EVR) $ 0.073246 0.80%
cofinex-2
Cofinex (CNX) $ 0.099918 0.00%
gimo-staked-0g
Gimo Staked 0G (ST0G) $ 0.731171 6.80%
neon
Neon (NEON) $ 0.012253 1.60%
andy-the-wisguy
ANDY ETH (ANDY) $ 0.000005 3.10%
kora
Leadpoet (SN71) $ 1.12 9.00%
draggable-aktionariat-ag
Draggable Aktionariat AG (DAKS) $ 6.19 9.40%
lumi-credits
LUMI Credits (LUMI) $ 0.040311 1.30%
mil
MIL (MIL) $ 0.004326 2.00%
paragonsdao
ParagonsDAO (PDT) $ 0.062074 7.00%
quickswap
Quickswap (QUICK) $ 0.007877 0.60%
the-index
The Index (INDEX) $ 0.005331 4.60%
bytomdao
BytomDAO (BTM) $ 0.010435 0.30%
golden-dragon
Golden Dragon (GD) $ 0.003806 0.00%
treehouse
Treehouse (TREE) $ 0.033335 1.80%
xborg
XBorg (XBG) $ 0.010112 5.30%
district0x
district0x (DNT) $ 0.005189 1.80%
gertrudedatapig
GertrudeDataPig (GDP) $ 0.008059 0.00%
zer0zer0
00 Token (00) $ 0.013837 14.80%
nuva-nvprime
NUVA nvPRIME (NVPRIME) $ 1.05 0.10%
augur-2
AUGUR (REPV2_YES_) $ 0.785591 0.30%
bitmine-immersion-technologies-ondo-tokenized-stocks
BitMine Immersion Technologies (Ondo Tokenized Stock) (BMNRON) $ 18.36 1.10%
alchemix
Alchemix (ALCX) $ 2.03 5.50%
synth-2
Synth (SN50) $ 1.01 0.30%
jixiangma
吉祥马 (吉祥马) $ 0.011179 29.70%