-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Koios Alignment with 1.1.1 Bump Version to 1.18.2
- Loading branch information
Dudi Edri
committed
May 5, 2024
1 parent
8cbd7d4
commit 0efa579
Showing
22 changed files
with
393 additions
and
17 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
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
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
67 changes: 67 additions & 0 deletions
67
src/main/java/rest/koios/client/backend/api/asset/model/PolicyAssetMint.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,67 @@ | ||
package rest.koios.client.backend.api.asset.model; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import com.fasterxml.jackson.databind.PropertyNamingStrategies; | ||
import com.fasterxml.jackson.databind.annotation.JsonNaming; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import lombok.ToString; | ||
|
||
/** | ||
* Policy Asset Info | ||
*/ | ||
@Getter | ||
@Setter | ||
@ToString | ||
@NoArgsConstructor | ||
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class) | ||
public class PolicyAssetMint { | ||
|
||
/** | ||
* Asset Name (hex) | ||
*/ | ||
private String assetName; | ||
|
||
/** | ||
* Asset Name (ASCII) | ||
*/ | ||
private String assetNameAscii; | ||
|
||
/** | ||
* The CIP14 fingerprint of the asset | ||
*/ | ||
private String fingerprint; | ||
|
||
/** | ||
* Hash of the latest mint transaction | ||
*/ | ||
private String mintingTxHash; | ||
|
||
/** | ||
* Total Supply | ||
*/ | ||
private String totalSupply; | ||
|
||
/** | ||
* Count of total mint transactions | ||
*/ | ||
private Integer mintCnt; | ||
|
||
/** | ||
* Count of total burn transactions | ||
*/ | ||
private Integer burnCnt; | ||
|
||
/** | ||
* Creation Time | ||
*/ | ||
private Integer creationTime; | ||
|
||
/** | ||
* A JSON array containing details about metadata within transaction | ||
*/ | ||
private JsonNode mintingTxMetadata; | ||
|
||
private Integer decimals; | ||
} |
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
Oops, something went wrong.