@typemove/aptos 1.13.3-rc.1 → 1.13.4-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/builtin/0x1.d.ts +110 -0
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +130 -4
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.js +1 -1
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/builtin/0x4.js +1 -1
- package/dist/cjs/builtin/0x4.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +110 -0
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +127 -1
- 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.js +1 -1
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/dist/esm/codegen/run.js +1 -1
- package/dist/esm/codegen/run.js.map +1 -1
- package/package.json +2 -2
- package/src/abis/0x1.json +1694 -323
- package/src/abis/0x3.json +75 -5
- package/src/abis/0x4.json +48 -20
- package/src/builtin/0x1.ts +217 -1
- package/src/builtin/0x3.ts +1 -1
- package/src/builtin/0x4.ts +1 -1
- package/src/codegen/run.ts +1 -1
|
@@ -1491,6 +1491,16 @@ export declare namespace option {
|
|
|
1491
1491
|
namespace entry { }
|
|
1492
1492
|
namespace view { }
|
|
1493
1493
|
}
|
|
1494
|
+
export declare namespace result {
|
|
1495
|
+
interface Result<T0, T1> {
|
|
1496
|
+
}
|
|
1497
|
+
namespace Result {
|
|
1498
|
+
const TYPE_QNAME = "0x1::result::Result";
|
|
1499
|
+
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Result<T0, T1>>;
|
|
1500
|
+
}
|
|
1501
|
+
namespace entry { }
|
|
1502
|
+
namespace view { }
|
|
1503
|
+
}
|
|
1494
1504
|
export declare namespace signer {
|
|
1495
1505
|
namespace entry { }
|
|
1496
1506
|
namespace view { }
|
|
@@ -2053,6 +2063,16 @@ export declare namespace math128 {
|
|
|
2053
2063
|
namespace entry { }
|
|
2054
2064
|
namespace view { }
|
|
2055
2065
|
}
|
|
2066
|
+
export declare namespace reflect {
|
|
2067
|
+
interface ReflectionError {
|
|
2068
|
+
}
|
|
2069
|
+
namespace ReflectionError {
|
|
2070
|
+
const TYPE_QNAME = "0x1::reflect::ReflectionError";
|
|
2071
|
+
function type(): TypeDescriptor<ReflectionError>;
|
|
2072
|
+
}
|
|
2073
|
+
namespace entry { }
|
|
2074
|
+
namespace view { }
|
|
2075
|
+
}
|
|
2056
2076
|
export declare namespace version {
|
|
2057
2077
|
interface SetVersionCapability {
|
|
2058
2078
|
dummy_field: boolean;
|
|
@@ -3645,6 +3665,23 @@ export declare namespace fungible_asset {
|
|
|
3645
3665
|
const TYPE_QNAME = "0x1::fungible_asset::ConcurrentSupply";
|
|
3646
3666
|
function type(): TypeDescriptor<ConcurrentSupply>;
|
|
3647
3667
|
}
|
|
3668
|
+
interface Creation {
|
|
3669
|
+
metadata: MoveAddressType;
|
|
3670
|
+
name: string;
|
|
3671
|
+
symbol: string;
|
|
3672
|
+
decimals: number;
|
|
3673
|
+
icon_uri: string;
|
|
3674
|
+
project_uri: string;
|
|
3675
|
+
maximum_supply: option.Option<bigint>;
|
|
3676
|
+
}
|
|
3677
|
+
namespace Creation {
|
|
3678
|
+
const TYPE_QNAME = "0x1::fungible_asset::Creation";
|
|
3679
|
+
function type(): TypeDescriptor<Creation>;
|
|
3680
|
+
}
|
|
3681
|
+
type CreationInstance = TypedEventInstance<Creation> & {
|
|
3682
|
+
data_decoded: Creation;
|
|
3683
|
+
type_arguments: [];
|
|
3684
|
+
};
|
|
3648
3685
|
interface Deposit {
|
|
3649
3686
|
store: MoveAddressType;
|
|
3650
3687
|
amount: bigint;
|
|
@@ -3959,6 +3996,20 @@ export declare namespace big_ordered_map {
|
|
|
3959
3996
|
const TYPE_QNAME = "0x1::big_ordered_map::Child";
|
|
3960
3997
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Child<T0>>;
|
|
3961
3998
|
}
|
|
3999
|
+
interface IteratorPtrWithPath<T0> {
|
|
4000
|
+
iterator: big_ordered_map.IteratorPtr<T0>;
|
|
4001
|
+
path: bigint[];
|
|
4002
|
+
}
|
|
4003
|
+
namespace IteratorPtrWithPath {
|
|
4004
|
+
const TYPE_QNAME = "0x1::big_ordered_map::IteratorPtrWithPath";
|
|
4005
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<IteratorPtrWithPath<T0>>;
|
|
4006
|
+
}
|
|
4007
|
+
interface LeafNodeIteratorPtr {
|
|
4008
|
+
}
|
|
4009
|
+
namespace LeafNodeIteratorPtr {
|
|
4010
|
+
const TYPE_QNAME = "0x1::big_ordered_map::LeafNodeIteratorPtr";
|
|
4011
|
+
function type(): TypeDescriptor<LeafNodeIteratorPtr>;
|
|
4012
|
+
}
|
|
3962
4013
|
interface Node<T0, T1> {
|
|
3963
4014
|
}
|
|
3964
4015
|
namespace Node {
|
|
@@ -6361,6 +6412,65 @@ export declare namespace ristretto255_pedersen {
|
|
|
6361
6412
|
namespace entry { }
|
|
6362
6413
|
namespace view { }
|
|
6363
6414
|
}
|
|
6415
|
+
export declare namespace sui_derivable_account {
|
|
6416
|
+
interface AppId {
|
|
6417
|
+
}
|
|
6418
|
+
namespace AppId {
|
|
6419
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::AppId";
|
|
6420
|
+
function type(): TypeDescriptor<AppId>;
|
|
6421
|
+
}
|
|
6422
|
+
interface Intent {
|
|
6423
|
+
scope: sui_derivable_account.IntentScope;
|
|
6424
|
+
version: sui_derivable_account.IntentVersion;
|
|
6425
|
+
app_id: sui_derivable_account.AppId;
|
|
6426
|
+
}
|
|
6427
|
+
namespace Intent {
|
|
6428
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::Intent";
|
|
6429
|
+
function type(): TypeDescriptor<Intent>;
|
|
6430
|
+
}
|
|
6431
|
+
interface IntentMessage {
|
|
6432
|
+
intent: sui_derivable_account.Intent;
|
|
6433
|
+
value: string;
|
|
6434
|
+
}
|
|
6435
|
+
namespace IntentMessage {
|
|
6436
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentMessage";
|
|
6437
|
+
function type(): TypeDescriptor<IntentMessage>;
|
|
6438
|
+
}
|
|
6439
|
+
interface IntentScope {
|
|
6440
|
+
}
|
|
6441
|
+
namespace IntentScope {
|
|
6442
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentScope";
|
|
6443
|
+
function type(): TypeDescriptor<IntentScope>;
|
|
6444
|
+
}
|
|
6445
|
+
interface IntentVersion {
|
|
6446
|
+
}
|
|
6447
|
+
namespace IntentVersion {
|
|
6448
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::IntentVersion";
|
|
6449
|
+
function type(): TypeDescriptor<IntentVersion>;
|
|
6450
|
+
}
|
|
6451
|
+
interface SuiAbstractPublicKey {
|
|
6452
|
+
sui_account_address: string;
|
|
6453
|
+
domain: string;
|
|
6454
|
+
}
|
|
6455
|
+
namespace SuiAbstractPublicKey {
|
|
6456
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiAbstractPublicKey";
|
|
6457
|
+
function type(): TypeDescriptor<SuiAbstractPublicKey>;
|
|
6458
|
+
}
|
|
6459
|
+
interface SuiAbstractSignature {
|
|
6460
|
+
}
|
|
6461
|
+
namespace SuiAbstractSignature {
|
|
6462
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiAbstractSignature";
|
|
6463
|
+
function type(): TypeDescriptor<SuiAbstractSignature>;
|
|
6464
|
+
}
|
|
6465
|
+
interface SuiSigningScheme {
|
|
6466
|
+
}
|
|
6467
|
+
namespace SuiSigningScheme {
|
|
6468
|
+
const TYPE_QNAME = "0x1::sui_derivable_account::SuiSigningScheme";
|
|
6469
|
+
function type(): TypeDescriptor<SuiSigningScheme>;
|
|
6470
|
+
}
|
|
6471
|
+
namespace entry { }
|
|
6472
|
+
namespace view { }
|
|
6473
|
+
}
|
|
6364
6474
|
export declare namespace object_code_deployment {
|
|
6365
6475
|
interface Freeze {
|
|
6366
6476
|
object_address: MoveAddressType;
|