Tokens

Use the following url to import Monerium tokens for Ethereum and Polygon into an exchange.

https://monerium.app/tokens.json
uniswap token import
Example: Uniswap token import.


Ethereum

Monerium e-money tokens are live on Ethereum mainnet and testnets and are ERC20 and ERC677 compliant.


  contract Euro {

    // Transfers tokens [ERC20].
    transfer(to, amount)

    // Transfers tokens from a specific address [ERC20].
    transferFrom(from, to, amount)

    // Approves a spender [ERC20].
    approve(spender, amount)

    // Transfers tokens and subsequently calls a method
    // on the recipient [ERC677].
    transferAndCall(to, amount, data)

    // Returns the total supply.
    totalSupply()

    // Returns the number tokens associated with an address.
    balanceOf(who)

    // Returns the allowance for a spender.
    allowance(owner, spender)
  }

ERC20 / Approve and transfer from

The user gives your smart contract the right to take the money by itself from their address using the approve method. Once approved, your contract can call the transferFrom method in the Monerium contract and transfer money from the address.

ERC677 / Transfer and call

transferAndCall transfers money and calls the receiving contract's onTokenTransfer method with additional data and triggers an event Transfer.

The source code and more info about the token design can be found at our githup repo.

EURe / Euro on Ethereum

GBPe / Sterling on Ethereum

USDe / US Dollar on Ethereum

ISKe / Icelandic krona on Ethereum

Ethereum test money and development

Our sandbox is connected to the sepolia test network .

Information on how to setup a local test environment can be found in our github repo.

Polygon

EURe / Euro on Polygon

GBPe / Sterling on Polygon

USDe / US Dollar on Polygon

ISKe / Icelandic krona on Polygon

Polygon test money and development

Our sandbox is connected to the Amoy test network. Read about how to migrate from Mumbai to Amoy here.

Information on how to setup a local test environment can be found in our github repo.

Gnosis Chain

EURe / Euro on Gnosis

GBPe / Sterling on Gnosis

USDe / US Dollar on Gnosis

ISKe / Icelandic krona on Gnosis

Gnosis test money and development

Our sandbox is connected to the Chiado test network .

Information on how to setup a local test environment can be found in our github repo.

Algorand

Algorand comprehensive smart contract capabilities enable the creation of DeFi solutions and dApps that can scale to billions of users, tens of millions of daily transactions, with negligible transaction fees. Developers can find all the resources they need to turn their ideas into full-scale applications on the Algorand Developer Portal.

EURe / Euro on Algorand

Algorand test money and development

We have written a guide on how to get test euros on the Algorand testnet using the AlgoExplorer testnet dispenser and MyAlgo wallet.