🦑
Liquidswap Docs
GithubDappPontem Network
Liquidswap V1 Docs
Liquidswap V1 Docs
  • Introduction v1
    • Security Audits
    • Bounty Program
    • Developer Links
  • Protocol Overview
  • Smart Contracts
    • Pool
    • LB Tokens
    • Oracles
    • Fees
    • Router & Entry
    • Other
  • Integration
    • Test Coins
    • Let's Swap
    • Add Liquidity
    • Burn Liquidity
    • Flashloans
  • Liquidswap DApp
    • Bridge
    • Testnet
Powered by GitBook
On this page
  1. Integration

Test Coins

PreviousIntegrationNextLet's Swap

Last updated 1 year ago

This part works only for testnet, as on mainnet there is production ready coins should be used!

During the integration, you probably would need test coins, so we prepared a repository containing several coins (USDT, BTC, USDC, DAI, ETH) just for tests.

The existing pools on Liquidswap V1 use our test coins, so it's a good idea to follow standard test coins during integration.

Repository -

The following test coins are already deployed on the testnet and can be used in your project:

// Test BTC
0x43417434fd869edee76cca2a4d2301e528a1551b1d719b75c350c3c97d15b8b9::coins::BTC

// Test USDT
0x43417434fd869edee76cca2a4d2301e528a1551b1d719b75c350c3c97d15b8b9::coins::USDT

Add as dependency:

[dependencies.TestCoins]
git = 'https://github.com/pontem-network/test-coins.git'
rev = 'latest version'

Use in your code:

use test_coins::coins::{USDT, BTC};
use test_coins_extended::extended_coins::{USDC, ETH, DAI};
...

Faucet

Repository -

Tests coins are available on Aptos testnet, to get free coins just do calls to faucet or visit .

⚠️
test-coins
faucet
Liquidswap V1 DApp