Skip to content

Commit

Permalink
Started implementing clients
Browse files Browse the repository at this point in the history
  • Loading branch information
jansoren committed Sep 17, 2023
1 parent d1cdc52 commit 74bbcb7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/java/no/jansoren/defillama/model/protocols/Protocol.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ public record Protocol(
String symbol,

@JsonProperty("change_7d")
Object change7d,
BigDecimal change7d,

@JsonProperty("gecko_id")
Object geckoId,
String geckoId,

@JsonProperty("chains")
List<String> chains,
Expand All @@ -23,13 +23,13 @@ public record Protocol(
List<Object> forkedFrom,

@JsonProperty("audit_note")
Object auditNote,
String auditNote,

@JsonProperty("description")
String description,

@JsonProperty("cmcId")
Object cmcId,
String cmcId,

@JsonProperty("twitter")
String twitter,
Expand All @@ -53,13 +53,13 @@ public record Protocol(
String chain,

@JsonProperty("address")
Object address,
String address,

@JsonProperty("module")
String module,

@JsonProperty("tvl")
Object tvl,
BigDecimal tvl,

@JsonProperty("listedAt")
int listedAt,
Expand All @@ -71,7 +71,7 @@ public record Protocol(
Object tokenBreakdowns,

@JsonProperty("mcap")
Object mcap,
BigDecimal mcap,

@JsonProperty("name")
String name,
Expand All @@ -80,19 +80,19 @@ public record Protocol(
Map<String, BigDecimal> chainTvls,

@JsonProperty("change_1h")
Object change1h,
BigDecimal change1h,

@JsonProperty("category")
String category,

@JsonProperty("change_1d")
Object change1d,
BigDecimal change1d,

@JsonProperty("pool2")
Object pool2,
BigDecimal pool2,

@JsonProperty("staking")
Object staking,
BigDecimal staking,

@JsonProperty("github")
List<String> github,
Expand Down

0 comments on commit 74bbcb7

Please sign in to comment.