Skip to content

Commit

Permalink
Merge branch 'dev' into stage
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidHaji-zada committed Nov 20, 2023
2 parents 3fd334c + ccc47e8 commit af40789
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions crypto/common/AirDAODictTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export namespace AirDAODictTypes {
USDC = 'USDC',
FirepotLp = 'FLP',
Tether = 'USDT',
GanymedePoolToken = 'GPT',
HeraPoolToken = 'HPT',
PlutusPoolToken = 'PPT',
ETH_ERC_20 = 'ETH_ERC_20',
ETH = 'ETH',
BNB_SMART = 'BNB_SMART',
Expand Down
14 changes: 13 additions & 1 deletion src/models/Token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,22 @@ export class Token {
switch (dto.address) {
case '0x322269e52800e5094c008f3b01A3FD97BB3C8f5D': {
// hera
name = 'Hera pool token';
name = 'Hera token';
symbol = AirDAODictTypes.Code.HeraPoolToken;
break;
}
case '0xE984ACe36F2B6f10Fec8dd6fc1bB19c7b1D2F2c6': {
// ganymede
name = 'Ganymede pool token';
symbol = AirDAODictTypes.Code.GanymedePoolToken;
break;
}
case '0xEB8386a50Edd613cc43f061E9C5A915b0443C5d4': {
// hera
name = 'Plutus pool token';
symbol = AirDAODictTypes.Code.PlutusPoolToken;
break;
}
default:
break;
}
Expand Down

0 comments on commit af40789

Please sign in to comment.