-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from cheng521521/main
feat: get token apy
- Loading branch information
Showing
13 changed files
with
208 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/main/java/com/dl/officialsite/aave/TokenAPYInfoRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.dl.officialsite.aave; | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; | ||
|
||
/** | ||
* @ClassName TokenAPYInfoRepository | ||
* @Author jackchen | ||
* @Date 2024/3/9 16:39 | ||
* @Description TokenAPYInfoRepository | ||
**/ | ||
public interface TokenAPYInfoRepository extends JpaRepository<TokenAPYInfo, Long>, | ||
JpaSpecificationExecutor<TokenAPYInfo> { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.dl.officialsite.config; | ||
|
||
import java.util.List; | ||
import lombok.Data; | ||
|
||
/** | ||
* @ClassName ChainInfo | ||
* @Author jackchen | ||
* @Date 2024/3/10 11:35 | ||
* @Description ChainInfo | ||
**/ | ||
@Data | ||
public class ChainInfo { | ||
|
||
private String name; | ||
|
||
private String id; | ||
|
||
private String lendingPoolAddressProviderV3Address; | ||
|
||
private List<TokenConfig> tokens; | ||
} |
Oops, something went wrong.