@sentio/sdk 2.41.1-rc.8 → 2.41.2-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.
@@ -215,7 +215,9 @@ export declare class coin extends AptosBaseProcessor {
215
215
  onEntryTransfer(func: (call: coin.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
216
216
  onEntryUnfreezeCoinStore(func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
217
217
  onEntryUpgradeSupply(func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
218
+ onEventCoinDeposit(func: (event: coin.CoinDepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
218
219
  onEventCoinEventHandleDeletion(func: (event: coin.CoinEventHandleDeletionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
220
+ onEventCoinWithdraw(func: (event: coin.CoinWithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
219
221
  onEventDeposit(func: (event: coin.DepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
220
222
  onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
221
223
  onEventPairCreation(func: (event: coin.PairCreationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
@@ -258,6 +260,19 @@ export declare namespace coin {
258
260
  const TYPE_QNAME = "0x1::coin::CoinConversionMap";
259
261
  function type(): TypeDescriptor<CoinConversionMap>;
260
262
  }
263
+ interface CoinDeposit {
264
+ coin_type: string;
265
+ account: MoveAddressType;
266
+ amount: bigint;
267
+ }
268
+ namespace CoinDeposit {
269
+ const TYPE_QNAME = "0x1::coin::CoinDeposit";
270
+ function type(): TypeDescriptor<CoinDeposit>;
271
+ }
272
+ interface CoinDepositInstance extends TypedEventInstance<CoinDeposit> {
273
+ data_decoded: CoinDeposit;
274
+ type_arguments: [];
275
+ }
261
276
  interface CoinEventHandleDeletion {
262
277
  event_handle_creation_address: MoveAddressType;
263
278
  deleted_deposit_event_handle_creation_number: bigint;
@@ -291,6 +306,19 @@ export declare namespace coin {
291
306
  const TYPE_QNAME = "0x1::coin::CoinStore";
292
307
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CoinStore<T0>>;
293
308
  }
309
+ interface CoinWithdraw {
310
+ coin_type: string;
311
+ account: MoveAddressType;
312
+ amount: bigint;
313
+ }
314
+ namespace CoinWithdraw {
315
+ const TYPE_QNAME = "0x1::coin::CoinWithdraw";
316
+ function type(): TypeDescriptor<CoinWithdraw>;
317
+ }
318
+ interface CoinWithdrawInstance extends TypedEventInstance<CoinWithdraw> {
319
+ data_decoded: CoinWithdraw;
320
+ type_arguments: [];
321
+ }
294
322
  interface Deposit<T0> {
295
323
  account: MoveAddressType;
296
324
  amount: bigint;
@@ -3580,6 +3608,7 @@ export declare class fungible_asset extends AptosBaseProcessor {
3580
3608
  onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3581
3609
  onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3582
3610
  onEventMintRef(func: (event: fungible_asset.MintRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3611
+ onEventMutateMetadataRef(func: (event: fungible_asset.MutateMetadataRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3583
3612
  onEventTransferRef(func: (event: fungible_asset.TransferRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3584
3613
  onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3585
3614
  onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
@@ -3633,6 +3662,13 @@ export declare namespace fungible_asset {
3633
3662
  data_decoded: DepositEvent;
3634
3663
  type_arguments: [];
3635
3664
  }
3665
+ interface DeriveSupply {
3666
+ dispatch_function: option.Option<function_info.FunctionInfo>;
3667
+ }
3668
+ namespace DeriveSupply {
3669
+ const TYPE_QNAME = "0x1::fungible_asset::DeriveSupply";
3670
+ function type(): TypeDescriptor<DeriveSupply>;
3671
+ }
3636
3672
  interface DispatchFunctionStore {
3637
3673
  withdraw_function: option.Option<function_info.FunctionInfo>;
3638
3674
  deposit_function: option.Option<function_info.FunctionInfo>;
@@ -3713,6 +3749,17 @@ export declare namespace fungible_asset {
3713
3749
  data_decoded: MintRef;
3714
3750
  type_arguments: [];
3715
3751
  }
3752
+ interface MutateMetadataRef {
3753
+ metadata: object_.Object<fungible_asset.Metadata>;
3754
+ }
3755
+ namespace MutateMetadataRef {
3756
+ const TYPE_QNAME = "0x1::fungible_asset::MutateMetadataRef";
3757
+ function type(): TypeDescriptor<MutateMetadataRef>;
3758
+ }
3759
+ interface MutateMetadataRefInstance extends TypedEventInstance<MutateMetadataRef> {
3760
+ data_decoded: MutateMetadataRef;
3761
+ type_arguments: [];
3762
+ }
3716
3763
  interface Supply {
3717
3764
  current: bigint;
3718
3765
  maximum: option.Option<bigint>;