Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Crypto] Finding something to separate blockchains #81

Open
XMRZombie opened this issue Oct 29, 2024 · 1 comment
Open

[Crypto] Finding something to separate blockchains #81

XMRZombie opened this issue Oct 29, 2024 · 1 comment
Labels
crypto: coin cryptocurrencies

Comments

@XMRZombie
Copy link

This issue might be important for integrating things like Stablecoins and Tokens.
Actually it's possible get the same token on different blockchains, and currently none of trading accounts or trade offers can do for example:

  • $XXA (on ETH)
  • $XXA (on AVAX)
@XMRZombie XMRZombie added the crypto: coin cryptocurrencies label Oct 29, 2024
@XMRZombie
Copy link
Author

By looking in the code, we need something to inherit from multiple class (or something like that) to get multiple token formats

package haveno.asset.tokens;

import haveno.asset.Erc20Token;

public class USDCoin extends Erc20Token {

    public USDCoin() {
        super("USD Coin", "USDC");
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
crypto: coin cryptocurrencies
Projects
None yet
Development

No branches or pull requests

2 participants
@XMRZombie and others