@sentio/sdk 4.5.0-rc.3 → 4.5.1-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3506,6 +3506,17 @@ export declare namespace decryption {
3506
3506
  const TYPE_QNAME = "0x1::decryption::PerBlockDecryptionKey";
3507
3507
  function type(): TypeDescriptor<PerBlockDecryptionKey>;
3508
3508
  }
3509
+ interface PerBlockDecryptionKeyV2 {
3510
+ epoch: bigint;
3511
+ block_round: bigint;
3512
+ decryption_key: option.Option<string>;
3513
+ decryption_round: option.Option<bigint>;
3514
+ next_decryption_round: bigint;
3515
+ }
3516
+ namespace PerBlockDecryptionKeyV2 {
3517
+ const TYPE_QNAME = "0x1::decryption::PerBlockDecryptionKeyV2";
3518
+ function type(): TypeDescriptor<PerBlockDecryptionKeyV2>;
3519
+ }
3509
3520
  interface PerEpochEncryptionKey {
3510
3521
  epoch: bigint;
3511
3522
  encryption_key: option.Option<string>;