Skip to content

Commit

Permalink
Merge pull request #204 from Define101/master
Browse files Browse the repository at this point in the history
add support for TRY
  • Loading branch information
Define101 authored Dec 21, 2023
2 parents fe4db40 + e1779ef commit a00d900
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/adapters/peggedAssets/peggedAsset.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export type PeggedAssetType =
| "peggedUAH"
| "peggedARS"
| "peggedGBP"
| "peggedCAD";
| "peggedCAD"
| "peggedTRY"

type StringNumber = string;
type PeggedBalances = {
Expand Down
5 changes: 3 additions & 2 deletions src/peggedData/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ type PegType =
| "peggedCNY" //china
| "peggedUAH" //ukraine
| "peggedARS" //ARGENTINE
| "peggedGBP"; //GB
("peggedCAD"); //canadian dollar
| "peggedGBP" //GB
| "peggedCAD" //canadian dollar
| "peggedTRY" //Turkish lira

type PegMechanism = "algorithmic" | "fiat-backed" | "crypto-backed";

Expand Down

0 comments on commit a00d900

Please sign in to comment.