diff --git a/crates/iota-rust-sdk/src/types/checkpoint.rs b/crates/iota-rust-sdk/src/types/checkpoint.rs index fc64a23..d846a65 100644 --- a/crates/iota-rust-sdk/src/types/checkpoint.rs +++ b/crates/iota-rust-sdk/src/types/checkpoint.rs @@ -48,6 +48,10 @@ pub struct EndOfEpochData { /// Commitments to epoch specific state (e.g. live object set) pub epoch_commitments: Vec, + + /// The number of tokens that were minted (if positive) or burnt (if + /// negative) in this epoch. + pub epoch_supply_change: i64, } #[derive(Clone, Debug, PartialEq, Eq)]