diff --git a/asset.go b/asset.go index f799c48..f425013 100644 --- a/asset.go +++ b/asset.go @@ -92,6 +92,15 @@ type ( // CreationTime of Asset CreationTime string `json:"creation_time"` + + // MintCnt count of mint transactions + MintCnt int `json:"mint_cnt"` + + // BurnCnt count of burn transactions + BurnCnt int `json:"burn_cnt"` + + // MintingTxHash mint tx + MintingTxHash TxHash `json:"minting_tx_hash"` } // AssetTxs Txs info for the given asset (latest first). diff --git a/pool.go b/pool.go index 7c6ce42..e94ebf0 100644 --- a/pool.go +++ b/pool.go @@ -103,6 +103,9 @@ type ( // LiveStake Pool live stake LiveStake Lovelace `json:"live_stake"` + // LivePledge Pool live pledge + LivePledge Lovelace `json:"live_pledge"` + // Margin (decimal format) Margin float32 `json:"margin"`