@typemove/aptos 1.6.7 → 1.6.8-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/cjs/builtin/0x1.d.ts +133 -133
- package/dist/cjs/builtin/0x3.d.ts +14 -14
- package/dist/cjs/builtin/0x4.d.ts +23 -23
- package/dist/esm/builtin/0x1.d.ts +133 -133
- package/dist/esm/builtin/0x3.d.ts +14 -14
- package/dist/esm/builtin/0x4.d.ts +23 -23
- package/package.json +3 -3
- package/src/builtin/0x1.ts +133 -133
- package/src/builtin/0x3.ts +14 -14
- package/src/builtin/0x4.ts +23 -23
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +26 -26
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +20 -20
package/src/builtin/0x3.ts
CHANGED
|
@@ -83,9 +83,9 @@ export namespace token {
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
export interface CollectionMutabilityConfig {
|
|
86
|
-
description:
|
|
87
|
-
uri:
|
|
88
|
-
maximum:
|
|
86
|
+
description: boolean;
|
|
87
|
+
uri: boolean;
|
|
88
|
+
maximum: boolean;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
export namespace CollectionMutabilityConfig {
|
|
@@ -477,11 +477,11 @@ export namespace token {
|
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
export interface TokenMutabilityConfig {
|
|
480
|
-
maximum:
|
|
481
|
-
uri:
|
|
482
|
-
royalty:
|
|
483
|
-
description:
|
|
484
|
-
properties:
|
|
480
|
+
maximum: boolean;
|
|
481
|
+
uri: boolean;
|
|
482
|
+
royalty: boolean;
|
|
483
|
+
description: boolean;
|
|
484
|
+
properties: boolean;
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
export namespace TokenMutabilityConfig {
|
|
@@ -504,7 +504,7 @@ export namespace token {
|
|
|
504
504
|
|
|
505
505
|
export interface TokenStore {
|
|
506
506
|
tokens: _0x1.table.Table<token.TokenId, token.Token>;
|
|
507
|
-
direct_transfer:
|
|
507
|
+
direct_transfer: boolean;
|
|
508
508
|
deposit_events: _0x1.event.EventHandle<token.DepositEvent>;
|
|
509
509
|
withdraw_events: _0x1.event.EventHandle<token.WithdrawEvent>;
|
|
510
510
|
burn_events: _0x1.event.EventHandle<token.BurnTokenEvent>;
|
|
@@ -642,7 +642,7 @@ export namespace token {
|
|
|
642
642
|
account: AptosAccount,
|
|
643
643
|
request: {
|
|
644
644
|
typeArguments: [];
|
|
645
|
-
functionArguments: [string, string, string, bigint,
|
|
645
|
+
functionArguments: [string, string, string, bigint, boolean[]];
|
|
646
646
|
},
|
|
647
647
|
options?: InputGenerateTransactionOptions,
|
|
648
648
|
): Promise<PendingTransactionResponse> {
|
|
@@ -677,7 +677,7 @@ export namespace token {
|
|
|
677
677
|
MoveAddressType,
|
|
678
678
|
bigint,
|
|
679
679
|
bigint,
|
|
680
|
-
|
|
680
|
+
boolean[],
|
|
681
681
|
string[],
|
|
682
682
|
string[],
|
|
683
683
|
string[],
|
|
@@ -823,7 +823,7 @@ export namespace token {
|
|
|
823
823
|
account: AptosAccount,
|
|
824
824
|
request: {
|
|
825
825
|
typeArguments: [];
|
|
826
|
-
functionArguments: [
|
|
826
|
+
functionArguments: [boolean];
|
|
827
827
|
},
|
|
828
828
|
options?: InputGenerateTransactionOptions,
|
|
829
829
|
): Promise<PendingTransactionResponse> {
|
|
@@ -1705,7 +1705,7 @@ export namespace token_event_store {
|
|
|
1705
1705
|
|
|
1706
1706
|
export interface OptInTransfer {
|
|
1707
1707
|
account_address: MoveAddressType;
|
|
1708
|
-
opt_in:
|
|
1708
|
+
opt_in: boolean;
|
|
1709
1709
|
}
|
|
1710
1710
|
|
|
1711
1711
|
export namespace OptInTransfer {
|
|
@@ -1725,7 +1725,7 @@ export namespace token_event_store {
|
|
|
1725
1725
|
}
|
|
1726
1726
|
|
|
1727
1727
|
export interface OptInTransferEvent {
|
|
1728
|
-
opt_in:
|
|
1728
|
+
opt_in: boolean;
|
|
1729
1729
|
}
|
|
1730
1730
|
|
|
1731
1731
|
export namespace OptInTransferEvent {
|
package/src/builtin/0x4.ts
CHANGED
|
@@ -802,14 +802,14 @@ export namespace aptos_token {
|
|
|
802
802
|
export interface AptosCollection {
|
|
803
803
|
mutator_ref: _0x1.option.Option<collection.MutatorRef>;
|
|
804
804
|
royalty_mutator_ref: _0x1.option.Option<royalty.MutatorRef>;
|
|
805
|
-
mutable_description:
|
|
806
|
-
mutable_uri:
|
|
807
|
-
mutable_token_description:
|
|
808
|
-
mutable_token_name:
|
|
809
|
-
mutable_token_properties:
|
|
810
|
-
mutable_token_uri:
|
|
811
|
-
tokens_burnable_by_creator:
|
|
812
|
-
tokens_freezable_by_creator:
|
|
805
|
+
mutable_description: boolean;
|
|
806
|
+
mutable_uri: boolean;
|
|
807
|
+
mutable_token_description: boolean;
|
|
808
|
+
mutable_token_name: boolean;
|
|
809
|
+
mutable_token_properties: boolean;
|
|
810
|
+
mutable_token_uri: boolean;
|
|
811
|
+
tokens_burnable_by_creator: boolean;
|
|
812
|
+
tokens_freezable_by_creator: boolean;
|
|
813
813
|
}
|
|
814
814
|
|
|
815
815
|
export namespace AptosCollection {
|
|
@@ -925,15 +925,15 @@ export namespace aptos_token {
|
|
|
925
925
|
bigint,
|
|
926
926
|
string,
|
|
927
927
|
string,
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
928
|
+
boolean,
|
|
929
|
+
boolean,
|
|
930
|
+
boolean,
|
|
931
|
+
boolean,
|
|
932
|
+
boolean,
|
|
933
|
+
boolean,
|
|
934
|
+
boolean,
|
|
935
|
+
boolean,
|
|
936
|
+
boolean,
|
|
937
937
|
bigint,
|
|
938
938
|
bigint,
|
|
939
939
|
];
|
|
@@ -1302,7 +1302,7 @@ export namespace aptos_token {
|
|
|
1302
1302
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1303
1303
|
},
|
|
1304
1304
|
version?: bigint,
|
|
1305
|
-
): Promise<[
|
|
1305
|
+
): Promise<[boolean]> {
|
|
1306
1306
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1307
1307
|
const data: InputViewFunctionData = {
|
|
1308
1308
|
function: "0x4::aptos_token::are_properties_mutable",
|
|
@@ -1326,7 +1326,7 @@ export namespace aptos_token {
|
|
|
1326
1326
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1327
1327
|
},
|
|
1328
1328
|
version?: bigint,
|
|
1329
|
-
): Promise<[
|
|
1329
|
+
): Promise<[boolean]> {
|
|
1330
1330
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1331
1331
|
const data: InputViewFunctionData = {
|
|
1332
1332
|
function: "0x4::aptos_token::is_burnable",
|
|
@@ -1347,7 +1347,7 @@ export namespace aptos_token {
|
|
|
1347
1347
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1348
1348
|
},
|
|
1349
1349
|
version?: bigint,
|
|
1350
|
-
): Promise<[
|
|
1350
|
+
): Promise<[boolean]> {
|
|
1351
1351
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1352
1352
|
const data: InputViewFunctionData = {
|
|
1353
1353
|
function: "0x4::aptos_token::is_freezable_by_creator",
|
|
@@ -1371,7 +1371,7 @@ export namespace aptos_token {
|
|
|
1371
1371
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1372
1372
|
},
|
|
1373
1373
|
version?: bigint,
|
|
1374
|
-
): Promise<[
|
|
1374
|
+
): Promise<[boolean]> {
|
|
1375
1375
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1376
1376
|
const data: InputViewFunctionData = {
|
|
1377
1377
|
function: "0x4::aptos_token::is_mutable_description",
|
|
@@ -1394,7 +1394,7 @@ export namespace aptos_token {
|
|
|
1394
1394
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1395
1395
|
},
|
|
1396
1396
|
version?: bigint,
|
|
1397
|
-
): Promise<[
|
|
1397
|
+
): Promise<[boolean]> {
|
|
1398
1398
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1399
1399
|
const data: InputViewFunctionData = {
|
|
1400
1400
|
function: "0x4::aptos_token::is_mutable_name",
|
|
@@ -1417,7 +1417,7 @@ export namespace aptos_token {
|
|
|
1417
1417
|
functionArguments: [_0x1.object_.Object<T0>];
|
|
1418
1418
|
},
|
|
1419
1419
|
version?: bigint,
|
|
1420
|
-
): Promise<[
|
|
1420
|
+
): Promise<[boolean]> {
|
|
1421
1421
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1422
1422
|
const data: InputViewFunctionData = {
|
|
1423
1423
|
function: "0x4::aptos_token::is_mutable_uri",
|
package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts
CHANGED
|
@@ -173,7 +173,7 @@ export namespace base_pool {
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
export interface Null {
|
|
176
|
-
dummy_field:
|
|
176
|
+
dummy_field: boolean;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
export namespace Null {
|
|
@@ -383,7 +383,7 @@ export namespace stable_pool {
|
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
export interface FlashloanHelper<T0, T1, T2, T3> {
|
|
386
|
-
locked:
|
|
386
|
+
locked: boolean;
|
|
387
387
|
flashloan_fee_bps: bigint;
|
|
388
388
|
flashloan_events: _0x1.event.EventHandle<
|
|
389
389
|
stable_pool.FlashloanEvent<T0, T1, T2, T3>
|
|
@@ -632,7 +632,7 @@ export namespace stable_pool {
|
|
|
632
632
|
}
|
|
633
633
|
|
|
634
634
|
export interface StablePoolToken<T0, T1, T2, T3> {
|
|
635
|
-
dummy_field:
|
|
635
|
+
dummy_field: boolean;
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
export namespace StablePoolToken {
|
|
@@ -986,7 +986,7 @@ export namespace stable_pool {
|
|
|
986
986
|
typeArguments: [MoveStructId, MoveStructId, MoveStructId, MoveStructId];
|
|
987
987
|
},
|
|
988
988
|
version?: bigint,
|
|
989
|
-
): Promise<[
|
|
989
|
+
): Promise<[boolean]> {
|
|
990
990
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
991
991
|
const data: InputViewFunctionData = {
|
|
992
992
|
function:
|
|
@@ -1189,7 +1189,7 @@ export namespace weighted_pool {
|
|
|
1189
1189
|
}
|
|
1190
1190
|
|
|
1191
1191
|
export interface FlashloanHelper<T0, T1, T2, T3, T4, T5, T6, T7> {
|
|
1192
|
-
locked:
|
|
1192
|
+
locked: boolean;
|
|
1193
1193
|
flashloan_fee_bps: bigint;
|
|
1194
1194
|
flashloan_events: _0x1.event.EventHandle<
|
|
1195
1195
|
weighted_pool.FlashloanEvent<T0, T1, T2, T3, T4, T5, T6, T7>
|
|
@@ -1317,7 +1317,7 @@ export namespace weighted_pool {
|
|
|
1317
1317
|
}
|
|
1318
1318
|
|
|
1319
1319
|
export interface Weight_10 {
|
|
1320
|
-
dummy_field:
|
|
1320
|
+
dummy_field: boolean;
|
|
1321
1321
|
}
|
|
1322
1322
|
|
|
1323
1323
|
export namespace Weight_10 {
|
|
@@ -1332,7 +1332,7 @@ export namespace weighted_pool {
|
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
1334
|
export interface Weight_15 {
|
|
1335
|
-
dummy_field:
|
|
1335
|
+
dummy_field: boolean;
|
|
1336
1336
|
}
|
|
1337
1337
|
|
|
1338
1338
|
export namespace Weight_15 {
|
|
@@ -1347,7 +1347,7 @@ export namespace weighted_pool {
|
|
|
1347
1347
|
}
|
|
1348
1348
|
|
|
1349
1349
|
export interface Weight_20 {
|
|
1350
|
-
dummy_field:
|
|
1350
|
+
dummy_field: boolean;
|
|
1351
1351
|
}
|
|
1352
1352
|
|
|
1353
1353
|
export namespace Weight_20 {
|
|
@@ -1362,7 +1362,7 @@ export namespace weighted_pool {
|
|
|
1362
1362
|
}
|
|
1363
1363
|
|
|
1364
1364
|
export interface Weight_25 {
|
|
1365
|
-
dummy_field:
|
|
1365
|
+
dummy_field: boolean;
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
1368
|
export namespace Weight_25 {
|
|
@@ -1377,7 +1377,7 @@ export namespace weighted_pool {
|
|
|
1377
1377
|
}
|
|
1378
1378
|
|
|
1379
1379
|
export interface Weight_30 {
|
|
1380
|
-
dummy_field:
|
|
1380
|
+
dummy_field: boolean;
|
|
1381
1381
|
}
|
|
1382
1382
|
|
|
1383
1383
|
export namespace Weight_30 {
|
|
@@ -1392,7 +1392,7 @@ export namespace weighted_pool {
|
|
|
1392
1392
|
}
|
|
1393
1393
|
|
|
1394
1394
|
export interface Weight_35 {
|
|
1395
|
-
dummy_field:
|
|
1395
|
+
dummy_field: boolean;
|
|
1396
1396
|
}
|
|
1397
1397
|
|
|
1398
1398
|
export namespace Weight_35 {
|
|
@@ -1407,7 +1407,7 @@ export namespace weighted_pool {
|
|
|
1407
1407
|
}
|
|
1408
1408
|
|
|
1409
1409
|
export interface Weight_40 {
|
|
1410
|
-
dummy_field:
|
|
1410
|
+
dummy_field: boolean;
|
|
1411
1411
|
}
|
|
1412
1412
|
|
|
1413
1413
|
export namespace Weight_40 {
|
|
@@ -1422,7 +1422,7 @@ export namespace weighted_pool {
|
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
1424
|
export interface Weight_45 {
|
|
1425
|
-
dummy_field:
|
|
1425
|
+
dummy_field: boolean;
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
1428
1428
|
export namespace Weight_45 {
|
|
@@ -1437,7 +1437,7 @@ export namespace weighted_pool {
|
|
|
1437
1437
|
}
|
|
1438
1438
|
|
|
1439
1439
|
export interface Weight_5 {
|
|
1440
|
-
dummy_field:
|
|
1440
|
+
dummy_field: boolean;
|
|
1441
1441
|
}
|
|
1442
1442
|
|
|
1443
1443
|
export namespace Weight_5 {
|
|
@@ -1452,7 +1452,7 @@ export namespace weighted_pool {
|
|
|
1452
1452
|
}
|
|
1453
1453
|
|
|
1454
1454
|
export interface Weight_50 {
|
|
1455
|
-
dummy_field:
|
|
1455
|
+
dummy_field: boolean;
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
1458
1458
|
export namespace Weight_50 {
|
|
@@ -1467,7 +1467,7 @@ export namespace weighted_pool {
|
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
1469
|
export interface Weight_55 {
|
|
1470
|
-
dummy_field:
|
|
1470
|
+
dummy_field: boolean;
|
|
1471
1471
|
}
|
|
1472
1472
|
|
|
1473
1473
|
export namespace Weight_55 {
|
|
@@ -1482,7 +1482,7 @@ export namespace weighted_pool {
|
|
|
1482
1482
|
}
|
|
1483
1483
|
|
|
1484
1484
|
export interface Weight_60 {
|
|
1485
|
-
dummy_field:
|
|
1485
|
+
dummy_field: boolean;
|
|
1486
1486
|
}
|
|
1487
1487
|
|
|
1488
1488
|
export namespace Weight_60 {
|
|
@@ -1497,7 +1497,7 @@ export namespace weighted_pool {
|
|
|
1497
1497
|
}
|
|
1498
1498
|
|
|
1499
1499
|
export interface Weight_65 {
|
|
1500
|
-
dummy_field:
|
|
1500
|
+
dummy_field: boolean;
|
|
1501
1501
|
}
|
|
1502
1502
|
|
|
1503
1503
|
export namespace Weight_65 {
|
|
@@ -1512,7 +1512,7 @@ export namespace weighted_pool {
|
|
|
1512
1512
|
}
|
|
1513
1513
|
|
|
1514
1514
|
export interface Weight_70 {
|
|
1515
|
-
dummy_field:
|
|
1515
|
+
dummy_field: boolean;
|
|
1516
1516
|
}
|
|
1517
1517
|
|
|
1518
1518
|
export namespace Weight_70 {
|
|
@@ -1527,7 +1527,7 @@ export namespace weighted_pool {
|
|
|
1527
1527
|
}
|
|
1528
1528
|
|
|
1529
1529
|
export interface Weight_75 {
|
|
1530
|
-
dummy_field:
|
|
1530
|
+
dummy_field: boolean;
|
|
1531
1531
|
}
|
|
1532
1532
|
|
|
1533
1533
|
export namespace Weight_75 {
|
|
@@ -1542,7 +1542,7 @@ export namespace weighted_pool {
|
|
|
1542
1542
|
}
|
|
1543
1543
|
|
|
1544
1544
|
export interface Weight_80 {
|
|
1545
|
-
dummy_field:
|
|
1545
|
+
dummy_field: boolean;
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
1548
|
export namespace Weight_80 {
|
|
@@ -1557,7 +1557,7 @@ export namespace weighted_pool {
|
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
1559
|
export interface Weight_85 {
|
|
1560
|
-
dummy_field:
|
|
1560
|
+
dummy_field: boolean;
|
|
1561
1561
|
}
|
|
1562
1562
|
|
|
1563
1563
|
export namespace Weight_85 {
|
|
@@ -1572,7 +1572,7 @@ export namespace weighted_pool {
|
|
|
1572
1572
|
}
|
|
1573
1573
|
|
|
1574
1574
|
export interface Weight_90 {
|
|
1575
|
-
dummy_field:
|
|
1575
|
+
dummy_field: boolean;
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
1578
|
export namespace Weight_90 {
|
|
@@ -1587,7 +1587,7 @@ export namespace weighted_pool {
|
|
|
1587
1587
|
}
|
|
1588
1588
|
|
|
1589
1589
|
export interface Weight_95 {
|
|
1590
|
-
dummy_field:
|
|
1590
|
+
dummy_field: boolean;
|
|
1591
1591
|
}
|
|
1592
1592
|
|
|
1593
1593
|
export namespace Weight_95 {
|
|
@@ -1832,7 +1832,7 @@ export namespace weighted_pool {
|
|
|
1832
1832
|
}
|
|
1833
1833
|
|
|
1834
1834
|
export interface WeightedPoolToken<T0, T1, T2, T3, T4, T5, T6, T7> {
|
|
1835
|
-
dummy_field:
|
|
1835
|
+
dummy_field: boolean;
|
|
1836
1836
|
}
|
|
1837
1837
|
|
|
1838
1838
|
export namespace WeightedPoolToken {
|
|
@@ -2215,7 +2215,7 @@ export namespace weighted_pool {
|
|
|
2215
2215
|
];
|
|
2216
2216
|
},
|
|
2217
2217
|
version?: bigint,
|
|
2218
|
-
): Promise<[
|
|
2218
|
+
): Promise<[boolean]> {
|
|
2219
2219
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2220
2220
|
const data: InputViewFunctionData = {
|
|
2221
2221
|
function:
|
package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts
CHANGED
|
@@ -70,7 +70,7 @@ export namespace amm {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
export interface LP<T0, T1> {
|
|
73
|
-
dummy_field:
|
|
73
|
+
dummy_field: boolean;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
export namespace LP {
|
|
@@ -93,7 +93,7 @@ export namespace amm {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
export interface Pool<T0, T1> {
|
|
96
|
-
frozen:
|
|
96
|
+
frozen: boolean;
|
|
97
97
|
timestamp: bigint;
|
|
98
98
|
fee_bps: bigint;
|
|
99
99
|
swap_events: _0x1.event.EventHandle<amm.SwapEvent>;
|
|
@@ -634,7 +634,7 @@ export namespace vault {
|
|
|
634
634
|
}
|
|
635
635
|
|
|
636
636
|
export interface Nothing {
|
|
637
|
-
dummy_field:
|
|
637
|
+
dummy_field: boolean;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
export namespace Nothing {
|
|
@@ -1061,7 +1061,7 @@ export namespace uint256 {
|
|
|
1061
1061
|
|
|
1062
1062
|
export namespace aux_coin {
|
|
1063
1063
|
export interface AuxCoin {
|
|
1064
|
-
dummy_field:
|
|
1064
|
+
dummy_field: boolean;
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
1067
|
export namespace AuxCoin {
|
|
@@ -1257,7 +1257,7 @@ export namespace critbit_v {
|
|
|
1257
1257
|
|
|
1258
1258
|
export namespace fake_coin {
|
|
1259
1259
|
export interface AUX {
|
|
1260
|
-
dummy_field:
|
|
1260
|
+
dummy_field: boolean;
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
1263
|
export namespace AUX {
|
|
@@ -1272,7 +1272,7 @@ export namespace fake_coin {
|
|
|
1272
1272
|
}
|
|
1273
1273
|
|
|
1274
1274
|
export interface BTC {
|
|
1275
|
-
dummy_field:
|
|
1275
|
+
dummy_field: boolean;
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
1278
|
export namespace BTC {
|
|
@@ -1287,7 +1287,7 @@ export namespace fake_coin {
|
|
|
1287
1287
|
}
|
|
1288
1288
|
|
|
1289
1289
|
export interface ETH {
|
|
1290
|
-
dummy_field:
|
|
1290
|
+
dummy_field: boolean;
|
|
1291
1291
|
}
|
|
1292
1292
|
|
|
1293
1293
|
export namespace ETH {
|
|
@@ -1302,7 +1302,7 @@ export namespace fake_coin {
|
|
|
1302
1302
|
}
|
|
1303
1303
|
|
|
1304
1304
|
export interface FakeCoin<T0> {
|
|
1305
|
-
dummy_field:
|
|
1305
|
+
dummy_field: boolean;
|
|
1306
1306
|
}
|
|
1307
1307
|
|
|
1308
1308
|
export namespace FakeCoin {
|
|
@@ -1319,7 +1319,7 @@ export namespace fake_coin {
|
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
1321
|
export interface SOL {
|
|
1322
|
-
dummy_field:
|
|
1322
|
+
dummy_field: boolean;
|
|
1323
1323
|
}
|
|
1324
1324
|
|
|
1325
1325
|
export namespace SOL {
|
|
@@ -1334,7 +1334,7 @@ export namespace fake_coin {
|
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
1336
|
export interface USDC {
|
|
1337
|
-
dummy_field:
|
|
1337
|
+
dummy_field: boolean;
|
|
1338
1338
|
}
|
|
1339
1339
|
|
|
1340
1340
|
export namespace USDC {
|
|
@@ -1349,7 +1349,7 @@ export namespace fake_coin {
|
|
|
1349
1349
|
}
|
|
1350
1350
|
|
|
1351
1351
|
export interface USDT {
|
|
1352
|
-
dummy_field:
|
|
1352
|
+
dummy_field: boolean;
|
|
1353
1353
|
}
|
|
1354
1354
|
|
|
1355
1355
|
export namespace USDT {
|
|
@@ -1644,7 +1644,7 @@ export namespace clob_market {
|
|
|
1644
1644
|
price: bigint;
|
|
1645
1645
|
quantity: bigint;
|
|
1646
1646
|
aux_au_to_burn_per_lot: bigint;
|
|
1647
|
-
is_bid:
|
|
1647
|
+
is_bid: boolean;
|
|
1648
1648
|
owner_id: MoveAddressType;
|
|
1649
1649
|
timeout_timestamp: bigint;
|
|
1650
1650
|
order_type: bigint;
|
|
@@ -1672,7 +1672,7 @@ export namespace clob_market {
|
|
|
1672
1672
|
|
|
1673
1673
|
export interface OpenOrderInfo {
|
|
1674
1674
|
price: bigint;
|
|
1675
|
-
is_bid:
|
|
1675
|
+
is_bid: boolean;
|
|
1676
1676
|
}
|
|
1677
1677
|
|
|
1678
1678
|
export namespace OpenOrderInfo {
|
|
@@ -1721,7 +1721,7 @@ export namespace clob_market {
|
|
|
1721
1721
|
price: bigint;
|
|
1722
1722
|
quantity: bigint;
|
|
1723
1723
|
aux_au_to_burn_per_lot: bigint;
|
|
1724
|
-
is_bid:
|
|
1724
|
+
is_bid: boolean;
|
|
1725
1725
|
owner_id: MoveAddressType;
|
|
1726
1726
|
timeout_timestamp: bigint;
|
|
1727
1727
|
order_type: bigint;
|
|
@@ -1770,7 +1770,7 @@ export namespace clob_market {
|
|
|
1770
1770
|
export interface OrderFillEvent {
|
|
1771
1771
|
order_id: bigint;
|
|
1772
1772
|
client_order_id: bigint;
|
|
1773
|
-
is_bid:
|
|
1773
|
+
is_bid: boolean;
|
|
1774
1774
|
owner: MoveAddressType;
|
|
1775
1775
|
base_qty: bigint;
|
|
1776
1776
|
price: bigint;
|
|
@@ -1801,7 +1801,7 @@ export namespace clob_market {
|
|
|
1801
1801
|
order_id: bigint;
|
|
1802
1802
|
client_order_id: bigint;
|
|
1803
1803
|
owner: MoveAddressType;
|
|
1804
|
-
is_bid:
|
|
1804
|
+
is_bid: boolean;
|
|
1805
1805
|
qty: bigint;
|
|
1806
1806
|
price: bigint;
|
|
1807
1807
|
timestamp: bigint;
|
|
@@ -1907,7 +1907,7 @@ export namespace clob_market {
|
|
|
1907
1907
|
account: AptosAccount,
|
|
1908
1908
|
request: {
|
|
1909
1909
|
typeArguments: [MoveStructId, MoveStructId];
|
|
1910
|
-
functionArguments: [MoveAddressType, bigint, bigint,
|
|
1910
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
|
1911
1911
|
},
|
|
1912
1912
|
options?: InputGenerateTransactionOptions,
|
|
1913
1913
|
): Promise<PendingTransactionResponse> {
|
|
@@ -2035,14 +2035,14 @@ export namespace clob_market {
|
|
|
2035
2035
|
typeArguments: [MoveStructId, MoveStructId];
|
|
2036
2036
|
functionArguments: [
|
|
2037
2037
|
MoveAddressType,
|
|
2038
|
-
|
|
2038
|
+
boolean,
|
|
2039
2039
|
bigint,
|
|
2040
2040
|
bigint,
|
|
2041
2041
|
bigint,
|
|
2042
2042
|
bigint,
|
|
2043
2043
|
bigint,
|
|
2044
2044
|
bigint,
|
|
2045
|
-
|
|
2045
|
+
boolean,
|
|
2046
2046
|
bigint,
|
|
2047
2047
|
bigint,
|
|
2048
2048
|
];
|
|
@@ -2097,7 +2097,7 @@ export namespace clob_market {
|
|
|
2097
2097
|
|
|
2098
2098
|
export namespace fake_markets {
|
|
2099
2099
|
export interface Initialized {
|
|
2100
|
-
dummy_field:
|
|
2100
|
+
dummy_field: boolean;
|
|
2101
2101
|
}
|
|
2102
2102
|
|
|
2103
2103
|
export namespace Initialized {
|