@typemove/aptos 1.13.4 → 1.13.5-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/dist/esm/account-resource-client.test.js.map +1 -1
- package/dist/esm/aptos-chain-adapter.d.ts +3 -0
- package/dist/esm/aptos-chain-adapter.d.ts.map +1 -1
- package/dist/esm/aptos-chain-adapter.js +5 -0
- package/dist/esm/aptos-chain-adapter.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +727 -0
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +1164 -99
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.js +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x4.d.ts +4 -4
- package/dist/esm/builtin/0x4.d.ts.map +1 -1
- package/dist/esm/builtin/0x4.js +16 -16
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/dist/esm/client.test.js.map +1 -1
- package/dist/esm/codegen/run.js +2 -1
- package/dist/esm/codegen/run.js.map +1 -1
- package/package.json +3 -3
- package/src/abis/0x1.json +8161 -2996
- package/src/abis/0x3.json +140 -75
- package/src/abis/0x4.json +75 -52
- package/src/aptos-chain-adapter.ts +6 -0
- package/src/builtin/0x1.ts +1901 -68
- package/src/builtin/0x3.ts +1 -1
- package/src/builtin/0x4.ts +18 -19
- package/src/codegen/run.ts +5 -1
|
@@ -1160,6 +1160,19 @@ export declare namespace stake {
|
|
|
1160
1160
|
const TYPE_QNAME = "0x1::stake::ValidatorSet";
|
|
1161
1161
|
function type(): TypeDescriptor<ValidatorSet>;
|
|
1162
1162
|
}
|
|
1163
|
+
interface ValidatorSetLivenessFallback {
|
|
1164
|
+
minimum_stake: bigint;
|
|
1165
|
+
emergency_validator_count: bigint;
|
|
1166
|
+
total_emergency_voting_power: bigint;
|
|
1167
|
+
}
|
|
1168
|
+
namespace ValidatorSetLivenessFallback {
|
|
1169
|
+
const TYPE_QNAME = "0x1::stake::ValidatorSetLivenessFallback";
|
|
1170
|
+
function type(): TypeDescriptor<ValidatorSetLivenessFallback>;
|
|
1171
|
+
}
|
|
1172
|
+
type ValidatorSetLivenessFallbackInstance = TypedEventInstance<ValidatorSetLivenessFallback> & {
|
|
1173
|
+
data_decoded: ValidatorSetLivenessFallback;
|
|
1174
|
+
type_arguments: [];
|
|
1175
|
+
};
|
|
1163
1176
|
interface WithdrawStake {
|
|
1164
1177
|
pool_address: MoveAddressType;
|
|
1165
1178
|
amount_withdrawn: bigint;
|
|
@@ -2890,6 +2903,49 @@ export declare namespace capability {
|
|
|
2890
2903
|
namespace entry { }
|
|
2891
2904
|
namespace view { }
|
|
2892
2905
|
}
|
|
2906
|
+
export declare namespace chunky_dkg {
|
|
2907
|
+
interface ChunkyDKGSessionMetadata {
|
|
2908
|
+
dealer_epoch: bigint;
|
|
2909
|
+
chunky_dkg_config: chunky_dkg_config.ChunkyDKGConfig;
|
|
2910
|
+
dealer_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
|
|
2911
|
+
target_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
|
|
2912
|
+
}
|
|
2913
|
+
namespace ChunkyDKGSessionMetadata {
|
|
2914
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGSessionMetadata";
|
|
2915
|
+
function type(): TypeDescriptor<ChunkyDKGSessionMetadata>;
|
|
2916
|
+
}
|
|
2917
|
+
interface ChunkyDKGSessionState {
|
|
2918
|
+
metadata: chunky_dkg.ChunkyDKGSessionMetadata;
|
|
2919
|
+
start_time_us: bigint;
|
|
2920
|
+
aggregated_subtranscript: string;
|
|
2921
|
+
}
|
|
2922
|
+
namespace ChunkyDKGSessionState {
|
|
2923
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGSessionState";
|
|
2924
|
+
function type(): TypeDescriptor<ChunkyDKGSessionState>;
|
|
2925
|
+
}
|
|
2926
|
+
interface ChunkyDKGStartEvent {
|
|
2927
|
+
session_metadata: chunky_dkg.ChunkyDKGSessionMetadata;
|
|
2928
|
+
start_time_us: bigint;
|
|
2929
|
+
}
|
|
2930
|
+
namespace ChunkyDKGStartEvent {
|
|
2931
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGStartEvent";
|
|
2932
|
+
function type(): TypeDescriptor<ChunkyDKGStartEvent>;
|
|
2933
|
+
}
|
|
2934
|
+
type ChunkyDKGStartEventInstance = TypedEventInstance<ChunkyDKGStartEvent> & {
|
|
2935
|
+
data_decoded: ChunkyDKGStartEvent;
|
|
2936
|
+
type_arguments: [];
|
|
2937
|
+
};
|
|
2938
|
+
interface ChunkyDKGState {
|
|
2939
|
+
last_completed: option.Option<chunky_dkg.ChunkyDKGSessionState>;
|
|
2940
|
+
in_progress: option.Option<chunky_dkg.ChunkyDKGSessionState>;
|
|
2941
|
+
}
|
|
2942
|
+
namespace ChunkyDKGState {
|
|
2943
|
+
const TYPE_QNAME = "0x1::chunky_dkg::ChunkyDKGState";
|
|
2944
|
+
function type(): TypeDescriptor<ChunkyDKGState>;
|
|
2945
|
+
}
|
|
2946
|
+
namespace entry { }
|
|
2947
|
+
namespace view { }
|
|
2948
|
+
}
|
|
2893
2949
|
export declare namespace comparator {
|
|
2894
2950
|
interface Result {
|
|
2895
2951
|
inner: number;
|
|
@@ -2901,6 +2957,27 @@ export declare namespace comparator {
|
|
|
2901
2957
|
namespace entry { }
|
|
2902
2958
|
namespace view { }
|
|
2903
2959
|
}
|
|
2960
|
+
export declare namespace decryption {
|
|
2961
|
+
interface PerBlockDecryptionKey {
|
|
2962
|
+
epoch: bigint;
|
|
2963
|
+
round: bigint;
|
|
2964
|
+
decryption_key: option.Option<string>;
|
|
2965
|
+
}
|
|
2966
|
+
namespace PerBlockDecryptionKey {
|
|
2967
|
+
const TYPE_QNAME = "0x1::decryption::PerBlockDecryptionKey";
|
|
2968
|
+
function type(): TypeDescriptor<PerBlockDecryptionKey>;
|
|
2969
|
+
}
|
|
2970
|
+
interface PerEpochEncryptionKey {
|
|
2971
|
+
epoch: bigint;
|
|
2972
|
+
encryption_key: option.Option<string>;
|
|
2973
|
+
}
|
|
2974
|
+
namespace PerEpochEncryptionKey {
|
|
2975
|
+
const TYPE_QNAME = "0x1::decryption::PerEpochEncryptionKey";
|
|
2976
|
+
function type(): TypeDescriptor<PerEpochEncryptionKey>;
|
|
2977
|
+
}
|
|
2978
|
+
namespace entry { }
|
|
2979
|
+
namespace view { }
|
|
2980
|
+
}
|
|
2904
2981
|
export declare namespace math_fixed {
|
|
2905
2982
|
namespace entry { }
|
|
2906
2983
|
namespace view { }
|
|
@@ -3918,6 +3995,9 @@ export declare namespace fungible_asset {
|
|
|
3918
3995
|
typeArguments: [MoveStructId];
|
|
3919
3996
|
functionArguments: [object$.Object<T0>];
|
|
3920
3997
|
}, version?: bigint): Promise<[fungible_asset.Metadata]>;
|
|
3998
|
+
function isAssetTypeDispatchable(client: Aptos, request: {
|
|
3999
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
4000
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3921
4001
|
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
|
3922
4002
|
typeArguments: [MoveStructId];
|
|
3923
4003
|
functionArguments: [object$.Object<T0>, bigint];
|
|
@@ -3947,6 +4027,10 @@ export declare namespace fungible_asset {
|
|
|
3947
4027
|
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
|
3948
4028
|
}
|
|
3949
4029
|
}
|
|
4030
|
+
export declare namespace sigma_protocol {
|
|
4031
|
+
namespace entry { }
|
|
4032
|
+
namespace view { }
|
|
4033
|
+
}
|
|
3950
4034
|
export declare namespace staking_config {
|
|
3951
4035
|
interface StakingConfig {
|
|
3952
4036
|
minimum_stake: bigint;
|
|
@@ -6016,6 +6100,9 @@ export declare namespace staking_contract {
|
|
|
6016
6100
|
function lastRecordedPrincipal(client: Aptos, request: {
|
|
6017
6101
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
6018
6102
|
}, version?: bigint): Promise<[bigint]>;
|
|
6103
|
+
function pendingAttributionSnapshot(client: Aptos, request: {
|
|
6104
|
+
functionArguments: [MoveAddressType, MoveAddressType, MoveAddressType];
|
|
6105
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
6019
6106
|
function pendingDistributionCounts(client: Aptos, request: {
|
|
6020
6107
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
6021
6108
|
}, version?: bigint): Promise<[bigint]>;
|
|
@@ -6037,6 +6124,32 @@ export declare namespace system_addresses {
|
|
|
6037
6124
|
namespace entry { }
|
|
6038
6125
|
namespace view { }
|
|
6039
6126
|
}
|
|
6127
|
+
export declare namespace chunky_dkg_config {
|
|
6128
|
+
interface ConfigOff {
|
|
6129
|
+
dummy_field: boolean;
|
|
6130
|
+
}
|
|
6131
|
+
namespace ConfigOff {
|
|
6132
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ConfigOff";
|
|
6133
|
+
function type(): TypeDescriptor<ConfigOff>;
|
|
6134
|
+
}
|
|
6135
|
+
interface ConfigV1 {
|
|
6136
|
+
secrecy_threshold: fixed_point64.FixedPoint64;
|
|
6137
|
+
reconstruction_threshold: fixed_point64.FixedPoint64;
|
|
6138
|
+
}
|
|
6139
|
+
namespace ConfigV1 {
|
|
6140
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ConfigV1";
|
|
6141
|
+
function type(): TypeDescriptor<ConfigV1>;
|
|
6142
|
+
}
|
|
6143
|
+
interface ChunkyDKGConfig {
|
|
6144
|
+
variant: copyable_any.Any;
|
|
6145
|
+
}
|
|
6146
|
+
namespace ChunkyDKGConfig {
|
|
6147
|
+
const TYPE_QNAME = "0x1::chunky_dkg_config::ChunkyDKGConfig";
|
|
6148
|
+
function type(): TypeDescriptor<ChunkyDKGConfig>;
|
|
6149
|
+
}
|
|
6150
|
+
namespace entry { }
|
|
6151
|
+
namespace view { }
|
|
6152
|
+
}
|
|
6040
6153
|
export declare namespace federated_keyless {
|
|
6041
6154
|
interface PublicKey {
|
|
6042
6155
|
jwk_address: MoveAddressType;
|
|
@@ -6107,6 +6220,354 @@ export declare namespace aggregator_factory {
|
|
|
6107
6220
|
namespace entry { }
|
|
6108
6221
|
namespace view { }
|
|
6109
6222
|
}
|
|
6223
|
+
export declare namespace confidential_asset {
|
|
6224
|
+
interface AllowListingChanged {
|
|
6225
|
+
}
|
|
6226
|
+
namespace AllowListingChanged {
|
|
6227
|
+
const TYPE_QNAME = "0x1::confidential_asset::AllowListingChanged";
|
|
6228
|
+
function type(): TypeDescriptor<AllowListingChanged>;
|
|
6229
|
+
}
|
|
6230
|
+
type AllowListingChangedInstance = TypedEventInstance<AllowListingChanged> & {
|
|
6231
|
+
data_decoded: AllowListingChanged;
|
|
6232
|
+
type_arguments: [];
|
|
6233
|
+
};
|
|
6234
|
+
interface AssetConfig {
|
|
6235
|
+
}
|
|
6236
|
+
namespace AssetConfig {
|
|
6237
|
+
const TYPE_QNAME = "0x1::confidential_asset::AssetConfig";
|
|
6238
|
+
function type(): TypeDescriptor<AssetConfig>;
|
|
6239
|
+
}
|
|
6240
|
+
interface AssetSpecificAuditorChanged {
|
|
6241
|
+
}
|
|
6242
|
+
namespace AssetSpecificAuditorChanged {
|
|
6243
|
+
const TYPE_QNAME = "0x1::confidential_asset::AssetSpecificAuditorChanged";
|
|
6244
|
+
function type(): TypeDescriptor<AssetSpecificAuditorChanged>;
|
|
6245
|
+
}
|
|
6246
|
+
type AssetSpecificAuditorChangedInstance = TypedEventInstance<AssetSpecificAuditorChanged> & {
|
|
6247
|
+
data_decoded: AssetSpecificAuditorChanged;
|
|
6248
|
+
type_arguments: [];
|
|
6249
|
+
};
|
|
6250
|
+
interface AuditorConfig {
|
|
6251
|
+
}
|
|
6252
|
+
namespace AuditorConfig {
|
|
6253
|
+
const TYPE_QNAME = "0x1::confidential_asset::AuditorConfig";
|
|
6254
|
+
function type(): TypeDescriptor<AuditorConfig>;
|
|
6255
|
+
}
|
|
6256
|
+
interface ConfidentialStore {
|
|
6257
|
+
}
|
|
6258
|
+
namespace ConfidentialStore {
|
|
6259
|
+
const TYPE_QNAME = "0x1::confidential_asset::ConfidentialStore";
|
|
6260
|
+
function type(): TypeDescriptor<ConfidentialStore>;
|
|
6261
|
+
}
|
|
6262
|
+
interface ConfidentialityForAssetTypeChanged {
|
|
6263
|
+
}
|
|
6264
|
+
namespace ConfidentialityForAssetTypeChanged {
|
|
6265
|
+
const TYPE_QNAME = "0x1::confidential_asset::ConfidentialityForAssetTypeChanged";
|
|
6266
|
+
function type(): TypeDescriptor<ConfidentialityForAssetTypeChanged>;
|
|
6267
|
+
}
|
|
6268
|
+
type ConfidentialityForAssetTypeChangedInstance = TypedEventInstance<ConfidentialityForAssetTypeChanged> & {
|
|
6269
|
+
data_decoded: ConfidentialityForAssetTypeChanged;
|
|
6270
|
+
type_arguments: [];
|
|
6271
|
+
};
|
|
6272
|
+
interface Deposited {
|
|
6273
|
+
}
|
|
6274
|
+
namespace Deposited {
|
|
6275
|
+
const TYPE_QNAME = "0x1::confidential_asset::Deposited";
|
|
6276
|
+
function type(): TypeDescriptor<Deposited>;
|
|
6277
|
+
}
|
|
6278
|
+
type DepositedInstance = TypedEventInstance<Deposited> & {
|
|
6279
|
+
data_decoded: Deposited;
|
|
6280
|
+
type_arguments: [];
|
|
6281
|
+
};
|
|
6282
|
+
interface EffectiveAuditorConfig {
|
|
6283
|
+
}
|
|
6284
|
+
namespace EffectiveAuditorConfig {
|
|
6285
|
+
const TYPE_QNAME = "0x1::confidential_asset::EffectiveAuditorConfig";
|
|
6286
|
+
function type(): TypeDescriptor<EffectiveAuditorConfig>;
|
|
6287
|
+
}
|
|
6288
|
+
interface EffectiveAuditorHint {
|
|
6289
|
+
}
|
|
6290
|
+
namespace EffectiveAuditorHint {
|
|
6291
|
+
const TYPE_QNAME = "0x1::confidential_asset::EffectiveAuditorHint";
|
|
6292
|
+
function type(): TypeDescriptor<EffectiveAuditorHint>;
|
|
6293
|
+
}
|
|
6294
|
+
interface EmergencyPauseChanged {
|
|
6295
|
+
}
|
|
6296
|
+
namespace EmergencyPauseChanged {
|
|
6297
|
+
const TYPE_QNAME = "0x1::confidential_asset::EmergencyPauseChanged";
|
|
6298
|
+
function type(): TypeDescriptor<EmergencyPauseChanged>;
|
|
6299
|
+
}
|
|
6300
|
+
type EmergencyPauseChangedInstance = TypedEventInstance<EmergencyPauseChanged> & {
|
|
6301
|
+
data_decoded: EmergencyPauseChanged;
|
|
6302
|
+
type_arguments: [];
|
|
6303
|
+
};
|
|
6304
|
+
interface GlobalAuditorChanged {
|
|
6305
|
+
}
|
|
6306
|
+
namespace GlobalAuditorChanged {
|
|
6307
|
+
const TYPE_QNAME = "0x1::confidential_asset::GlobalAuditorChanged";
|
|
6308
|
+
function type(): TypeDescriptor<GlobalAuditorChanged>;
|
|
6309
|
+
}
|
|
6310
|
+
type GlobalAuditorChangedInstance = TypedEventInstance<GlobalAuditorChanged> & {
|
|
6311
|
+
data_decoded: GlobalAuditorChanged;
|
|
6312
|
+
type_arguments: [];
|
|
6313
|
+
};
|
|
6314
|
+
interface GlobalConfig {
|
|
6315
|
+
}
|
|
6316
|
+
namespace GlobalConfig {
|
|
6317
|
+
const TYPE_QNAME = "0x1::confidential_asset::GlobalConfig";
|
|
6318
|
+
function type(): TypeDescriptor<GlobalConfig>;
|
|
6319
|
+
}
|
|
6320
|
+
interface IncomingTransfersPauseChanged {
|
|
6321
|
+
}
|
|
6322
|
+
namespace IncomingTransfersPauseChanged {
|
|
6323
|
+
const TYPE_QNAME = "0x1::confidential_asset::IncomingTransfersPauseChanged";
|
|
6324
|
+
function type(): TypeDescriptor<IncomingTransfersPauseChanged>;
|
|
6325
|
+
}
|
|
6326
|
+
type IncomingTransfersPauseChangedInstance = TypedEventInstance<IncomingTransfersPauseChanged> & {
|
|
6327
|
+
data_decoded: IncomingTransfersPauseChanged;
|
|
6328
|
+
type_arguments: [];
|
|
6329
|
+
};
|
|
6330
|
+
interface KeyRotated {
|
|
6331
|
+
}
|
|
6332
|
+
namespace KeyRotated {
|
|
6333
|
+
const TYPE_QNAME = "0x1::confidential_asset::KeyRotated";
|
|
6334
|
+
function type(): TypeDescriptor<KeyRotated>;
|
|
6335
|
+
}
|
|
6336
|
+
type KeyRotatedInstance = TypedEventInstance<KeyRotated> & {
|
|
6337
|
+
data_decoded: KeyRotated;
|
|
6338
|
+
type_arguments: [];
|
|
6339
|
+
};
|
|
6340
|
+
interface KeyRotationProof {
|
|
6341
|
+
}
|
|
6342
|
+
namespace KeyRotationProof {
|
|
6343
|
+
const TYPE_QNAME = "0x1::confidential_asset::KeyRotationProof";
|
|
6344
|
+
function type(): TypeDescriptor<KeyRotationProof>;
|
|
6345
|
+
}
|
|
6346
|
+
interface Normalized {
|
|
6347
|
+
}
|
|
6348
|
+
namespace Normalized {
|
|
6349
|
+
const TYPE_QNAME = "0x1::confidential_asset::Normalized";
|
|
6350
|
+
function type(): TypeDescriptor<Normalized>;
|
|
6351
|
+
}
|
|
6352
|
+
type NormalizedInstance = TypedEventInstance<Normalized> & {
|
|
6353
|
+
data_decoded: Normalized;
|
|
6354
|
+
type_arguments: [];
|
|
6355
|
+
};
|
|
6356
|
+
interface Registered {
|
|
6357
|
+
}
|
|
6358
|
+
namespace Registered {
|
|
6359
|
+
const TYPE_QNAME = "0x1::confidential_asset::Registered";
|
|
6360
|
+
function type(): TypeDescriptor<Registered>;
|
|
6361
|
+
}
|
|
6362
|
+
type RegisteredInstance = TypedEventInstance<Registered> & {
|
|
6363
|
+
data_decoded: Registered;
|
|
6364
|
+
type_arguments: [];
|
|
6365
|
+
};
|
|
6366
|
+
interface RegistrationProof {
|
|
6367
|
+
}
|
|
6368
|
+
namespace RegistrationProof {
|
|
6369
|
+
const TYPE_QNAME = "0x1::confidential_asset::RegistrationProof";
|
|
6370
|
+
function type(): TypeDescriptor<RegistrationProof>;
|
|
6371
|
+
}
|
|
6372
|
+
interface RolledOver {
|
|
6373
|
+
}
|
|
6374
|
+
namespace RolledOver {
|
|
6375
|
+
const TYPE_QNAME = "0x1::confidential_asset::RolledOver";
|
|
6376
|
+
function type(): TypeDescriptor<RolledOver>;
|
|
6377
|
+
}
|
|
6378
|
+
type RolledOverInstance = TypedEventInstance<RolledOver> & {
|
|
6379
|
+
data_decoded: RolledOver;
|
|
6380
|
+
type_arguments: [];
|
|
6381
|
+
};
|
|
6382
|
+
interface TransferProof {
|
|
6383
|
+
}
|
|
6384
|
+
namespace TransferProof {
|
|
6385
|
+
const TYPE_QNAME = "0x1::confidential_asset::TransferProof";
|
|
6386
|
+
function type(): TypeDescriptor<TransferProof>;
|
|
6387
|
+
}
|
|
6388
|
+
interface Transferred {
|
|
6389
|
+
}
|
|
6390
|
+
namespace Transferred {
|
|
6391
|
+
const TYPE_QNAME = "0x1::confidential_asset::Transferred";
|
|
6392
|
+
function type(): TypeDescriptor<Transferred>;
|
|
6393
|
+
}
|
|
6394
|
+
type TransferredInstance = TypedEventInstance<Transferred> & {
|
|
6395
|
+
data_decoded: Transferred;
|
|
6396
|
+
type_arguments: [];
|
|
6397
|
+
};
|
|
6398
|
+
interface WithdrawalProof {
|
|
6399
|
+
}
|
|
6400
|
+
namespace WithdrawalProof {
|
|
6401
|
+
const TYPE_QNAME = "0x1::confidential_asset::WithdrawalProof";
|
|
6402
|
+
function type(): TypeDescriptor<WithdrawalProof>;
|
|
6403
|
+
}
|
|
6404
|
+
interface Withdrawn {
|
|
6405
|
+
}
|
|
6406
|
+
namespace Withdrawn {
|
|
6407
|
+
const TYPE_QNAME = "0x1::confidential_asset::Withdrawn";
|
|
6408
|
+
function type(): TypeDescriptor<Withdrawn>;
|
|
6409
|
+
}
|
|
6410
|
+
type WithdrawnInstance = TypedEventInstance<Withdrawn> & {
|
|
6411
|
+
data_decoded: Withdrawn;
|
|
6412
|
+
type_arguments: [];
|
|
6413
|
+
};
|
|
6414
|
+
namespace entry {
|
|
6415
|
+
function deposit(client: Aptos, account: AptosAccount, request: {
|
|
6416
|
+
typeArguments: [];
|
|
6417
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>, bigint];
|
|
6418
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6419
|
+
function confidentialTransferRaw(client: Aptos, account: AptosAccount, request: {
|
|
6420
|
+
typeArguments: [];
|
|
6421
|
+
functionArguments: [
|
|
6422
|
+
object$.Object<fungible_asset.Metadata>,
|
|
6423
|
+
MoveAddressType,
|
|
6424
|
+
string[],
|
|
6425
|
+
string[],
|
|
6426
|
+
string[],
|
|
6427
|
+
string[],
|
|
6428
|
+
string[],
|
|
6429
|
+
string[],
|
|
6430
|
+
string[],
|
|
6431
|
+
string[],
|
|
6432
|
+
string[][],
|
|
6433
|
+
string,
|
|
6434
|
+
string,
|
|
6435
|
+
string[],
|
|
6436
|
+
string[],
|
|
6437
|
+
string
|
|
6438
|
+
];
|
|
6439
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6440
|
+
function normalizeRaw(client: Aptos, account: AptosAccount, request: {
|
|
6441
|
+
typeArguments: [];
|
|
6442
|
+
functionArguments: [
|
|
6443
|
+
object$.Object<fungible_asset.Metadata>,
|
|
6444
|
+
string[],
|
|
6445
|
+
string[],
|
|
6446
|
+
string[],
|
|
6447
|
+
string,
|
|
6448
|
+
string[],
|
|
6449
|
+
string[]
|
|
6450
|
+
];
|
|
6451
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6452
|
+
function registerRaw(client: Aptos, account: AptosAccount, request: {
|
|
6453
|
+
typeArguments: [];
|
|
6454
|
+
functionArguments: [
|
|
6455
|
+
object$.Object<fungible_asset.Metadata>,
|
|
6456
|
+
string,
|
|
6457
|
+
string[],
|
|
6458
|
+
string[]
|
|
6459
|
+
];
|
|
6460
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6461
|
+
function rolloverPendingBalance(client: Aptos, account: AptosAccount, request: {
|
|
6462
|
+
typeArguments: [];
|
|
6463
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6464
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6465
|
+
function rolloverPendingBalanceAndPause(client: Aptos, account: AptosAccount, request: {
|
|
6466
|
+
typeArguments: [];
|
|
6467
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6468
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6469
|
+
function rotateEncryptionKeyRaw(client: Aptos, account: AptosAccount, request: {
|
|
6470
|
+
typeArguments: [];
|
|
6471
|
+
functionArguments: [
|
|
6472
|
+
object$.Object<fungible_asset.Metadata>,
|
|
6473
|
+
string,
|
|
6474
|
+
boolean,
|
|
6475
|
+
string[],
|
|
6476
|
+
string[],
|
|
6477
|
+
string[]
|
|
6478
|
+
];
|
|
6479
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6480
|
+
function setIncomingTransfersPaused(client: Aptos, account: AptosAccount, request: {
|
|
6481
|
+
typeArguments: [];
|
|
6482
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>, boolean];
|
|
6483
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6484
|
+
function withdrawToRaw(client: Aptos, account: AptosAccount, request: {
|
|
6485
|
+
typeArguments: [];
|
|
6486
|
+
functionArguments: [
|
|
6487
|
+
object$.Object<fungible_asset.Metadata>,
|
|
6488
|
+
MoveAddressType,
|
|
6489
|
+
bigint,
|
|
6490
|
+
string[],
|
|
6491
|
+
string[],
|
|
6492
|
+
string[],
|
|
6493
|
+
string,
|
|
6494
|
+
string[],
|
|
6495
|
+
string[]
|
|
6496
|
+
];
|
|
6497
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
6498
|
+
}
|
|
6499
|
+
namespace view {
|
|
6500
|
+
function getAssetSpecificAuditorConfig(client: Aptos, request: {
|
|
6501
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6502
|
+
}, version?: bigint): Promise<[confidential_asset.AuditorConfig]>;
|
|
6503
|
+
function getAvailableBalance(client: Aptos, request: {
|
|
6504
|
+
functionArguments: [
|
|
6505
|
+
MoveAddressType,
|
|
6506
|
+
object$.Object<fungible_asset.Metadata>
|
|
6507
|
+
];
|
|
6508
|
+
}, version?: bigint): Promise<[
|
|
6509
|
+
confidential_balance.CompressedBalance<confidential_balance.Available>
|
|
6510
|
+
]>;
|
|
6511
|
+
function getEffectiveAuditorConfig(client: Aptos, request: {
|
|
6512
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6513
|
+
}, version?: bigint): Promise<[confidential_asset.EffectiveAuditorConfig]>;
|
|
6514
|
+
function getEffectiveAuditorHint(client: Aptos, request: {
|
|
6515
|
+
functionArguments: [
|
|
6516
|
+
MoveAddressType,
|
|
6517
|
+
object$.Object<fungible_asset.Metadata>
|
|
6518
|
+
];
|
|
6519
|
+
}, version?: bigint): Promise<[option.Option<confidential_asset.EffectiveAuditorHint>]>;
|
|
6520
|
+
function getEncryptionKey(client: Aptos, request: {
|
|
6521
|
+
functionArguments: [
|
|
6522
|
+
MoveAddressType,
|
|
6523
|
+
object$.Object<fungible_asset.Metadata>
|
|
6524
|
+
];
|
|
6525
|
+
}, version?: bigint): Promise<[ristretto255.CompressedRistretto]>;
|
|
6526
|
+
function getGlobalAuditorConfig(client: Aptos, version?: bigint): Promise<[confidential_asset.AuditorConfig]>;
|
|
6527
|
+
function getMaxMemoBytes(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
6528
|
+
function getMaxTransfersBeforeRollover(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
6529
|
+
function getNumTransfersReceived(client: Aptos, request: {
|
|
6530
|
+
functionArguments: [
|
|
6531
|
+
MoveAddressType,
|
|
6532
|
+
object$.Object<fungible_asset.Metadata>
|
|
6533
|
+
];
|
|
6534
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
6535
|
+
function getPendingBalance(client: Aptos, request: {
|
|
6536
|
+
functionArguments: [
|
|
6537
|
+
MoveAddressType,
|
|
6538
|
+
object$.Object<fungible_asset.Metadata>
|
|
6539
|
+
];
|
|
6540
|
+
}, version?: bigint): Promise<[
|
|
6541
|
+
confidential_balance.CompressedBalance<confidential_balance.Pending>
|
|
6542
|
+
]>;
|
|
6543
|
+
function getTotalConfidentialSupply(client: Aptos, request: {
|
|
6544
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6545
|
+
}, version?: bigint): Promise<[bigint]>;
|
|
6546
|
+
function hasConfidentialStore(client: Aptos, request: {
|
|
6547
|
+
functionArguments: [
|
|
6548
|
+
MoveAddressType,
|
|
6549
|
+
object$.Object<fungible_asset.Metadata>
|
|
6550
|
+
];
|
|
6551
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6552
|
+
function incomingTransfersPaused(client: Aptos, request: {
|
|
6553
|
+
functionArguments: [
|
|
6554
|
+
MoveAddressType,
|
|
6555
|
+
object$.Object<fungible_asset.Metadata>
|
|
6556
|
+
];
|
|
6557
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6558
|
+
function isAllowListingRequired(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
6559
|
+
function isConfidentialityEnabledForAssetType(client: Aptos, request: {
|
|
6560
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
|
6561
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6562
|
+
function isEmergencyPaused(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
6563
|
+
function isNormalized(client: Aptos, request: {
|
|
6564
|
+
functionArguments: [
|
|
6565
|
+
MoveAddressType,
|
|
6566
|
+
object$.Object<fungible_asset.Metadata>
|
|
6567
|
+
];
|
|
6568
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6569
|
+
}
|
|
6570
|
+
}
|
|
6110
6571
|
export declare namespace account_abstraction {
|
|
6111
6572
|
interface DerivableDispatchableAuthenticator {
|
|
6112
6573
|
}
|
|
@@ -6196,6 +6657,32 @@ export declare namespace account_abstraction {
|
|
|
6196
6657
|
}, version?: bigint): Promise<[boolean]>;
|
|
6197
6658
|
}
|
|
6198
6659
|
}
|
|
6660
|
+
export declare namespace confidential_amount {
|
|
6661
|
+
interface Amount {
|
|
6662
|
+
P: ristretto255.RistrettoPoint[];
|
|
6663
|
+
R_sender: ristretto255.RistrettoPoint[];
|
|
6664
|
+
R_recip: ristretto255.RistrettoPoint[];
|
|
6665
|
+
R_eff_aud: ristretto255.RistrettoPoint[];
|
|
6666
|
+
R_volun_auds: ristretto255.RistrettoPoint[][];
|
|
6667
|
+
}
|
|
6668
|
+
namespace Amount {
|
|
6669
|
+
const TYPE_QNAME = "0x1::confidential_amount::Amount";
|
|
6670
|
+
function type(): TypeDescriptor<Amount>;
|
|
6671
|
+
}
|
|
6672
|
+
interface CompressedAmount {
|
|
6673
|
+
compressed_P: ristretto255.CompressedRistretto[];
|
|
6674
|
+
compressed_R_sender: ristretto255.CompressedRistretto[];
|
|
6675
|
+
compressed_R_recip: ristretto255.CompressedRistretto[];
|
|
6676
|
+
compressed_R_eff_aud: ristretto255.CompressedRistretto[];
|
|
6677
|
+
compressed_R_volun_auds: ristretto255.CompressedRistretto[][];
|
|
6678
|
+
}
|
|
6679
|
+
namespace CompressedAmount {
|
|
6680
|
+
const TYPE_QNAME = "0x1::confidential_amount::CompressedAmount";
|
|
6681
|
+
function type(): TypeDescriptor<CompressedAmount>;
|
|
6682
|
+
}
|
|
6683
|
+
namespace entry { }
|
|
6684
|
+
namespace view { }
|
|
6685
|
+
}
|
|
6199
6686
|
export declare namespace governance_proposal {
|
|
6200
6687
|
interface GovernanceProposal {
|
|
6201
6688
|
dummy_field: boolean;
|
|
@@ -6316,6 +6803,39 @@ export declare namespace transaction_context {
|
|
|
6316
6803
|
namespace entry { }
|
|
6317
6804
|
namespace view { }
|
|
6318
6805
|
}
|
|
6806
|
+
export declare namespace confidential_balance {
|
|
6807
|
+
interface Available {
|
|
6808
|
+
dummy_field: boolean;
|
|
6809
|
+
}
|
|
6810
|
+
namespace Available {
|
|
6811
|
+
const TYPE_QNAME = "0x1::confidential_balance::Available";
|
|
6812
|
+
function type(): TypeDescriptor<Available>;
|
|
6813
|
+
}
|
|
6814
|
+
interface Balance<T0> {
|
|
6815
|
+
}
|
|
6816
|
+
namespace Balance {
|
|
6817
|
+
const TYPE_QNAME = "0x1::confidential_balance::Balance";
|
|
6818
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Balance<T0>>;
|
|
6819
|
+
}
|
|
6820
|
+
interface CompressedBalance<T0> {
|
|
6821
|
+
}
|
|
6822
|
+
namespace CompressedBalance {
|
|
6823
|
+
const TYPE_QNAME = "0x1::confidential_balance::CompressedBalance";
|
|
6824
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CompressedBalance<T0>>;
|
|
6825
|
+
}
|
|
6826
|
+
interface Pending {
|
|
6827
|
+
dummy_field: boolean;
|
|
6828
|
+
}
|
|
6829
|
+
namespace Pending {
|
|
6830
|
+
const TYPE_QNAME = "0x1::confidential_balance::Pending";
|
|
6831
|
+
function type(): TypeDescriptor<Pending>;
|
|
6832
|
+
}
|
|
6833
|
+
namespace entry { }
|
|
6834
|
+
namespace view {
|
|
6835
|
+
function getNumAvailableChunks(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
6836
|
+
function getNumPendingChunks(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
6837
|
+
}
|
|
6838
|
+
}
|
|
6319
6839
|
export declare namespace jwk_consensus_config {
|
|
6320
6840
|
interface ConfigOff {
|
|
6321
6841
|
dummy_field: boolean;
|
|
@@ -6376,6 +6896,23 @@ export declare namespace ristretto255_elgamal {
|
|
|
6376
6896
|
namespace entry { }
|
|
6377
6897
|
namespace view { }
|
|
6378
6898
|
}
|
|
6899
|
+
export declare namespace sigma_protocol_proof {
|
|
6900
|
+
interface Proof {
|
|
6901
|
+
comm_A: ristretto255.RistrettoPoint[];
|
|
6902
|
+
compressed_comm_A: ristretto255.CompressedRistretto[];
|
|
6903
|
+
resp_sigma: ristretto255.Scalar[];
|
|
6904
|
+
}
|
|
6905
|
+
namespace Proof {
|
|
6906
|
+
const TYPE_QNAME = "0x1::sigma_protocol_proof::Proof";
|
|
6907
|
+
function type(): TypeDescriptor<Proof>;
|
|
6908
|
+
}
|
|
6909
|
+
namespace entry { }
|
|
6910
|
+
namespace view { }
|
|
6911
|
+
}
|
|
6912
|
+
export declare namespace sigma_protocol_utils {
|
|
6913
|
+
namespace entry { }
|
|
6914
|
+
namespace view { }
|
|
6915
|
+
}
|
|
6379
6916
|
export declare namespace reconfiguration_state {
|
|
6380
6917
|
interface State {
|
|
6381
6918
|
variant: copyable_any.Any;
|
|
@@ -6582,6 +7119,17 @@ export declare namespace primary_fungible_store {
|
|
|
6582
7119
|
}, version?: bigint): Promise<[boolean]>;
|
|
6583
7120
|
}
|
|
6584
7121
|
}
|
|
7122
|
+
export declare namespace sigma_protocol_witness {
|
|
7123
|
+
interface Witness {
|
|
7124
|
+
w: ristretto255.Scalar[];
|
|
7125
|
+
}
|
|
7126
|
+
namespace Witness {
|
|
7127
|
+
const TYPE_QNAME = "0x1::sigma_protocol_witness::Witness";
|
|
7128
|
+
function type(): TypeDescriptor<Witness>;
|
|
7129
|
+
}
|
|
7130
|
+
namespace entry { }
|
|
7131
|
+
namespace view { }
|
|
7132
|
+
}
|
|
6585
7133
|
export declare namespace transaction_validation {
|
|
6586
7134
|
interface GasPermission {
|
|
6587
7135
|
dummy_field: boolean;
|
|
@@ -6634,6 +7182,51 @@ export declare namespace permissioned_delegation {
|
|
|
6634
7182
|
namespace entry { }
|
|
6635
7183
|
namespace view { }
|
|
6636
7184
|
}
|
|
7185
|
+
export declare namespace sigma_protocol_transfer {
|
|
7186
|
+
interface Transfer {
|
|
7187
|
+
dummy_field: boolean;
|
|
7188
|
+
}
|
|
7189
|
+
namespace Transfer {
|
|
7190
|
+
const TYPE_QNAME = "0x1::sigma_protocol_transfer::Transfer";
|
|
7191
|
+
function type(): TypeDescriptor<Transfer>;
|
|
7192
|
+
}
|
|
7193
|
+
interface TransferSession {
|
|
7194
|
+
sender: MoveAddressType;
|
|
7195
|
+
recipient: MoveAddressType;
|
|
7196
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
7197
|
+
num_avail_chunks: bigint;
|
|
7198
|
+
num_transfer_chunks: bigint;
|
|
7199
|
+
has_effective_auditor: boolean;
|
|
7200
|
+
num_volun_auditors: bigint;
|
|
7201
|
+
}
|
|
7202
|
+
namespace TransferSession {
|
|
7203
|
+
const TYPE_QNAME = "0x1::sigma_protocol_transfer::TransferSession";
|
|
7204
|
+
function type(): TypeDescriptor<TransferSession>;
|
|
7205
|
+
}
|
|
7206
|
+
namespace entry { }
|
|
7207
|
+
namespace view { }
|
|
7208
|
+
}
|
|
7209
|
+
export declare namespace sigma_protocol_withdraw {
|
|
7210
|
+
interface WithdrawSession {
|
|
7211
|
+
sender: MoveAddressType;
|
|
7212
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
7213
|
+
num_chunks: bigint;
|
|
7214
|
+
has_auditor: boolean;
|
|
7215
|
+
}
|
|
7216
|
+
namespace WithdrawSession {
|
|
7217
|
+
const TYPE_QNAME = "0x1::sigma_protocol_withdraw::WithdrawSession";
|
|
7218
|
+
function type(): TypeDescriptor<WithdrawSession>;
|
|
7219
|
+
}
|
|
7220
|
+
interface Withdrawal {
|
|
7221
|
+
dummy_field: boolean;
|
|
7222
|
+
}
|
|
7223
|
+
namespace Withdrawal {
|
|
7224
|
+
const TYPE_QNAME = "0x1::sigma_protocol_withdraw::Withdrawal";
|
|
7225
|
+
function type(): TypeDescriptor<Withdrawal>;
|
|
7226
|
+
}
|
|
7227
|
+
namespace entry { }
|
|
7228
|
+
namespace view { }
|
|
7229
|
+
}
|
|
6637
7230
|
export declare namespace storage_slots_allocator {
|
|
6638
7231
|
interface Link<T0> {
|
|
6639
7232
|
}
|
|
@@ -6697,6 +7290,19 @@ export declare namespace reconfiguration_with_dkg {
|
|
|
6697
7290
|
namespace entry { }
|
|
6698
7291
|
namespace view { }
|
|
6699
7292
|
}
|
|
7293
|
+
export declare namespace sigma_protocol_statement {
|
|
7294
|
+
interface Statement<T0> {
|
|
7295
|
+
points: ristretto255.RistrettoPoint[];
|
|
7296
|
+
compressed_points: ristretto255.CompressedRistretto[];
|
|
7297
|
+
scalars: ristretto255.Scalar[];
|
|
7298
|
+
}
|
|
7299
|
+
namespace Statement {
|
|
7300
|
+
const TYPE_QNAME = "0x1::sigma_protocol_statement::Statement";
|
|
7301
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Statement<T0>>;
|
|
7302
|
+
}
|
|
7303
|
+
namespace entry { }
|
|
7304
|
+
namespace view { }
|
|
7305
|
+
}
|
|
6700
7306
|
export declare namespace solana_derivable_account {
|
|
6701
7307
|
interface SIWSAbstractSignature {
|
|
6702
7308
|
}
|
|
@@ -6720,6 +7326,12 @@ export declare namespace validator_consensus_info {
|
|
|
6720
7326
|
namespace entry { }
|
|
6721
7327
|
namespace view { }
|
|
6722
7328
|
}
|
|
7329
|
+
export declare namespace confidential_range_proofs {
|
|
7330
|
+
namespace entry { }
|
|
7331
|
+
namespace view {
|
|
7332
|
+
function getBulletproofsDst(client: Aptos, version?: bigint): Promise<[string]>;
|
|
7333
|
+
}
|
|
7334
|
+
}
|
|
6723
7335
|
export declare namespace ristretto255_bulletproofs {
|
|
6724
7336
|
interface RangeProof {
|
|
6725
7337
|
bytes: string;
|
|
@@ -6749,6 +7361,28 @@ export declare namespace ethereum_derivable_account {
|
|
|
6749
7361
|
namespace entry { }
|
|
6750
7362
|
namespace view { }
|
|
6751
7363
|
}
|
|
7364
|
+
export declare namespace sigma_protocol_fiat_shamir {
|
|
7365
|
+
interface DomainSeparator {
|
|
7366
|
+
}
|
|
7367
|
+
namespace DomainSeparator {
|
|
7368
|
+
const TYPE_QNAME = "0x1::sigma_protocol_fiat_shamir::DomainSeparator";
|
|
7369
|
+
function type(): TypeDescriptor<DomainSeparator>;
|
|
7370
|
+
}
|
|
7371
|
+
interface FiatShamirInputs {
|
|
7372
|
+
dst: sigma_protocol_fiat_shamir.DomainSeparator;
|
|
7373
|
+
type_name: string;
|
|
7374
|
+
k: bigint;
|
|
7375
|
+
stmt_X: ristretto255.CompressedRistretto[];
|
|
7376
|
+
stmt_x: ristretto255.Scalar[];
|
|
7377
|
+
proof_A: ristretto255.CompressedRistretto[];
|
|
7378
|
+
}
|
|
7379
|
+
namespace FiatShamirInputs {
|
|
7380
|
+
const TYPE_QNAME = "0x1::sigma_protocol_fiat_shamir::FiatShamirInputs";
|
|
7381
|
+
function type(): TypeDescriptor<FiatShamirInputs>;
|
|
7382
|
+
}
|
|
7383
|
+
namespace entry { }
|
|
7384
|
+
namespace view { }
|
|
7385
|
+
}
|
|
6752
7386
|
export declare namespace dispatchable_fungible_asset {
|
|
6753
7387
|
interface TransferRefStore {
|
|
6754
7388
|
transfer_ref: fungible_asset.TransferRef;
|
|
@@ -6787,9 +7421,102 @@ export declare namespace dispatchable_fungible_asset {
|
|
|
6787
7421
|
}, version?: bigint): Promise<[boolean]>;
|
|
6788
7422
|
}
|
|
6789
7423
|
}
|
|
7424
|
+
export declare namespace sigma_protocol_homomorphism {
|
|
7425
|
+
interface Homomorphism<T0> {
|
|
7426
|
+
_0: unknown;
|
|
7427
|
+
}
|
|
7428
|
+
namespace Homomorphism {
|
|
7429
|
+
const TYPE_QNAME = "0x1::sigma_protocol_homomorphism::Homomorphism";
|
|
7430
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Homomorphism<T0>>;
|
|
7431
|
+
}
|
|
7432
|
+
interface TransformationFunction<T0> {
|
|
7433
|
+
_0: unknown;
|
|
7434
|
+
}
|
|
7435
|
+
namespace TransformationFunction {
|
|
7436
|
+
const TYPE_QNAME = "0x1::sigma_protocol_homomorphism::TransformationFunction";
|
|
7437
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransformationFunction<T0>>;
|
|
7438
|
+
}
|
|
7439
|
+
namespace entry { }
|
|
7440
|
+
namespace view { }
|
|
7441
|
+
}
|
|
7442
|
+
export declare namespace sigma_protocol_key_rotation {
|
|
7443
|
+
interface KeyRotation {
|
|
7444
|
+
dummy_field: boolean;
|
|
7445
|
+
}
|
|
7446
|
+
namespace KeyRotation {
|
|
7447
|
+
const TYPE_QNAME = "0x1::sigma_protocol_key_rotation::KeyRotation";
|
|
7448
|
+
function type(): TypeDescriptor<KeyRotation>;
|
|
7449
|
+
}
|
|
7450
|
+
interface KeyRotationSession {
|
|
7451
|
+
sender: MoveAddressType;
|
|
7452
|
+
token_type: object$.Object<fungible_asset.Metadata>;
|
|
7453
|
+
num_chunks: bigint;
|
|
7454
|
+
}
|
|
7455
|
+
namespace KeyRotationSession {
|
|
7456
|
+
const TYPE_QNAME = "0x1::sigma_protocol_key_rotation::KeyRotationSession";
|
|
7457
|
+
function type(): TypeDescriptor<KeyRotationSession>;
|
|
7458
|
+
}
|
|
7459
|
+
namespace entry { }
|
|
7460
|
+
namespace view { }
|
|
7461
|
+
}
|
|
7462
|
+
export declare namespace sigma_protocol_registration {
|
|
7463
|
+
interface Registration {
|
|
7464
|
+
dummy_field: boolean;
|
|
7465
|
+
}
|
|
7466
|
+
namespace Registration {
|
|
7467
|
+
const TYPE_QNAME = "0x1::sigma_protocol_registration::Registration";
|
|
7468
|
+
function type(): TypeDescriptor<Registration>;
|
|
7469
|
+
}
|
|
7470
|
+
interface RegistrationSession {
|
|
7471
|
+
sender: MoveAddressType;
|
|
7472
|
+
asset_type: object$.Object<fungible_asset.Metadata>;
|
|
7473
|
+
}
|
|
7474
|
+
namespace RegistrationSession {
|
|
7475
|
+
const TYPE_QNAME = "0x1::sigma_protocol_registration::RegistrationSession";
|
|
7476
|
+
function type(): TypeDescriptor<RegistrationSession>;
|
|
7477
|
+
}
|
|
7478
|
+
namespace entry { }
|
|
7479
|
+
namespace view { }
|
|
7480
|
+
}
|
|
7481
|
+
export declare namespace sigma_protocol_representation {
|
|
7482
|
+
interface Representation {
|
|
7483
|
+
point_idxs: bigint[];
|
|
7484
|
+
scalars: ristretto255.Scalar[];
|
|
7485
|
+
}
|
|
7486
|
+
namespace Representation {
|
|
7487
|
+
const TYPE_QNAME = "0x1::sigma_protocol_representation::Representation";
|
|
7488
|
+
function type(): TypeDescriptor<Representation>;
|
|
7489
|
+
}
|
|
7490
|
+
namespace entry { }
|
|
7491
|
+
namespace view { }
|
|
7492
|
+
}
|
|
7493
|
+
export declare namespace sigma_protocol_statement_builder {
|
|
7494
|
+
interface StatementBuilder<T0> {
|
|
7495
|
+
points: ristretto255.RistrettoPoint[];
|
|
7496
|
+
compressed_points: ristretto255.CompressedRistretto[];
|
|
7497
|
+
scalars: ristretto255.Scalar[];
|
|
7498
|
+
}
|
|
7499
|
+
namespace StatementBuilder {
|
|
7500
|
+
const TYPE_QNAME = "0x1::sigma_protocol_statement_builder::StatementBuilder";
|
|
7501
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<StatementBuilder<T0>>;
|
|
7502
|
+
}
|
|
7503
|
+
namespace entry { }
|
|
7504
|
+
namespace view { }
|
|
7505
|
+
}
|
|
6790
7506
|
export declare namespace common_account_abstractions_utils {
|
|
6791
7507
|
namespace entry { }
|
|
6792
7508
|
namespace view { }
|
|
6793
7509
|
}
|
|
7510
|
+
export declare namespace sigma_protocol_representation_vec {
|
|
7511
|
+
interface RepresentationVec {
|
|
7512
|
+
v: sigma_protocol_representation.Representation[];
|
|
7513
|
+
}
|
|
7514
|
+
namespace RepresentationVec {
|
|
7515
|
+
const TYPE_QNAME = "0x1::sigma_protocol_representation_vec::RepresentationVec";
|
|
7516
|
+
function type(): TypeDescriptor<RepresentationVec>;
|
|
7517
|
+
}
|
|
7518
|
+
namespace entry { }
|
|
7519
|
+
namespace view { }
|
|
7520
|
+
}
|
|
6794
7521
|
export declare function loadAllTypes(coder: MoveCoder): void;
|
|
6795
7522
|
//# sourceMappingURL=0x1.d.ts.map
|