Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
reversed PoolPair a/b symbol to DFI last (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh authored Sep 7, 2021
1 parent 8d8d574 commit f565a1e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/module.playground/setup/setup.dex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export class SetupDex extends PlaygroundSetup<PoolPairSetup> {
// MAX_SYMBOL_LENGTH = 8
return [
{
symbol: 'DFI-BTC',
symbol: 'BTC-DFI',
create: {
tokenA: 'DFI',
tokenB: 'BTC',
tokenA: 'BTC',
tokenB: 'DFI',
commission: 0,
status: true,
ownerAddress: PlaygroundSetup.address
Expand All @@ -32,10 +32,10 @@ export class SetupDex extends PlaygroundSetup<PoolPairSetup> {
}
},
{
symbol: 'DFI-ETH',
symbol: 'ETH-DFI',
create: {
tokenA: 'DFI',
tokenB: 'ETH',
tokenA: 'ETH',
tokenB: 'DFI',
commission: 0,
status: true,
ownerAddress: PlaygroundSetup.address
Expand All @@ -48,10 +48,10 @@ export class SetupDex extends PlaygroundSetup<PoolPairSetup> {
}
},
{
symbol: 'DFI-USDT',
symbol: 'USDT-DFI',
create: {
tokenA: 'DFI',
tokenB: 'USDT',
tokenA: 'USDT',
tokenB: 'DFI',
commission: 0,
status: true,
ownerAddress: PlaygroundSetup.address
Expand All @@ -64,10 +64,10 @@ export class SetupDex extends PlaygroundSetup<PoolPairSetup> {
}
},
{
symbol: 'DFI-LTC',
symbol: 'LTC-DFI',
create: {
tokenA: 'DFI',
tokenB: 'LTC',
tokenA: 'LTC',
tokenB: 'DFI',
commission: 0,
status: true,
ownerAddress: PlaygroundSetup.address
Expand All @@ -80,10 +80,10 @@ export class SetupDex extends PlaygroundSetup<PoolPairSetup> {
}
},
{
symbol: 'DFI-USDC',
symbol: 'USDC-DFI',
create: {
tokenA: 'DFI',
tokenB: 'USDC',
tokenA: 'USDC',
tokenB: 'DFI',
commission: 0,
status: true,
ownerAddress: PlaygroundSetup.address
Expand Down

0 comments on commit f565a1e

Please sign in to comment.