@sentio/sdk 2.62.1-rc.1 → 2.62.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.
@@ -1398,6 +1398,55 @@ export declare namespace deny_list {
1398
1398
  function v2Remove(client: SuiClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
1399
1399
  }
1400
1400
  }
1401
+ export declare class derived_object extends SuiBaseProcessor {
1402
+ constructor(options: SuiBindOptions);
1403
+ static DEFAULT_OPTIONS: SuiBindOptions;
1404
+ static bind(options?: Partial<SuiBindOptions>): derived_object;
1405
+ onEventClaimed(func: (event: derived_object.ClaimedInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, derived_object.ClaimedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): derived_object;
1406
+ onEventDerivedObjectKey(func: (event: derived_object.DerivedObjectKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, derived_object.DerivedObjectKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): derived_object;
1407
+ }
1408
+ export declare namespace derived_object {
1409
+ interface ClaimedStatus {
1410
+ fields: {};
1411
+ variant: "Reserved";
1412
+ }
1413
+ namespace ClaimedStatus {
1414
+ const TYPE_QNAME = "0x2::derived_object::ClaimedStatus";
1415
+ function type(): TypeDescriptor<ClaimedStatus>;
1416
+ }
1417
+ interface Claimed {
1418
+ pos0: object$.ID;
1419
+ }
1420
+ namespace Claimed {
1421
+ const TYPE_QNAME = "0x2::derived_object::Claimed";
1422
+ function type(): TypeDescriptor<Claimed>;
1423
+ }
1424
+ type ClaimedInstance = TypedEventInstance<Claimed> & {
1425
+ data_decoded: Claimed;
1426
+ type_arguments: [];
1427
+ };
1428
+ interface DerivedObjectKey<T0> {
1429
+ pos0: T0;
1430
+ }
1431
+ namespace DerivedObjectKey {
1432
+ const TYPE_QNAME = "0x2::derived_object::DerivedObjectKey";
1433
+ function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<DerivedObjectKey<T0>>;
1434
+ }
1435
+ type DerivedObjectKeyInstance = TypedEventInstance<DerivedObjectKey<any>> & {
1436
+ data_decoded: DerivedObjectKey<any>;
1437
+ type_arguments: [string];
1438
+ };
1439
+ namespace builder {
1440
+ function claim<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
1441
+ function deriveAddress<T0 = any>(tx: Transaction, args: [object$.ID | TransactionArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
1442
+ function exists<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
1443
+ }
1444
+ namespace view {
1445
+ function claim<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.UID]>>;
1446
+ function deriveAddress<T0 = any>(client: SuiClient, args: [object$.ID, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
1447
+ function exists<T0 = any>(client: SuiClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
1448
+ }
1449
+ }
1401
1450
  export declare class display extends SuiBaseProcessor {
1402
1451
  constructor(options: SuiBindOptions);
1403
1452
  static DEFAULT_OPTIONS: SuiBindOptions;