@sentio/sdk 3.3.0 → 3.4.0-rc.2
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.
- package/lib/aptos/builtin/0x1.d.ts +111 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +131 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.js +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.js +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/iota/builtin/0x2.d.ts +573 -0
- package/lib/iota/builtin/0x2.d.ts.map +1 -1
- package/lib/iota/builtin/0x2.js +3905 -1823
- package/lib/iota/builtin/0x2.js.map +1 -1
- package/lib/iota/builtin/0x3.d.ts +46 -7
- package/lib/iota/builtin/0x3.d.ts.map +1 -1
- package/lib/iota/builtin/0x3.js +16 -7
- package/lib/iota/builtin/0x3.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +354 -197
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +1599 -67
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +1130 -623
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +2105 -79
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +305 -269
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +92 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/context.d.ts +4 -4
- package/lib/sui/context.d.ts.map +1 -1
- package/lib/sui/ext/move-dex.d.ts +1 -1
- package/lib/sui/ext/move-dex.d.ts.map +1 -1
- package/lib/sui/models.d.ts +1 -1
- package/lib/sui/models.d.ts.map +1 -1
- package/lib/sui/network.d.ts +2 -2
- package/lib/sui/network.d.ts.map +1 -1
- package/lib/sui/network.js +13 -2
- package/lib/sui/network.js.map +1 -1
- package/lib/sui/sui-object-processor-template.d.ts +1 -1
- package/lib/sui/sui-object-processor-template.d.ts.map +1 -1
- package/lib/sui/sui-object-processor.d.ts +1 -1
- package/lib/sui/sui-object-processor.d.ts.map +1 -1
- package/lib/sui/sui-processor.d.ts +1 -1
- package/lib/sui/sui-processor.d.ts.map +1 -1
- package/lib/sui/utils.d.ts +1 -1
- package/lib/sui/utils.d.ts.map +1 -1
- package/lib/testing/sui-facet.d.ts +1 -1
- package/lib/testing/sui-facet.d.ts.map +1 -1
- package/package.json +11 -11
- package/src/aptos/abis/0x1.json +1694 -323
- package/src/aptos/abis/0x3.json +75 -5
- package/src/aptos/abis/0x4.json +48 -20
- package/src/aptos/builtin/0x1.ts +233 -1
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +1 -1
- package/src/iota/abis/0x2.json +8847 -5376
- package/src/iota/abis/0x3.json +25 -2
- package/src/iota/builtin/0x2.ts +4722 -1344
- package/src/iota/builtin/0x3.ts +60 -11
- package/src/sui/abis/0x1.json +1643 -220
- package/src/sui/abis/0x2.json +3768 -372
- package/src/sui/abis/0x3.json +114 -0
- package/src/sui/builtin/0x1.ts +2448 -333
- package/src/sui/builtin/0x2.ts +4356 -1214
- package/src/sui/builtin/0x3.ts +449 -270
- package/src/sui/codegen/codegen.ts +1 -1
- package/src/sui/context.ts +5 -5
- package/src/sui/ext/coin.ts +1 -1
- package/src/sui/ext/move-dex.ts +1 -1
- package/src/sui/models.ts +1 -1
- package/src/sui/network.ts +11 -3
- package/src/sui/sui-object-processor-template.ts +1 -1
- package/src/sui/sui-object-processor.ts +1 -1
- package/src/sui/sui-processor.ts +1 -1
- package/src/sui/utils.ts +1 -1
- package/src/testing/sui-facet.ts +1 -1
|
@@ -1733,6 +1733,16 @@ export declare namespace option {
|
|
|
1733
1733
|
namespace entry { }
|
|
1734
1734
|
namespace view { }
|
|
1735
1735
|
}
|
|
1736
|
+
export declare namespace result {
|
|
1737
|
+
interface Result<T0, T1> {
|
|
1738
|
+
}
|
|
1739
|
+
namespace Result {
|
|
1740
|
+
const TYPE_QNAME = "0x1::result::Result";
|
|
1741
|
+
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Result<T0, T1>>;
|
|
1742
|
+
}
|
|
1743
|
+
namespace entry { }
|
|
1744
|
+
namespace view { }
|
|
1745
|
+
}
|
|
1736
1746
|
export declare namespace signer {
|
|
1737
1747
|
namespace entry { }
|
|
1738
1748
|
namespace view { }
|
|
@@ -2386,6 +2396,16 @@ export declare namespace math128 {
|
|
|
2386
2396
|
namespace entry { }
|
|
2387
2397
|
namespace view { }
|
|
2388
2398
|
}
|
|
2399
|
+
export declare namespace reflect {
|
|
2400
|
+
interface ReflectionError {
|
|
2401
|
+
}
|
|
2402
|
+
namespace ReflectionError {
|
|
2403
|
+
const TYPE_QNAME = "0x1::reflect::ReflectionError";
|
|
2404
|
+
function type(): TypeDescriptor<ReflectionError>;
|
|
2405
|
+
}
|
|
2406
|
+
namespace entry { }
|
|
2407
|
+
namespace view { }
|
|
2408
|
+
}
|
|
2389
2409
|
export declare class version extends AptosBaseProcessor {
|
|
2390
2410
|
constructor(options: AptosBindOptions);
|
|
2391
2411
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
@@ -4263,6 +4283,7 @@ export declare class fungible_asset extends AptosBaseProcessor {
|
|
|
4263
4283
|
onEntryUpgradeStoreToConcurrent(func: (call: fungible_asset.UpgradeStoreToConcurrentPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.UpgradeStoreToConcurrentPayload>): fungible_asset;
|
|
4264
4284
|
onEventTransferRef(func: (event: fungible_asset.TransferRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.TransferRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
4265
4285
|
onEventBurnRef(func: (event: fungible_asset.BurnRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.BurnRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
4286
|
+
onEventCreation(func: (event: fungible_asset.CreationInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.CreationInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
4266
4287
|
onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.DepositInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
4267
4288
|
onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.DepositEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
4268
4289
|
onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.FrozenInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
|
@@ -4319,6 +4340,23 @@ export declare namespace fungible_asset {
|
|
|
4319
4340
|
const TYPE_QNAME = "0x1::fungible_asset::ConcurrentSupply";
|
|
4320
4341
|
function type(): TypeDescriptor<ConcurrentSupply>;
|
|
4321
4342
|
}
|
|
4343
|
+
interface Creation {
|
|
4344
|
+
metadata: MoveAddressType;
|
|
4345
|
+
name: string;
|
|
4346
|
+
symbol: string;
|
|
4347
|
+
decimals: number;
|
|
4348
|
+
icon_uri: string;
|
|
4349
|
+
project_uri: string;
|
|
4350
|
+
maximum_supply: option.Option<bigint>;
|
|
4351
|
+
}
|
|
4352
|
+
namespace Creation {
|
|
4353
|
+
const TYPE_QNAME = "0x1::fungible_asset::Creation";
|
|
4354
|
+
function type(): TypeDescriptor<Creation>;
|
|
4355
|
+
}
|
|
4356
|
+
type CreationInstance = TypedEventInstance<Creation> & {
|
|
4357
|
+
data_decoded: Creation;
|
|
4358
|
+
type_arguments: [];
|
|
4359
|
+
};
|
|
4322
4360
|
interface Deposit {
|
|
4323
4361
|
store: MoveAddressType;
|
|
4324
4362
|
amount: bigint;
|
|
@@ -4645,6 +4683,20 @@ export declare namespace big_ordered_map {
|
|
|
4645
4683
|
const TYPE_QNAME = "0x1::big_ordered_map::Child";
|
|
4646
4684
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Child<T0>>;
|
|
4647
4685
|
}
|
|
4686
|
+
interface IteratorPtrWithPath<T0> {
|
|
4687
|
+
iterator: big_ordered_map.IteratorPtr<T0>;
|
|
4688
|
+
path: bigint[];
|
|
4689
|
+
}
|
|
4690
|
+
namespace IteratorPtrWithPath {
|
|
4691
|
+
const TYPE_QNAME = "0x1::big_ordered_map::IteratorPtrWithPath";
|
|
4692
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<IteratorPtrWithPath<T0>>;
|
|
4693
|
+
}
|
|
4694
|
+
interface LeafNodeIteratorPtr {
|
|
4695
|
+
}
|
|
4696
|
+
namespace LeafNodeIteratorPtr {
|
|
4697
|
+
const TYPE_QNAME = "0x1::big_ordered_map::LeafNodeIteratorPtr";
|
|
4698
|
+
function type(): TypeDescriptor<LeafNodeIteratorPtr>;
|
|
4699
|
+
}
|
|
4648
4700
|
interface Node<T0, T1> {
|
|
4649
4701
|
}
|
|
4650
4702
|
namespace Node {
|
|
@@ -7682,6 +7734,65 @@ export declare namespace ristretto255_pedersen {
|
|
|
7682
7734
|
namespace entry { }
|
|
7683
7735
|
namespace view { }
|
|
7684
7736
|
}
|
|
7737
|
+
export declare namespace sui_derivable_account {
|
|
7738
|
+
interface AppId {
|
|
7739
|
+
}
|
|
7740
|
+
namespace AppId {
|
|
7741
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::AppId";
|
|
7742
|
+
function type(): TypeDescriptor<AppId>;
|
|
7743
|
+
}
|
|
7744
|
+
interface Intent {
|
|
7745
|
+
scope: sui_derivable_account.IntentScope;
|
|
7746
|
+
version: sui_derivable_account.IntentVersion;
|
|
7747
|
+
app_id: sui_derivable_account.AppId;
|
|
7748
|
+
}
|
|
7749
|
+
namespace Intent {
|
|
7750
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::Intent";
|
|
7751
|
+
function type(): TypeDescriptor<Intent>;
|
|
7752
|
+
}
|
|
7753
|
+
interface IntentMessage {
|
|
7754
|
+
intent: sui_derivable_account.Intent;
|
|
7755
|
+
value: string;
|
|
7756
|
+
}
|
|
7757
|
+
namespace IntentMessage {
|
|
7758
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentMessage";
|
|
7759
|
+
function type(): TypeDescriptor<IntentMessage>;
|
|
7760
|
+
}
|
|
7761
|
+
interface IntentScope {
|
|
7762
|
+
}
|
|
7763
|
+
namespace IntentScope {
|
|
7764
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentScope";
|
|
7765
|
+
function type(): TypeDescriptor<IntentScope>;
|
|
7766
|
+
}
|
|
7767
|
+
interface IntentVersion {
|
|
7768
|
+
}
|
|
7769
|
+
namespace IntentVersion {
|
|
7770
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentVersion";
|
|
7771
|
+
function type(): TypeDescriptor<IntentVersion>;
|
|
7772
|
+
}
|
|
7773
|
+
interface SuiAbstractPublicKey {
|
|
7774
|
+
sui_account_address: string;
|
|
7775
|
+
domain: string;
|
|
7776
|
+
}
|
|
7777
|
+
namespace SuiAbstractPublicKey {
|
|
7778
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiAbstractPublicKey";
|
|
7779
|
+
function type(): TypeDescriptor<SuiAbstractPublicKey>;
|
|
7780
|
+
}
|
|
7781
|
+
interface SuiAbstractSignature {
|
|
7782
|
+
}
|
|
7783
|
+
namespace SuiAbstractSignature {
|
|
7784
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiAbstractSignature";
|
|
7785
|
+
function type(): TypeDescriptor<SuiAbstractSignature>;
|
|
7786
|
+
}
|
|
7787
|
+
interface SuiSigningScheme {
|
|
7788
|
+
}
|
|
7789
|
+
namespace SuiSigningScheme {
|
|
7790
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiSigningScheme";
|
|
7791
|
+
function type(): TypeDescriptor<SuiSigningScheme>;
|
|
7792
|
+
}
|
|
7793
|
+
namespace entry { }
|
|
7794
|
+
namespace view { }
|
|
7795
|
+
}
|
|
7685
7796
|
export declare class object_code_deployment extends AptosBaseProcessor {
|
|
7686
7797
|
constructor(options: AptosBindOptions);
|
|
7687
7798
|
static DEFAULT_OPTIONS: AptosBindOptions;
|