@sentio/sdk 3.8.0-rc.3 → 3.9.0-rc.4
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 +897 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +1322 -91
- 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.d.ts +4 -4
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js +16 -16
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/iota/builtin/0x2.d.ts +95 -0
- package/lib/iota/builtin/0x2.d.ts.map +1 -1
- package/lib/iota/builtin/0x2.js +586 -1
- package/lib/iota/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +382 -270
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +2571 -805
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +1013 -730
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +7419 -2616
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +297 -297
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +2364 -904
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/codegen/codegen.d.ts.map +1 -1
- package/lib/sui/codegen/codegen.js.map +1 -1
- package/lib/sui/context.d.ts +10 -9
- package/lib/sui/context.d.ts.map +1 -1
- package/lib/sui/context.js.map +1 -1
- package/lib/sui/ext/coin.d.ts.map +1 -1
- package/lib/sui/ext/coin.js +1 -1
- package/lib/sui/ext/coin.js.map +1 -1
- package/lib/sui/ext/move-dex.d.ts +3 -3
- package/lib/sui/ext/move-dex.d.ts.map +1 -1
- package/lib/sui/models.d.ts +5 -4
- package/lib/sui/models.d.ts.map +1 -1
- package/lib/sui/move-coder.d.ts.map +1 -1
- package/lib/sui/move-coder.js +1 -0
- package/lib/sui/move-coder.js.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 +8 -8
- package/lib/sui/network.js.map +1 -1
- package/lib/sui/sui-object-processor-template.d.ts +6 -5
- package/lib/sui/sui-object-processor-template.d.ts.map +1 -1
- package/lib/sui/sui-object-processor-template.js.map +1 -1
- package/lib/sui/sui-object-processor.d.ts +15 -13
- package/lib/sui/sui-object-processor.d.ts.map +1 -1
- package/lib/sui/sui-object-processor.js +4 -2
- package/lib/sui/sui-object-processor.js.map +1 -1
- package/lib/sui/sui-processor.d.ts +8 -6
- package/lib/sui/sui-processor.d.ts.map +1 -1
- package/lib/sui/sui-processor.js +6 -10
- package/lib/sui/sui-processor.js.map +1 -1
- package/lib/sui/utils.d.ts +3 -2
- package/lib/sui/utils.d.ts.map +1 -1
- package/lib/sui/utils.js +9 -9
- package/lib/sui/utils.js.map +1 -1
- package/lib/testing/sui-facet.d.ts +5 -5
- package/lib/testing/sui-facet.d.ts.map +1 -1
- package/lib/testing/sui-facet.js +5 -5
- package/lib/testing/sui-facet.js.map +1 -1
- package/package.json +23 -16
- package/src/aptos/abis/0x1.json +8161 -2996
- package/src/aptos/abis/0x3.json +140 -75
- package/src/aptos/abis/0x4.json +75 -52
- package/src/aptos/builtin/0x1.ts +2577 -58
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +18 -19
- package/src/iota/abis/0x2.json +464 -4
- package/src/iota/builtin/0x2.ts +911 -77
- package/src/sui/abis/0x1.json +8996 -5745
- package/src/sui/abis/0x2.json +38135 -28859
- package/src/sui/abis/0x3.json +14723 -10726
- package/src/sui/builtin/0x1.ts +4071 -1897
- package/src/sui/builtin/0x2.ts +14397 -7968
- package/src/sui/builtin/0x3.ts +3780 -2021
- package/src/sui/codegen/codegen.ts +4 -5
- package/src/sui/context.ts +15 -16
- package/src/sui/ext/coin.ts +4 -2
- package/src/sui/ext/move-dex.ts +5 -5
- package/src/sui/models.ts +5 -4
- package/src/sui/move-coder.ts +1 -0
- package/src/sui/network.ts +10 -9
- package/src/sui/sui-object-processor-template.ts +7 -6
- package/src/sui/sui-object-processor.ts +29 -21
- package/src/sui/sui-processor.ts +27 -30
- package/src/sui/utils.ts +14 -17
- package/src/testing/sui-facet.ts +13 -13
- package/lib/aptos/codegen/types.test.d.ts +0 -2
- package/lib/aptos/codegen/types.test.d.ts.map +0 -1
- package/lib/aptos/codegen/types.test.js.map +0 -1
- package/lib/aptos/ext/coin-event.test.d.ts +0 -2
- package/lib/aptos/ext/coin-event.test.d.ts.map +0 -1
- package/lib/aptos/ext/coin-event.test.js.map +0 -1
- package/lib/aptos/ext/coin.test.d.ts +0 -2
- package/lib/aptos/ext/coin.test.d.ts.map +0 -1
- package/lib/aptos/ext/coin.test.js.map +0 -1
- package/lib/core/database-schema.test.d.ts +0 -2
- package/lib/core/database-schema.test.d.ts.map +0 -1
- package/lib/core/database-schema.test.js.map +0 -1
- package/lib/core/event-logger.test.d.ts +0 -2
- package/lib/core/event-logger.test.d.ts.map +0 -1
- package/lib/core/event-logger.test.js.map +0 -1
- package/lib/core/normalization.test.d.ts +0 -2
- package/lib/core/normalization.test.d.ts.map +0 -1
- package/lib/core/normalization.test.js.map +0 -1
- package/lib/core/numberish.test.d.ts +0 -2
- package/lib/core/numberish.test.d.ts.map +0 -1
- package/lib/core/numberish.test.js.map +0 -1
- package/lib/eth/base-processor.test.d.ts +0 -2
- package/lib/eth/base-processor.test.d.ts.map +0 -1
- package/lib/eth/base-processor.test.js.map +0 -1
- package/lib/eth/eth.test.d.ts +0 -2
- package/lib/eth/eth.test.d.ts.map +0 -1
- package/lib/eth/eth.test.js.map +0 -1
- package/lib/eth/generic-processor.test.d.ts +0 -2
- package/lib/eth/generic-processor.test.d.ts.map +0 -1
- package/lib/eth/generic-processor.test.js.map +0 -1
- package/lib/eth/provider.test.d.ts +0 -2
- package/lib/eth/provider.test.d.ts.map +0 -1
- package/lib/eth/provider.test.js.map +0 -1
- package/lib/store/convert.test.d.ts +0 -2
- package/lib/store/convert.test.d.ts.map +0 -1
- package/lib/store/convert.test.js.map +0 -1
- package/lib/utils/block.test.d.ts +0 -2
- package/lib/utils/block.test.d.ts.map +0 -1
- package/lib/utils/block.test.js.map +0 -1
- package/lib/utils/dex-price.test.d.ts +0 -2
- package/lib/utils/dex-price.test.d.ts.map +0 -1
- package/lib/utils/dex-price.test.js.map +0 -1
- package/lib/utils/erc20.test.d.ts +0 -2
- package/lib/utils/erc20.test.d.ts.map +0 -1
- package/lib/utils/erc20.test.js.map +0 -1
- package/lib/utils/price.test.d.ts +0 -2
- package/lib/utils/price.test.d.ts.map +0 -1
- package/lib/utils/price.test.js.map +0 -1
|
@@ -905,6 +905,7 @@ export declare class stake extends AptosBaseProcessor {
|
|
|
905
905
|
onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.UnlockStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
906
906
|
onEventUpdateNetworkAndFullnodeAddresses(func: (event: stake.UpdateNetworkAndFullnodeAddressesInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.UpdateNetworkAndFullnodeAddressesInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
907
907
|
onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.UpdateNetworkAndFullnodeAddressesEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
908
|
+
onEventValidatorSetLivenessFallback(func: (event: stake.ValidatorSetLivenessFallbackInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.ValidatorSetLivenessFallbackInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
908
909
|
onEventWithdrawStake(func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.WithdrawStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
909
910
|
onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.WithdrawStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
|
910
911
|
}
|
|
@@ -1314,6 +1315,19 @@ export declare namespace stake {
|
|
|
1314
1315
|
const TYPE_QNAME = "0x1::stake::ValidatorSet";
|
|
1315
1316
|
function type(): TypeDescriptor<ValidatorSet>;
|
|
1316
1317
|
}
|
|
1318
|
+
interface ValidatorSetLivenessFallback {
|
|
1319
|
+
minimum_stake: bigint;
|
|
1320
|
+
emergency_validator_count: bigint;
|
|
1321
|
+
total_emergency_voting_power: bigint;
|
|
1322
|
+
}
|
|
1323
|
+
namespace ValidatorSetLivenessFallback {
|
|
1324
|
+
const TYPE_QNAME = "0x1::stake::ValidatorSetLivenessFallback";
|
|
1325
|
+
function type(): TypeDescriptor<ValidatorSetLivenessFallback>;
|
|
1326
|
+
}
|
|
1327
|
+
type ValidatorSetLivenessFallbackInstance = TypedEventInstance<ValidatorSetLivenessFallback> & {
|
|
1328
|
+
data_decoded: ValidatorSetLivenessFallback;
|
|
1329
|
+
type_arguments: [];
|
|
1330
|
+
};
|
|
1317
1331
|
interface WithdrawStake {
|
|
1318
1332
|
pool_address: MoveAddressType;
|
|
1319
1333
|
amount_withdrawn: bigint;
|
|
@@ -3387,6 +3401,55 @@ export declare namespace capability {
|
|
|
3387
3401
|
namespace entry { }
|
|
3388
3402
|
namespace view { }
|
|
3389
3403
|
}
|
|
3404
|
+
export declare class chunky_dkg extends AptosBaseProcessor {
|
|
3405
|
+
constructor(options: AptosBindOptions);
|
|
3406
|
+
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
3407
|
+
static bind(options?: Partial<AptosBindOptions>): chunky_dkg;
|
|
3408
|
+
onEventChunkyDKGStartEvent(func: (event: chunky_dkg.ChunkyDKGStartEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, chunky_dkg.ChunkyDKGStartEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): chunky_dkg;
|
|
3409
|
+
}
|
|
3410
|
+
export declare namespace chunky_dkg {
|
|
3411
|
+
interface ChunkyDKGSessionMetadata {
|
|
3412
|
+
dealer_epoch: bigint;
|
|
3413
|
+
chunky_dkg_config: chunky_dkg_config.ChunkyDKGConfig;
|
|
3414
|
+
dealer_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
|
|
3415
|
+
target_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
|
|
3416
|
+
}
|
|
3417
|
+
namespace ChunkyDKGSessionMetadata {
|
|
3418
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGSessionMetadata";
|
|
3419
|
+
function type(): TypeDescriptor<ChunkyDKGSessionMetadata>;
|
|
3420
|
+
}
|
|
3421
|
+
interface ChunkyDKGSessionState {
|
|
3422
|
+
metadata: chunky_dkg.ChunkyDKGSessionMetadata;
|
|
3423
|
+
start_time_us: bigint;
|
|
3424
|
+
aggregated_subtranscript: string;
|
|
3425
|
+
}
|
|
3426
|
+
namespace ChunkyDKGSessionState {
|
|
3427
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGSessionState";
|
|
3428
|
+
function type(): TypeDescriptor<ChunkyDKGSessionState>;
|
|
3429
|
+
}
|
|
3430
|
+
interface ChunkyDKGStartEvent {
|
|
3431
|
+
session_metadata: chunky_dkg.ChunkyDKGSessionMetadata;
|
|
3432
|
+
start_time_us: bigint;
|
|
3433
|
+
}
|
|
3434
|
+
namespace ChunkyDKGStartEvent {
|
|
3435
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGStartEvent";
|
|
3436
|
+
function type(): TypeDescriptor<ChunkyDKGStartEvent>;
|
|
3437
|
+
}
|
|
3438
|
+
type ChunkyDKGStartEventInstance = TypedEventInstance<ChunkyDKGStartEvent> & {
|
|
3439
|
+
data_decoded: ChunkyDKGStartEvent;
|
|
3440
|
+
type_arguments: [];
|
|
3441
|
+
};
|
|
3442
|
+
interface ChunkyDKGState {
|
|
3443
|
+
last_completed: option.Option<chunky_dkg.ChunkyDKGSessionState>;
|
|
3444
|
+
in_progress: option.Option<chunky_dkg.ChunkyDKGSessionState>;
|
|
3445
|
+
}
|
|
3446
|
+
namespace ChunkyDKGState {
|
|
3447
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGState";
|
|
3448
|
+
function type(): TypeDescriptor<ChunkyDKGState>;
|
|
3449
|
+
}
|
|
3450
|
+
namespace entry { }
|
|
3451
|
+
namespace view { }
|
|
3452
|
+
}
|
|
3390
3453
|
export declare namespace comparator {
|
|
3391
3454
|
interface Result {
|
|
3392
3455
|
inner: number;
|
|
@@ -3398,6 +3461,27 @@ export declare namespace comparator {
|
|
|
3398
3461
|
namespace entry { }
|
|
3399
3462
|
namespace view { }
|
|
3400
3463
|
}
|
|
3464
|
+
export declare namespace decryption {
|
|
3465
|
+
interface PerBlockDecryptionKey {
|
|
3466
|
+
epoch: bigint;
|
|
3467
|
+
round: bigint;
|
|
3468
|
+
decryption_key: option.Option<string>;
|
|
3469
|
+
}
|
|
3470
|
+
namespace PerBlockDecryptionKey {
|
|
3471
|
+
const TYPE_QNAME = "0x1::decryption::PerBlockDecryptionKey";
|
|
3472
|
+
function type(): TypeDescriptor<PerBlockDecryptionKey>;
|
|
3473
|
+
}
|
|
3474
|
+
interface PerEpochEncryptionKey {
|
|
3475
|
+
epoch: bigint;
|
|
3476
|
+
encryption_key: option.Option<string>;
|
|
3477
|
+
}
|
|
3478
|
+
namespace PerEpochEncryptionKey {
|
|
3479
|
+
const TYPE_QNAME = "0x1::decryption::PerEpochEncryptionKey";
|
|
3480
|
+
function type(): TypeDescriptor<PerEpochEncryptionKey>;
|
|
3481
|
+
}
|
|
3482
|
+
namespace entry { }
|
|
3483
|
+
namespace view { }
|
|
3484
|
+
}
|
|
3401
3485
|
export declare namespace math_fixed {
|
|
3402
3486
|
namespace entry { }
|
|
3403
3487
|
namespace view { }
|
|
@@ -4593,6 +4677,9 @@ export declare namespace fungible_asset {
|
|
|
4593
4677
|
typeArguments: [MoveStructId];
|
|
4594
4678
|
functionArguments: [object$.Object<T0>];
|
|
4595
4679
|
}, version?: bigint): Promise<[fungible_asset.Metadata]>;
|
|
4680
|
+
function isAssetTypeDispatchable(client: Aptos, request: {
|
|
4681
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
4682
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4596
4683
|
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
|
4597
4684
|
typeArguments: [MoveStructId];
|
|
4598
4685
|
functionArguments: [object$.Object<T0>, bigint];
|
|
@@ -4634,6 +4721,10 @@ export declare namespace fungible_asset {
|
|
|
4634
4721
|
type_arguments: [string];
|
|
4635
4722
|
}
|
|
4636
4723
|
}
|
|
4724
|
+
export declare namespace sigma_protocol {
|
|
4725
|
+
namespace entry { }
|
|
4726
|
+
namespace view { }
|
|
4727
|
+
}
|
|
4637
4728
|
export declare namespace staking_config {
|
|
4638
4729
|
interface StakingConfig {
|
|
4639
4730
|
minimum_stake: bigint;
|
|
@@ -7204,6 +7295,9 @@ export declare namespace staking_contract {
|
|
|
7204
7295
|
function lastRecordedPrincipal(client: Aptos, request: {
|
|
7205
7296
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
7206
7297
|
}, version?: bigint): Promise<[bigint]>;
|
|
7298
|
+
function pendingAttributionSnapshot(client: Aptos, request: {
|
|
7299
|
+
functionArguments: [MoveAddressType, MoveAddressType, MoveAddressType];
|
|
7300
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
7207
7301
|
function pendingDistributionCounts(client: Aptos, request: {
|
|
7208
7302
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
7209
7303
|
}, version?: bigint): Promise<[bigint]>;
|
|
@@ -7285,6 +7379,32 @@ export declare namespace system_addresses {
|
|
|
7285
7379
|
namespace entry { }
|
|
7286
7380
|
namespace view { }
|
|
7287
7381
|
}
|
|
7382
|
+
export declare namespace chunky_dkg_config {
|
|
7383
|
+
interface ConfigOff {
|
|
7384
|
+
dummy_field: boolean;
|
|
7385
|
+
}
|
|
7386
|
+
namespace ConfigOff {
|
|
7387
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ConfigOff";
|
|
7388
|
+
function type(): TypeDescriptor<ConfigOff>;
|
|
7389
|
+
}
|
|
7390
|
+
interface ConfigV1 {
|
|
7391
|
+
secrecy_threshold: fixed_point64.FixedPoint64;
|
|
7392
|
+
reconstruction_threshold: fixed_point64.FixedPoint64;
|
|
7393
|
+
}
|
|
7394
|
+
namespace ConfigV1 {
|
|
7395
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ConfigV1";
|
|
7396
|
+
function type(): TypeDescriptor<ConfigV1>;
|
|
7397
|
+
}
|
|
7398
|
+
interface ChunkyDKGConfig {
|
|
7399
|
+
variant: copyable_any.Any;
|
|
7400
|
+
}
|
|
7401
|
+
namespace ChunkyDKGConfig {
|
|
7402
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ChunkyDKGConfig";
|
|
7403
|
+
function type(): TypeDescriptor<ChunkyDKGConfig>;
|
|
7404
|
+
}
|
|
7405
|
+
namespace entry { }
|
|
7406
|
+
namespace view { }
|
|
7407
|
+
}
|
|
7288
7408
|
export declare namespace federated_keyless {
|
|
7289
7409
|
interface PublicKey {
|
|
7290
7410
|
jwk_address: MoveAddressType;
|
|
@@ -7355,6 +7475,517 @@ export declare namespace aggregator_factory {
|
|
|
7355
7475
|
namespace entry { }
|
|
7356
7476
|
namespace view { }
|
|
7357
7477
|
}
|
|
7478
|
+
export declare class confidential_asset extends AptosBaseProcessor {
|
|
7479
|
+
constructor(options: AptosBindOptions);
|
|
7480
|
+
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
7481
|
+
static bind(options?: Partial<AptosBindOptions>): confidential_asset;
|
|
7482
|
+
onEntryDeposit(func: (call: confidential_asset.DepositPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.DepositPayload>): confidential_asset;
|
|
7483
|
+
onEntryConfidentialTransferRaw(func: (call: confidential_asset.ConfidentialTransferRawPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.ConfidentialTransferRawPayload>): confidential_asset;
|
|
7484
|
+
onEntryNormalizeRaw(func: (call: confidential_asset.NormalizeRawPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.NormalizeRawPayload>): confidential_asset;
|
|
7485
|
+
onEntryRegisterRaw(func: (call: confidential_asset.RegisterRawPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RegisterRawPayload>): confidential_asset;
|
|
7486
|
+
onEntryRolloverPendingBalance(func: (call: confidential_asset.RolloverPendingBalancePayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RolloverPendingBalancePayload>): confidential_asset;
|
|
7487
|
+
onEntryRolloverPendingBalanceAndPause(func: (call: confidential_asset.RolloverPendingBalanceAndPausePayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RolloverPendingBalanceAndPausePayload>): confidential_asset;
|
|
7488
|
+
onEntryRotateEncryptionKeyRaw(func: (call: confidential_asset.RotateEncryptionKeyRawPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RotateEncryptionKeyRawPayload>): confidential_asset;
|
|
7489
|
+
onEntrySetIncomingTransfersPaused(func: (call: confidential_asset.SetIncomingTransfersPausedPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.SetIncomingTransfersPausedPayload>): confidential_asset;
|
|
7490
|
+
onEntryWithdrawToRaw(func: (call: confidential_asset.WithdrawToRawPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.WithdrawToRawPayload>): confidential_asset;
|
|
7491
|
+
onEventAllowListingChanged(func: (event: confidential_asset.AllowListingChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.AllowListingChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7492
|
+
onEventAssetSpecificAuditorChanged(func: (event: confidential_asset.AssetSpecificAuditorChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.AssetSpecificAuditorChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7493
|
+
onEventConfidentialityForAssetTypeChanged(func: (event: confidential_asset.ConfidentialityForAssetTypeChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.ConfidentialityForAssetTypeChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7494
|
+
onEventDeposited(func: (event: confidential_asset.DepositedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.DepositedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7495
|
+
onEventEmergencyPauseChanged(func: (event: confidential_asset.EmergencyPauseChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.EmergencyPauseChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7496
|
+
onEventGlobalAuditorChanged(func: (event: confidential_asset.GlobalAuditorChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.GlobalAuditorChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7497
|
+
onEventIncomingTransfersPauseChanged(func: (event: confidential_asset.IncomingTransfersPauseChangedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.IncomingTransfersPauseChangedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7498
|
+
onEventKeyRotated(func: (event: confidential_asset.KeyRotatedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.KeyRotatedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7499
|
+
onEventNormalized(func: (event: confidential_asset.NormalizedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.NormalizedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7500
|
+
onEventRegistered(func: (event: confidential_asset.RegisteredInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RegisteredInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7501
|
+
onEventRolledOver(func: (event: confidential_asset.RolledOverInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.RolledOverInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7502
|
+
onEventTransferred(func: (event: confidential_asset.TransferredInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.TransferredInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7503
|
+
onEventWithdrawn(func: (event: confidential_asset.WithdrawnInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, confidential_asset.WithdrawnInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): confidential_asset;
|
|
7504
|
+
}
|
|
7505
|
+
export declare namespace confidential_asset {
|
|
7506
|
+
interface AllowListingChanged {
|
|
7507
|
+
}
|
|
7508
|
+
namespace AllowListingChanged {
|
|
7509
|
+
const TYPE_QNAME = "0x1::confidential_asset::AllowListingChanged";
|
|
7510
|
+
function type(): TypeDescriptor<AllowListingChanged>;
|
|
7511
|
+
}
|
|
7512
|
+
type AllowListingChangedInstance = TypedEventInstance<AllowListingChanged> & {
|
|
7513
|
+
data_decoded: AllowListingChanged;
|
|
7514
|
+
type_arguments: [];
|
|
7515
|
+
};
|
|
7516
|
+
interface AssetConfig {
|
|
7517
|
+
}
|
|
7518
|
+
namespace AssetConfig {
|
|
7519
|
+
const TYPE_QNAME = "0x1::confidential_asset::AssetConfig";
|
|
7520
|
+
function type(): TypeDescriptor<AssetConfig>;
|
|
7521
|
+
}
|
|
7522
|
+
interface AssetSpecificAuditorChanged {
|
|
7523
|
+
}
|
|
7524
|
+
namespace AssetSpecificAuditorChanged {
|
|
7525
|
+
const TYPE_QNAME = "0x1::confidential_asset::AssetSpecificAuditorChanged";
|
|
7526
|
+
function type(): TypeDescriptor<AssetSpecificAuditorChanged>;
|
|
7527
|
+
}
|
|
7528
|
+
type AssetSpecificAuditorChangedInstance = TypedEventInstance<AssetSpecificAuditorChanged> & {
|
|
7529
|
+
data_decoded: AssetSpecificAuditorChanged;
|
|
7530
|
+
type_arguments: [];
|
|
7531
|
+
};
|
|
7532
|
+
interface AuditorConfig {
|
|
7533
|
+
}
|
|
7534
|
+
namespace AuditorConfig {
|
|
7535
|
+
const TYPE_QNAME = "0x1::confidential_asset::AuditorConfig";
|
|
7536
|
+
function type(): TypeDescriptor<AuditorConfig>;
|
|
7537
|
+
}
|
|
7538
|
+
interface ConfidentialStore {
|
|
7539
|
+
}
|
|
7540
|
+
namespace ConfidentialStore {
|
|
7541
|
+
const TYPE_QNAME = "0x1::confidential_asset::ConfidentialStore";
|
|
7542
|
+
function type(): TypeDescriptor<ConfidentialStore>;
|
|
7543
|
+
}
|
|
7544
|
+
interface ConfidentialityForAssetTypeChanged {
|
|
7545
|
+
}
|
|
7546
|
+
namespace ConfidentialityForAssetTypeChanged {
|
|
7547
|
+
const TYPE_QNAME = "0x1::confidential_asset::ConfidentialityForAssetTypeChanged";
|
|
7548
|
+
function type(): TypeDescriptor<ConfidentialityForAssetTypeChanged>;
|
|
7549
|
+
}
|
|
7550
|
+
type ConfidentialityForAssetTypeChangedInstance = TypedEventInstance<ConfidentialityForAssetTypeChanged> & {
|
|
7551
|
+
data_decoded: ConfidentialityForAssetTypeChanged;
|
|
7552
|
+
type_arguments: [];
|
|
7553
|
+
};
|
|
7554
|
+
interface Deposited {
|
|
7555
|
+
}
|
|
7556
|
+
namespace Deposited {
|
|
7557
|
+
const TYPE_QNAME = "0x1::confidential_asset::Deposited";
|
|
7558
|
+
function type(): TypeDescriptor<Deposited>;
|
|
7559
|
+
}
|
|
7560
|
+
type DepositedInstance = TypedEventInstance<Deposited> & {
|
|
7561
|
+
data_decoded: Deposited;
|
|
7562
|
+
type_arguments: [];
|
|
7563
|
+
};
|
|
7564
|
+
interface EffectiveAuditorConfig {
|
|
7565
|
+
}
|
|
7566
|
+
namespace EffectiveAuditorConfig {
|
|
7567
|
+
const TYPE_QNAME = "0x1::confidential_asset::EffectiveAuditorConfig";
|
|
7568
|
+
function type(): TypeDescriptor<EffectiveAuditorConfig>;
|
|
7569
|
+
}
|
|
7570
|
+
interface EffectiveAuditorHint {
|
|
7571
|
+
}
|
|
7572
|
+
namespace EffectiveAuditorHint {
|
|
7573
|
+
const TYPE_QNAME = "0x1::confidential_asset::EffectiveAuditorHint";
|
|
7574
|
+
function type(): TypeDescriptor<EffectiveAuditorHint>;
|
|
7575
|
+
}
|
|
7576
|
+
interface EmergencyPauseChanged {
|
|
7577
|
+
}
|
|
7578
|
+
namespace EmergencyPauseChanged {
|
|
7579
|
+
const TYPE_QNAME = "0x1::confidential_asset::EmergencyPauseChanged";
|
|
7580
|
+
function type(): TypeDescriptor<EmergencyPauseChanged>;
|
|
7581
|
+
}
|
|
7582
|
+
type EmergencyPauseChangedInstance = TypedEventInstance<EmergencyPauseChanged> & {
|
|
7583
|
+
data_decoded: EmergencyPauseChanged;
|
|
7584
|
+
type_arguments: [];
|
|
7585
|
+
};
|
|
7586
|
+
interface GlobalAuditorChanged {
|
|
7587
|
+
}
|
|
7588
|
+
namespace GlobalAuditorChanged {
|
|
7589
|
+
const TYPE_QNAME = "0x1::confidential_asset::GlobalAuditorChanged";
|
|
7590
|
+
function type(): TypeDescriptor<GlobalAuditorChanged>;
|
|
7591
|
+
}
|
|
7592
|
+
type GlobalAuditorChangedInstance = TypedEventInstance<GlobalAuditorChanged> & {
|
|
7593
|
+
data_decoded: GlobalAuditorChanged;
|
|
7594
|
+
type_arguments: [];
|
|
7595
|
+
};
|
|
7596
|
+
interface GlobalConfig {
|
|
7597
|
+
}
|
|
7598
|
+
namespace GlobalConfig {
|
|
7599
|
+
const TYPE_QNAME = "0x1::confidential_asset::GlobalConfig";
|
|
7600
|
+
function type(): TypeDescriptor<GlobalConfig>;
|
|
7601
|
+
}
|
|
7602
|
+
interface IncomingTransfersPauseChanged {
|
|
7603
|
+
}
|
|
7604
|
+
namespace IncomingTransfersPauseChanged {
|
|
7605
|
+
const TYPE_QNAME = "0x1::confidential_asset::IncomingTransfersPauseChanged";
|
|
7606
|
+
function type(): TypeDescriptor<IncomingTransfersPauseChanged>;
|
|
7607
|
+
}
|
|
7608
|
+
type IncomingTransfersPauseChangedInstance = TypedEventInstance<IncomingTransfersPauseChanged> & {
|
|
7609
|
+
data_decoded: IncomingTransfersPauseChanged;
|
|
7610
|
+
type_arguments: [];
|
|
7611
|
+
};
|
|
7612
|
+
interface KeyRotated {
|
|
7613
|
+
}
|
|
7614
|
+
namespace KeyRotated {
|
|
7615
|
+
const TYPE_QNAME = "0x1::confidential_asset::KeyRotated";
|
|
7616
|
+
function type(): TypeDescriptor<KeyRotated>;
|
|
7617
|
+
}
|
|
7618
|
+
type KeyRotatedInstance = TypedEventInstance<KeyRotated> & {
|
|
7619
|
+
data_decoded: KeyRotated;
|
|
7620
|
+
type_arguments: [];
|
|
7621
|
+
};
|
|
7622
|
+
interface KeyRotationProof {
|
|
7623
|
+
}
|
|
7624
|
+
namespace KeyRotationProof {
|
|
7625
|
+
const TYPE_QNAME = "0x1::confidential_asset::KeyRotationProof";
|
|
7626
|
+
function type(): TypeDescriptor<KeyRotationProof>;
|
|
7627
|
+
}
|
|
7628
|
+
interface Normalized {
|
|
7629
|
+
}
|
|
7630
|
+
namespace Normalized {
|
|
7631
|
+
const TYPE_QNAME = "0x1::confidential_asset::Normalized";
|
|
7632
|
+
function type(): TypeDescriptor<Normalized>;
|
|
7633
|
+
}
|
|
7634
|
+
type NormalizedInstance = TypedEventInstance<Normalized> & {
|
|
7635
|
+
data_decoded: Normalized;
|
|
7636
|
+
type_arguments: [];
|
|
7637
|
+
};
|
|
7638
|
+
interface Registered {
|
|
7639
|
+
}
|
|
7640
|
+
namespace Registered {
|
|
7641
|
+
const TYPE_QNAME = "0x1::confidential_asset::Registered";
|
|
7642
|
+
function type(): TypeDescriptor<Registered>;
|
|
7643
|
+
}
|
|
7644
|
+
type RegisteredInstance = TypedEventInstance<Registered> & {
|
|
7645
|
+
data_decoded: Registered;
|
|
7646
|
+
type_arguments: [];
|
|
7647
|
+
};
|
|
7648
|
+
interface RegistrationProof {
|
|
7649
|
+
}
|
|
7650
|
+
namespace RegistrationProof {
|
|
7651
|
+
const TYPE_QNAME = "0x1::confidential_asset::RegistrationProof";
|
|
7652
|
+
function type(): TypeDescriptor<RegistrationProof>;
|
|
7653
|
+
}
|
|
7654
|
+
interface RolledOver {
|
|
7655
|
+
}
|
|
7656
|
+
namespace RolledOver {
|
|
7657
|
+
const TYPE_QNAME = "0x1::confidential_asset::RolledOver";
|
|
7658
|
+
function type(): TypeDescriptor<RolledOver>;
|
|
7659
|
+
}
|
|
7660
|
+
type RolledOverInstance = TypedEventInstance<RolledOver> & {
|
|
7661
|
+
data_decoded: RolledOver;
|
|
7662
|
+
type_arguments: [];
|
|
7663
|
+
};
|
|
7664
|
+
interface TransferProof {
|
|
7665
|
+
}
|
|
7666
|
+
namespace TransferProof {
|
|
7667
|
+
const TYPE_QNAME = "0x1::confidential_asset::TransferProof";
|
|
7668
|
+
function type(): TypeDescriptor<TransferProof>;
|
|
7669
|
+
}
|
|
7670
|
+
interface Transferred {
|
|
7671
|
+
}
|
|
7672
|
+
namespace Transferred {
|
|
7673
|
+
const TYPE_QNAME = "0x1::confidential_asset::Transferred";
|
|
7674
|
+
function type(): TypeDescriptor<Transferred>;
|
|
7675
|
+
}
|
|
7676
|
+
type TransferredInstance = TypedEventInstance<Transferred> & {
|
|
7677
|
+
data_decoded: Transferred;
|
|
7678
|
+
type_arguments: [];
|
|
7679
|
+
};
|
|
7680
|
+
interface WithdrawalProof {
|
|
7681
|
+
}
|
|
7682
|
+
namespace WithdrawalProof {
|
|
7683
|
+
const TYPE_QNAME = "0x1::confidential_asset::WithdrawalProof";
|
|
7684
|
+
function type(): TypeDescriptor<WithdrawalProof>;
|
|
7685
|
+
}
|
|
7686
|
+
interface Withdrawn {
|
|
7687
|
+
}
|
|
7688
|
+
namespace Withdrawn {
|
|
7689
|
+
const TYPE_QNAME = "0x1::confidential_asset::Withdrawn";
|
|
7690
|
+
function type(): TypeDescriptor<Withdrawn>;
|
|
7691
|
+
}
|
|
7692
|
+
type WithdrawnInstance = TypedEventInstance<Withdrawn> & {
|
|
7693
|
+
data_decoded: Withdrawn;
|
|
7694
|
+
type_arguments: [];
|
|
7695
|
+
};
|
|
7696
|
+
namespace entry {
|
|
7697
|
+
function deposit(client: Aptos, account: AptosAccount, request: {
|
|
7698
|
+
typeArguments: [];
|
|
7699
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>, bigint];
|
|
7700
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7701
|
+
function confidentialTransferRaw(client: Aptos, account: AptosAccount, request: {
|
|
7702
|
+
typeArguments: [];
|
|
7703
|
+
functionArguments: [
|
|
7704
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7705
|
+
MoveAddressType,
|
|
7706
|
+
string[],
|
|
7707
|
+
string[],
|
|
7708
|
+
string[],
|
|
7709
|
+
string[],
|
|
7710
|
+
string[],
|
|
7711
|
+
string[],
|
|
7712
|
+
string[],
|
|
7713
|
+
string[],
|
|
7714
|
+
string[][],
|
|
7715
|
+
string,
|
|
7716
|
+
string,
|
|
7717
|
+
string[],
|
|
7718
|
+
string[],
|
|
7719
|
+
string
|
|
7720
|
+
];
|
|
7721
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7722
|
+
function normalizeRaw(client: Aptos, account: AptosAccount, request: {
|
|
7723
|
+
typeArguments: [];
|
|
7724
|
+
functionArguments: [
|
|
7725
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7726
|
+
string[],
|
|
7727
|
+
string[],
|
|
7728
|
+
string[],
|
|
7729
|
+
string,
|
|
7730
|
+
string[],
|
|
7731
|
+
string[]
|
|
7732
|
+
];
|
|
7733
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7734
|
+
function registerRaw(client: Aptos, account: AptosAccount, request: {
|
|
7735
|
+
typeArguments: [];
|
|
7736
|
+
functionArguments: [
|
|
7737
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7738
|
+
string,
|
|
7739
|
+
string[],
|
|
7740
|
+
string[]
|
|
7741
|
+
];
|
|
7742
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7743
|
+
function rolloverPendingBalance(client: Aptos, account: AptosAccount, request: {
|
|
7744
|
+
typeArguments: [];
|
|
7745
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7746
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7747
|
+
function rolloverPendingBalanceAndPause(client: Aptos, account: AptosAccount, request: {
|
|
7748
|
+
typeArguments: [];
|
|
7749
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7750
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7751
|
+
function rotateEncryptionKeyRaw(client: Aptos, account: AptosAccount, request: {
|
|
7752
|
+
typeArguments: [];
|
|
7753
|
+
functionArguments: [
|
|
7754
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7755
|
+
string,
|
|
7756
|
+
boolean,
|
|
7757
|
+
string[],
|
|
7758
|
+
string[],
|
|
7759
|
+
string[]
|
|
7760
|
+
];
|
|
7761
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7762
|
+
function setIncomingTransfersPaused(client: Aptos, account: AptosAccount, request: {
|
|
7763
|
+
typeArguments: [];
|
|
7764
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>, boolean];
|
|
7765
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7766
|
+
function withdrawToRaw(client: Aptos, account: AptosAccount, request: {
|
|
7767
|
+
typeArguments: [];
|
|
7768
|
+
functionArguments: [
|
|
7769
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7770
|
+
MoveAddressType,
|
|
7771
|
+
bigint,
|
|
7772
|
+
string[],
|
|
7773
|
+
string[],
|
|
7774
|
+
string[],
|
|
7775
|
+
string,
|
|
7776
|
+
string[],
|
|
7777
|
+
string[]
|
|
7778
|
+
];
|
|
7779
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
7780
|
+
}
|
|
7781
|
+
namespace view {
|
|
7782
|
+
function getAssetSpecificAuditorConfig(client: Aptos, request: {
|
|
7783
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7784
|
+
}, version?: bigint): Promise<[confidential_asset.AuditorConfig]>;
|
|
7785
|
+
function getAvailableBalance(client: Aptos, request: {
|
|
7786
|
+
functionArguments: [
|
|
7787
|
+
MoveAddressType,
|
|
7788
|
+
object$.Object<fungible_asset.Metadata>
|
|
7789
|
+
];
|
|
7790
|
+
}, version?: bigint): Promise<[
|
|
7791
|
+
confidential_balance.CompressedBalance<confidential_balance.Available>
|
|
7792
|
+
]>;
|
|
7793
|
+
function getEffectiveAuditorConfig(client: Aptos, request: {
|
|
7794
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7795
|
+
}, version?: bigint): Promise<[confidential_asset.EffectiveAuditorConfig]>;
|
|
7796
|
+
function getEffectiveAuditorHint(client: Aptos, request: {
|
|
7797
|
+
functionArguments: [
|
|
7798
|
+
MoveAddressType,
|
|
7799
|
+
object$.Object<fungible_asset.Metadata>
|
|
7800
|
+
];
|
|
7801
|
+
}, version?: bigint): Promise<[option.Option<confidential_asset.EffectiveAuditorHint>]>;
|
|
7802
|
+
function getEncryptionKey(client: Aptos, request: {
|
|
7803
|
+
functionArguments: [
|
|
7804
|
+
MoveAddressType,
|
|
7805
|
+
object$.Object<fungible_asset.Metadata>
|
|
7806
|
+
];
|
|
7807
|
+
}, version?: bigint): Promise<[ristretto255.CompressedRistretto]>;
|
|
7808
|
+
function getGlobalAuditorConfig(client: Aptos, version?: bigint): Promise<[confidential_asset.AuditorConfig]>;
|
|
7809
|
+
function getMaxMemoBytes(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
7810
|
+
function getMaxTransfersBeforeRollover(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
7811
|
+
function getNumTransfersReceived(client: Aptos, request: {
|
|
7812
|
+
functionArguments: [
|
|
7813
|
+
MoveAddressType,
|
|
7814
|
+
object$.Object<fungible_asset.Metadata>
|
|
7815
|
+
];
|
|
7816
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
7817
|
+
function getPendingBalance(client: Aptos, request: {
|
|
7818
|
+
functionArguments: [
|
|
7819
|
+
MoveAddressType,
|
|
7820
|
+
object$.Object<fungible_asset.Metadata>
|
|
7821
|
+
];
|
|
7822
|
+
}, version?: bigint): Promise<[
|
|
7823
|
+
confidential_balance.CompressedBalance<confidential_balance.Pending>
|
|
7824
|
+
]>;
|
|
7825
|
+
function getTotalConfidentialSupply(client: Aptos, request: {
|
|
7826
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7827
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
7828
|
+
function hasConfidentialStore(client: Aptos, request: {
|
|
7829
|
+
functionArguments: [
|
|
7830
|
+
MoveAddressType,
|
|
7831
|
+
object$.Object<fungible_asset.Metadata>
|
|
7832
|
+
];
|
|
7833
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
7834
|
+
function incomingTransfersPaused(client: Aptos, request: {
|
|
7835
|
+
functionArguments: [
|
|
7836
|
+
MoveAddressType,
|
|
7837
|
+
object$.Object<fungible_asset.Metadata>
|
|
7838
|
+
];
|
|
7839
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
7840
|
+
function isAllowListingRequired(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
7841
|
+
function isConfidentialityEnabledForAssetType(client: Aptos, request: {
|
|
7842
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
7843
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
7844
|
+
function isEmergencyPaused(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
7845
|
+
function isNormalized(client: Aptos, request: {
|
|
7846
|
+
functionArguments: [
|
|
7847
|
+
MoveAddressType,
|
|
7848
|
+
object$.Object<fungible_asset.Metadata>
|
|
7849
|
+
];
|
|
7850
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
7851
|
+
}
|
|
7852
|
+
interface DepositPayload extends TypedFunctionPayload<[
|
|
7853
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7854
|
+
bigint
|
|
7855
|
+
]> {
|
|
7856
|
+
arguments_decoded: [object$.Object<fungible_asset.Metadata>, bigint];
|
|
7857
|
+
type_arguments: [];
|
|
7858
|
+
}
|
|
7859
|
+
interface ConfidentialTransferRawPayload extends TypedFunctionPayload<[
|
|
7860
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7861
|
+
MoveAddressType,
|
|
7862
|
+
string[],
|
|
7863
|
+
string[],
|
|
7864
|
+
string[],
|
|
7865
|
+
string[],
|
|
7866
|
+
string[],
|
|
7867
|
+
string[],
|
|
7868
|
+
string[],
|
|
7869
|
+
string[],
|
|
7870
|
+
string[][],
|
|
7871
|
+
string,
|
|
7872
|
+
string,
|
|
7873
|
+
string[],
|
|
7874
|
+
string[],
|
|
7875
|
+
string
|
|
7876
|
+
]> {
|
|
7877
|
+
arguments_decoded: [
|
|
7878
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7879
|
+
MoveAddressType,
|
|
7880
|
+
string[],
|
|
7881
|
+
string[],
|
|
7882
|
+
string[],
|
|
7883
|
+
string[],
|
|
7884
|
+
string[],
|
|
7885
|
+
string[],
|
|
7886
|
+
string[],
|
|
7887
|
+
string[],
|
|
7888
|
+
string[][],
|
|
7889
|
+
string,
|
|
7890
|
+
string,
|
|
7891
|
+
string[],
|
|
7892
|
+
string[],
|
|
7893
|
+
string
|
|
7894
|
+
];
|
|
7895
|
+
type_arguments: [];
|
|
7896
|
+
}
|
|
7897
|
+
interface NormalizeRawPayload extends TypedFunctionPayload<[
|
|
7898
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7899
|
+
string[],
|
|
7900
|
+
string[],
|
|
7901
|
+
string[],
|
|
7902
|
+
string,
|
|
7903
|
+
string[],
|
|
7904
|
+
string[]
|
|
7905
|
+
]> {
|
|
7906
|
+
arguments_decoded: [
|
|
7907
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7908
|
+
string[],
|
|
7909
|
+
string[],
|
|
7910
|
+
string[],
|
|
7911
|
+
string,
|
|
7912
|
+
string[],
|
|
7913
|
+
string[]
|
|
7914
|
+
];
|
|
7915
|
+
type_arguments: [];
|
|
7916
|
+
}
|
|
7917
|
+
interface RegisterRawPayload extends TypedFunctionPayload<[
|
|
7918
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7919
|
+
string,
|
|
7920
|
+
string[],
|
|
7921
|
+
string[]
|
|
7922
|
+
]> {
|
|
7923
|
+
arguments_decoded: [
|
|
7924
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7925
|
+
string,
|
|
7926
|
+
string[],
|
|
7927
|
+
string[]
|
|
7928
|
+
];
|
|
7929
|
+
type_arguments: [];
|
|
7930
|
+
}
|
|
7931
|
+
interface RolloverPendingBalancePayload extends TypedFunctionPayload<[object$.Object<fungible_asset.Metadata>]> {
|
|
7932
|
+
arguments_decoded: [object$.Object<fungible_asset.Metadata>];
|
|
7933
|
+
type_arguments: [];
|
|
7934
|
+
}
|
|
7935
|
+
interface RolloverPendingBalanceAndPausePayload extends TypedFunctionPayload<[object$.Object<fungible_asset.Metadata>]> {
|
|
7936
|
+
arguments_decoded: [object$.Object<fungible_asset.Metadata>];
|
|
7937
|
+
type_arguments: [];
|
|
7938
|
+
}
|
|
7939
|
+
interface RotateEncryptionKeyRawPayload extends TypedFunctionPayload<[
|
|
7940
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7941
|
+
string,
|
|
7942
|
+
boolean,
|
|
7943
|
+
string[],
|
|
7944
|
+
string[],
|
|
7945
|
+
string[]
|
|
7946
|
+
]> {
|
|
7947
|
+
arguments_decoded: [
|
|
7948
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7949
|
+
string,
|
|
7950
|
+
boolean,
|
|
7951
|
+
string[],
|
|
7952
|
+
string[],
|
|
7953
|
+
string[]
|
|
7954
|
+
];
|
|
7955
|
+
type_arguments: [];
|
|
7956
|
+
}
|
|
7957
|
+
interface SetIncomingTransfersPausedPayload extends TypedFunctionPayload<[
|
|
7958
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7959
|
+
boolean
|
|
7960
|
+
]> {
|
|
7961
|
+
arguments_decoded: [object$.Object<fungible_asset.Metadata>, boolean];
|
|
7962
|
+
type_arguments: [];
|
|
7963
|
+
}
|
|
7964
|
+
interface WithdrawToRawPayload extends TypedFunctionPayload<[
|
|
7965
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7966
|
+
MoveAddressType,
|
|
7967
|
+
bigint,
|
|
7968
|
+
string[],
|
|
7969
|
+
string[],
|
|
7970
|
+
string[],
|
|
7971
|
+
string,
|
|
7972
|
+
string[],
|
|
7973
|
+
string[]
|
|
7974
|
+
]> {
|
|
7975
|
+
arguments_decoded: [
|
|
7976
|
+
object$.Object<fungible_asset.Metadata>,
|
|
7977
|
+
MoveAddressType,
|
|
7978
|
+
bigint,
|
|
7979
|
+
string[],
|
|
7980
|
+
string[],
|
|
7981
|
+
string[],
|
|
7982
|
+
string,
|
|
7983
|
+
string[],
|
|
7984
|
+
string[]
|
|
7985
|
+
];
|
|
7986
|
+
type_arguments: [];
|
|
7987
|
+
}
|
|
7988
|
+
}
|
|
7358
7989
|
export declare class account_abstraction extends AptosBaseProcessor {
|
|
7359
7990
|
constructor(options: AptosBindOptions);
|
|
7360
7991
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
@@ -7491,6 +8122,32 @@ export declare namespace account_abstraction {
|
|
|
7491
8122
|
type_arguments: [];
|
|
7492
8123
|
}
|
|
7493
8124
|
}
|
|
8125
|
+
export declare namespace confidential_amount {
|
|
8126
|
+
interface Amount {
|
|
8127
|
+
P: ristretto255.RistrettoPoint[];
|
|
8128
|
+
R_sender: ristretto255.RistrettoPoint[];
|
|
8129
|
+
R_recip: ristretto255.RistrettoPoint[];
|
|
8130
|
+
R_eff_aud: ristretto255.RistrettoPoint[];
|
|
8131
|
+
R_volun_auds: ristretto255.RistrettoPoint[][];
|
|
8132
|
+
}
|
|
8133
|
+
namespace Amount {
|
|
8134
|
+
const TYPE_QNAME = "0x1::confidential_amount::Amount";
|
|
8135
|
+
function type(): TypeDescriptor<Amount>;
|
|
8136
|
+
}
|
|
8137
|
+
interface CompressedAmount {
|
|
8138
|
+
compressed_P: ristretto255.CompressedRistretto[];
|
|
8139
|
+
compressed_R_sender: ristretto255.CompressedRistretto[];
|
|
8140
|
+
compressed_R_recip: ristretto255.CompressedRistretto[];
|
|
8141
|
+
compressed_R_eff_aud: ristretto255.CompressedRistretto[];
|
|
8142
|
+
compressed_R_volun_auds: ristretto255.CompressedRistretto[][];
|
|
8143
|
+
}
|
|
8144
|
+
namespace CompressedAmount {
|
|
8145
|
+
const TYPE_QNAME = "0x1::confidential_amount::CompressedAmount";
|
|
8146
|
+
function type(): TypeDescriptor<CompressedAmount>;
|
|
8147
|
+
}
|
|
8148
|
+
namespace entry { }
|
|
8149
|
+
namespace view { }
|
|
8150
|
+
}
|
|
7494
8151
|
export declare class governance_proposal extends AptosBaseProcessor {
|
|
7495
8152
|
constructor(options: AptosBindOptions);
|
|
7496
8153
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
@@ -7638,6 +8295,39 @@ export declare namespace transaction_context {
|
|
|
7638
8295
|
namespace entry { }
|
|
7639
8296
|
namespace view { }
|
|
7640
8297
|
}
|
|
8298
|
+
export declare namespace confidential_balance {
|
|
8299
|
+
interface Available {
|
|
8300
|
+
dummy_field: boolean;
|
|
8301
|
+
}
|
|
8302
|
+
namespace Available {
|
|
8303
|
+
const TYPE_QNAME = "0x1::confidential_balance::Available";
|
|
8304
|
+
function type(): TypeDescriptor<Available>;
|
|
8305
|
+
}
|
|
8306
|
+
interface Balance<T0> {
|
|
8307
|
+
}
|
|
8308
|
+
namespace Balance {
|
|
8309
|
+
const TYPE_QNAME = "0x1::confidential_balance::Balance";
|
|
8310
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Balance<T0>>;
|
|
8311
|
+
}
|
|
8312
|
+
interface CompressedBalance<T0> {
|
|
8313
|
+
}
|
|
8314
|
+
namespace CompressedBalance {
|
|
8315
|
+
const TYPE_QNAME = "0x1::confidential_balance::CompressedBalance";
|
|
8316
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CompressedBalance<T0>>;
|
|
8317
|
+
}
|
|
8318
|
+
interface Pending {
|
|
8319
|
+
dummy_field: boolean;
|
|
8320
|
+
}
|
|
8321
|
+
namespace Pending {
|
|
8322
|
+
const TYPE_QNAME = "0x1::confidential_balance::Pending";
|
|
8323
|
+
function type(): TypeDescriptor<Pending>;
|
|
8324
|
+
}
|
|
8325
|
+
namespace entry { }
|
|
8326
|
+
namespace view {
|
|
8327
|
+
function getNumAvailableChunks(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
8328
|
+
function getNumPendingChunks(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
8329
|
+
}
|
|
8330
|
+
}
|
|
7641
8331
|
export declare namespace jwk_consensus_config {
|
|
7642
8332
|
interface ConfigOff {
|
|
7643
8333
|
dummy_field: boolean;
|
|
@@ -7698,6 +8388,23 @@ export declare namespace ristretto255_elgamal {
|
|
|
7698
8388
|
namespace entry { }
|
|
7699
8389
|
namespace view { }
|
|
7700
8390
|
}
|
|
8391
|
+
export declare namespace sigma_protocol_proof {
|
|
8392
|
+
interface Proof {
|
|
8393
|
+
comm_A: ristretto255.RistrettoPoint[];
|
|
8394
|
+
compressed_comm_A: ristretto255.CompressedRistretto[];
|
|
8395
|
+
resp_sigma: ristretto255.Scalar[];
|
|
8396
|
+
}
|
|
8397
|
+
namespace Proof {
|
|
8398
|
+
const TYPE_QNAME = "0x1::sigma_protocol_proof::Proof";
|
|
8399
|
+
function type(): TypeDescriptor<Proof>;
|
|
8400
|
+
}
|
|
8401
|
+
namespace entry { }
|
|
8402
|
+
namespace view { }
|
|
8403
|
+
}
|
|
8404
|
+
export declare namespace sigma_protocol_utils {
|
|
8405
|
+
namespace entry { }
|
|
8406
|
+
namespace view { }
|
|
8407
|
+
}
|
|
7701
8408
|
export declare namespace reconfiguration_state {
|
|
7702
8409
|
interface State {
|
|
7703
8410
|
variant: copyable_any.Any;
|
|
@@ -7955,6 +8662,17 @@ export declare namespace primary_fungible_store {
|
|
|
7955
8662
|
type_arguments: [string];
|
|
7956
8663
|
}
|
|
7957
8664
|
}
|
|
8665
|
+
export declare namespace sigma_protocol_witness {
|
|
8666
|
+
interface Witness {
|
|
8667
|
+
w: ristretto255.Scalar[];
|
|
8668
|
+
}
|
|
8669
|
+
namespace Witness {
|
|
8670
|
+
const TYPE_QNAME = "0x1::sigma_protocol_witness::Witness";
|
|
8671
|
+
function type(): TypeDescriptor<Witness>;
|
|
8672
|
+
}
|
|
8673
|
+
namespace entry { }
|
|
8674
|
+
namespace view { }
|
|
8675
|
+
}
|
|
7958
8676
|
export declare namespace transaction_validation {
|
|
7959
8677
|
interface GasPermission {
|
|
7960
8678
|
dummy_field: boolean;
|
|
@@ -8007,6 +8725,51 @@ export declare namespace permissioned_delegation {
|
|
|
8007
8725
|
namespace entry { }
|
|
8008
8726
|
namespace view { }
|
|
8009
8727
|
}
|
|
8728
|
+
export declare namespace sigma_protocol_transfer {
|
|
8729
|
+
interface Transfer {
|
|
8730
|
+
dummy_field: boolean;
|
|
8731
|
+
}
|
|
8732
|
+
namespace Transfer {
|
|
8733
|
+
const TYPE_QNAME = "0x1::sigma_protocol_transfer::Transfer";
|
|
8734
|
+
function type(): TypeDescriptor<Transfer>;
|
|
8735
|
+
}
|
|
8736
|
+
interface TransferSession {
|
|
8737
|
+
sender: MoveAddressType;
|
|
8738
|
+
recipient: MoveAddressType;
|
|
8739
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
8740
|
+
num_avail_chunks: bigint;
|
|
8741
|
+
num_transfer_chunks: bigint;
|
|
8742
|
+
has_effective_auditor: boolean;
|
|
8743
|
+
num_volun_auditors: bigint;
|
|
8744
|
+
}
|
|
8745
|
+
namespace TransferSession {
|
|
8746
|
+
const TYPE_QNAME = "0x1::sigma_protocol_transfer::TransferSession";
|
|
8747
|
+
function type(): TypeDescriptor<TransferSession>;
|
|
8748
|
+
}
|
|
8749
|
+
namespace entry { }
|
|
8750
|
+
namespace view { }
|
|
8751
|
+
}
|
|
8752
|
+
export declare namespace sigma_protocol_withdraw {
|
|
8753
|
+
interface WithdrawSession {
|
|
8754
|
+
sender: MoveAddressType;
|
|
8755
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
8756
|
+
num_chunks: bigint;
|
|
8757
|
+
has_auditor: boolean;
|
|
8758
|
+
}
|
|
8759
|
+
namespace WithdrawSession {
|
|
8760
|
+
const TYPE_QNAME = "0x1::sigma_protocol_withdraw::WithdrawSession";
|
|
8761
|
+
function type(): TypeDescriptor<WithdrawSession>;
|
|
8762
|
+
}
|
|
8763
|
+
interface Withdrawal {
|
|
8764
|
+
dummy_field: boolean;
|
|
8765
|
+
}
|
|
8766
|
+
namespace Withdrawal {
|
|
8767
|
+
const TYPE_QNAME = "0x1::sigma_protocol_withdraw::Withdrawal";
|
|
8768
|
+
function type(): TypeDescriptor<Withdrawal>;
|
|
8769
|
+
}
|
|
8770
|
+
namespace entry { }
|
|
8771
|
+
namespace view { }
|
|
8772
|
+
}
|
|
8010
8773
|
export declare namespace storage_slots_allocator {
|
|
8011
8774
|
interface Link<T0> {
|
|
8012
8775
|
}
|
|
@@ -8070,6 +8833,19 @@ export declare namespace reconfiguration_with_dkg {
|
|
|
8070
8833
|
namespace entry { }
|
|
8071
8834
|
namespace view { }
|
|
8072
8835
|
}
|
|
8836
|
+
export declare namespace sigma_protocol_statement {
|
|
8837
|
+
interface Statement<T0> {
|
|
8838
|
+
points: ristretto255.RistrettoPoint[];
|
|
8839
|
+
compressed_points: ristretto255.CompressedRistretto[];
|
|
8840
|
+
scalars: ristretto255.Scalar[];
|
|
8841
|
+
}
|
|
8842
|
+
namespace Statement {
|
|
8843
|
+
const TYPE_QNAME = "0x1::sigma_protocol_statement::Statement";
|
|
8844
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Statement<T0>>;
|
|
8845
|
+
}
|
|
8846
|
+
namespace entry { }
|
|
8847
|
+
namespace view { }
|
|
8848
|
+
}
|
|
8073
8849
|
export declare namespace solana_derivable_account {
|
|
8074
8850
|
interface SIWSAbstractSignature {
|
|
8075
8851
|
}
|
|
@@ -8093,6 +8869,12 @@ export declare namespace validator_consensus_info {
|
|
|
8093
8869
|
namespace entry { }
|
|
8094
8870
|
namespace view { }
|
|
8095
8871
|
}
|
|
8872
|
+
export declare namespace confidential_range_proofs {
|
|
8873
|
+
namespace entry { }
|
|
8874
|
+
namespace view {
|
|
8875
|
+
function getBulletproofsDst(client: Aptos, version?: bigint): Promise<[string]>;
|
|
8876
|
+
}
|
|
8877
|
+
}
|
|
8096
8878
|
export declare namespace ristretto255_bulletproofs {
|
|
8097
8879
|
interface RangeProof {
|
|
8098
8880
|
bytes: string;
|
|
@@ -8122,6 +8904,28 @@ export declare namespace ethereum_derivable_account {
|
|
|
8122
8904
|
namespace entry { }
|
|
8123
8905
|
namespace view { }
|
|
8124
8906
|
}
|
|
8907
|
+
export declare namespace sigma_protocol_fiat_shamir {
|
|
8908
|
+
interface DomainSeparator {
|
|
8909
|
+
}
|
|
8910
|
+
namespace DomainSeparator {
|
|
8911
|
+
const TYPE_QNAME = "0x1::sigma_protocol_fiat_shamir::DomainSeparator";
|
|
8912
|
+
function type(): TypeDescriptor<DomainSeparator>;
|
|
8913
|
+
}
|
|
8914
|
+
interface FiatShamirInputs {
|
|
8915
|
+
dst: sigma_protocol_fiat_shamir.DomainSeparator;
|
|
8916
|
+
type_name: string;
|
|
8917
|
+
k: bigint;
|
|
8918
|
+
stmt_X: ristretto255.CompressedRistretto[];
|
|
8919
|
+
stmt_x: ristretto255.Scalar[];
|
|
8920
|
+
proof_A: ristretto255.CompressedRistretto[];
|
|
8921
|
+
}
|
|
8922
|
+
namespace FiatShamirInputs {
|
|
8923
|
+
const TYPE_QNAME = "0x1::sigma_protocol_fiat_shamir::FiatShamirInputs";
|
|
8924
|
+
function type(): TypeDescriptor<FiatShamirInputs>;
|
|
8925
|
+
}
|
|
8926
|
+
namespace entry { }
|
|
8927
|
+
namespace view { }
|
|
8928
|
+
}
|
|
8125
8929
|
export declare class dispatchable_fungible_asset extends AptosBaseProcessor {
|
|
8126
8930
|
constructor(options: AptosBindOptions);
|
|
8127
8931
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
|
@@ -8184,9 +8988,102 @@ export declare namespace dispatchable_fungible_asset {
|
|
|
8184
8988
|
type_arguments: [string];
|
|
8185
8989
|
}
|
|
8186
8990
|
}
|
|
8991
|
+
export declare namespace sigma_protocol_homomorphism {
|
|
8992
|
+
interface Homomorphism<T0> {
|
|
8993
|
+
_0: unknown;
|
|
8994
|
+
}
|
|
8995
|
+
namespace Homomorphism {
|
|
8996
|
+
const TYPE_QNAME = "0x1::sigma_protocol_homomorphism::Homomorphism";
|
|
8997
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Homomorphism<T0>>;
|
|
8998
|
+
}
|
|
8999
|
+
interface TransformationFunction<T0> {
|
|
9000
|
+
_0: unknown;
|
|
9001
|
+
}
|
|
9002
|
+
namespace TransformationFunction {
|
|
9003
|
+
const TYPE_QNAME = "0x1::sigma_protocol_homomorphism::TransformationFunction";
|
|
9004
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransformationFunction<T0>>;
|
|
9005
|
+
}
|
|
9006
|
+
namespace entry { }
|
|
9007
|
+
namespace view { }
|
|
9008
|
+
}
|
|
9009
|
+
export declare namespace sigma_protocol_key_rotation {
|
|
9010
|
+
interface KeyRotation {
|
|
9011
|
+
dummy_field: boolean;
|
|
9012
|
+
}
|
|
9013
|
+
namespace KeyRotation {
|
|
9014
|
+
const TYPE_QNAME = "0x1::sigma_protocol_key_rotation::KeyRotation";
|
|
9015
|
+
function type(): TypeDescriptor<KeyRotation>;
|
|
9016
|
+
}
|
|
9017
|
+
interface KeyRotationSession {
|
|
9018
|
+
sender: MoveAddressType;
|
|
9019
|
+
token_type: object$.Object<fungible_asset.Metadata>;
|
|
9020
|
+
num_chunks: bigint;
|
|
9021
|
+
}
|
|
9022
|
+
namespace KeyRotationSession {
|
|
9023
|
+
const TYPE_QNAME = "0x1::sigma_protocol_key_rotation::KeyRotationSession";
|
|
9024
|
+
function type(): TypeDescriptor<KeyRotationSession>;
|
|
9025
|
+
}
|
|
9026
|
+
namespace entry { }
|
|
9027
|
+
namespace view { }
|
|
9028
|
+
}
|
|
9029
|
+
export declare namespace sigma_protocol_registration {
|
|
9030
|
+
interface Registration {
|
|
9031
|
+
dummy_field: boolean;
|
|
9032
|
+
}
|
|
9033
|
+
namespace Registration {
|
|
9034
|
+
const TYPE_QNAME = "0x1::sigma_protocol_registration::Registration";
|
|
9035
|
+
function type(): TypeDescriptor<Registration>;
|
|
9036
|
+
}
|
|
9037
|
+
interface RegistrationSession {
|
|
9038
|
+
sender: MoveAddressType;
|
|
9039
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
9040
|
+
}
|
|
9041
|
+
namespace RegistrationSession {
|
|
9042
|
+
const TYPE_QNAME = "0x1::sigma_protocol_registration::RegistrationSession";
|
|
9043
|
+
function type(): TypeDescriptor<RegistrationSession>;
|
|
9044
|
+
}
|
|
9045
|
+
namespace entry { }
|
|
9046
|
+
namespace view { }
|
|
9047
|
+
}
|
|
9048
|
+
export declare namespace sigma_protocol_representation {
|
|
9049
|
+
interface Representation {
|
|
9050
|
+
point_idxs: bigint[];
|
|
9051
|
+
scalars: ristretto255.Scalar[];
|
|
9052
|
+
}
|
|
9053
|
+
namespace Representation {
|
|
9054
|
+
const TYPE_QNAME = "0x1::sigma_protocol_representation::Representation";
|
|
9055
|
+
function type(): TypeDescriptor<Representation>;
|
|
9056
|
+
}
|
|
9057
|
+
namespace entry { }
|
|
9058
|
+
namespace view { }
|
|
9059
|
+
}
|
|
9060
|
+
export declare namespace sigma_protocol_statement_builder {
|
|
9061
|
+
interface StatementBuilder<T0> {
|
|
9062
|
+
points: ristretto255.RistrettoPoint[];
|
|
9063
|
+
compressed_points: ristretto255.CompressedRistretto[];
|
|
9064
|
+
scalars: ristretto255.Scalar[];
|
|
9065
|
+
}
|
|
9066
|
+
namespace StatementBuilder {
|
|
9067
|
+
const TYPE_QNAME = "0x1::sigma_protocol_statement_builder::StatementBuilder";
|
|
9068
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<StatementBuilder<T0>>;
|
|
9069
|
+
}
|
|
9070
|
+
namespace entry { }
|
|
9071
|
+
namespace view { }
|
|
9072
|
+
}
|
|
8187
9073
|
export declare namespace common_account_abstractions_utils {
|
|
8188
9074
|
namespace entry { }
|
|
8189
9075
|
namespace view { }
|
|
8190
9076
|
}
|
|
9077
|
+
export declare namespace sigma_protocol_representation_vec {
|
|
9078
|
+
interface RepresentationVec {
|
|
9079
|
+
v: sigma_protocol_representation.Representation[];
|
|
9080
|
+
}
|
|
9081
|
+
namespace RepresentationVec {
|
|
9082
|
+
const TYPE_QNAME = "0x1::sigma_protocol_representation_vec::RepresentationVec";
|
|
9083
|
+
function type(): TypeDescriptor<RepresentationVec>;
|
|
9084
|
+
}
|
|
9085
|
+
namespace entry { }
|
|
9086
|
+
namespace view { }
|
|
9087
|
+
}
|
|
8191
9088
|
export declare function loadAllTypes(coder: MoveCoder): void;
|
|
8192
9089
|
//# sourceMappingURL=0x1.d.ts.map
|