@sentio/sdk 2.52.0-rc.1 → 2.52.0-rc.3
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 +57 -52
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +200 -196
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +14 -14
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js +56 -56
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +3 -3
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js +10 -10
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/sui/sui-object-processor.js +1 -1
- package/lib/sui/sui-object-processor.js.map +1 -1
- package/package.json +8 -8
- package/src/aptos/builtin/0x1.ts +441 -420
- package/src/aptos/builtin/0x3.ts +119 -119
- package/src/aptos/builtin/0x4.ts +17 -17
- package/src/sui/sui-object-processor.ts +1 -1
package/lib/aptos/builtin/0x1.js
CHANGED
@@ -262,14 +262,14 @@ export class coin extends AptosBaseProcessor {
|
|
262
262
|
this.onMoveEvent(func, { type: "coin::CoinWithdraw" }, fetchConfig);
|
263
263
|
return this;
|
264
264
|
}
|
265
|
-
onEventPairCreation(func, fetchConfig) {
|
266
|
-
this.onMoveEvent(func, { type: "coin::PairCreation" }, fetchConfig);
|
267
|
-
return this;
|
268
|
-
}
|
269
265
|
onEventDepositEvent(func, fetchConfig) {
|
270
266
|
this.onMoveEvent(func, { type: "coin::DepositEvent" }, fetchConfig);
|
271
267
|
return this;
|
272
268
|
}
|
269
|
+
onEventPairCreation(func, fetchConfig) {
|
270
|
+
this.onMoveEvent(func, { type: "coin::PairCreation" }, fetchConfig);
|
271
|
+
return this;
|
272
|
+
}
|
273
273
|
onEventWithdrawEvent(func, fetchConfig) {
|
274
274
|
this.onMoveEvent(func, { type: "coin::WithdrawEvent" }, fetchConfig);
|
275
275
|
return this;
|
@@ -1068,14 +1068,14 @@ export class block extends AptosBaseProcessor {
|
|
1068
1068
|
this.onMoveEvent(func, { type: "block::NewBlock" }, fetchConfig);
|
1069
1069
|
return this;
|
1070
1070
|
}
|
1071
|
-
onEventUpdateEpochInterval(func, fetchConfig) {
|
1072
|
-
this.onMoveEvent(func, { type: "block::UpdateEpochInterval" }, fetchConfig);
|
1073
|
-
return this;
|
1074
|
-
}
|
1075
1071
|
onEventNewBlockEvent(func, fetchConfig) {
|
1076
1072
|
this.onMoveEvent(func, { type: "block::NewBlockEvent" }, fetchConfig);
|
1077
1073
|
return this;
|
1078
1074
|
}
|
1075
|
+
onEventUpdateEpochInterval(func, fetchConfig) {
|
1076
|
+
this.onMoveEvent(func, { type: "block::UpdateEpochInterval" }, fetchConfig);
|
1077
|
+
return this;
|
1078
|
+
}
|
1079
1079
|
onEventUpdateEpochIntervalEvent(func, fetchConfig) {
|
1080
1080
|
this.onMoveEvent(func, { type: "block::UpdateEpochIntervalEvent" }, fetchConfig);
|
1081
1081
|
return this;
|
@@ -1288,98 +1288,98 @@ export class stake extends AptosBaseProcessor {
|
|
1288
1288
|
this.onMoveEvent(func, { type: "stake::AddStake" }, fetchConfig);
|
1289
1289
|
return this;
|
1290
1290
|
}
|
1291
|
+
onEventAddStakeEvent(func, fetchConfig) {
|
1292
|
+
this.onMoveEvent(func, { type: "stake::AddStakeEvent" }, fetchConfig);
|
1293
|
+
return this;
|
1294
|
+
}
|
1291
1295
|
onEventDistributeRewards(func, fetchConfig) {
|
1292
1296
|
this.onMoveEvent(func, { type: "stake::DistributeRewards" }, fetchConfig);
|
1293
1297
|
return this;
|
1294
1298
|
}
|
1299
|
+
onEventDistributeRewardsEvent(func, fetchConfig) {
|
1300
|
+
this.onMoveEvent(func, { type: "stake::DistributeRewardsEvent" }, fetchConfig);
|
1301
|
+
return this;
|
1302
|
+
}
|
1295
1303
|
onEventIncreaseLockup(func, fetchConfig) {
|
1296
1304
|
this.onMoveEvent(func, { type: "stake::IncreaseLockup" }, fetchConfig);
|
1297
1305
|
return this;
|
1298
1306
|
}
|
1307
|
+
onEventIncreaseLockupEvent(func, fetchConfig) {
|
1308
|
+
this.onMoveEvent(func, { type: "stake::IncreaseLockupEvent" }, fetchConfig);
|
1309
|
+
return this;
|
1310
|
+
}
|
1299
1311
|
onEventJoinValidatorSet(func, fetchConfig) {
|
1300
1312
|
this.onMoveEvent(func, { type: "stake::JoinValidatorSet" }, fetchConfig);
|
1301
1313
|
return this;
|
1302
1314
|
}
|
1315
|
+
onEventJoinValidatorSetEvent(func, fetchConfig) {
|
1316
|
+
this.onMoveEvent(func, { type: "stake::JoinValidatorSetEvent" }, fetchConfig);
|
1317
|
+
return this;
|
1318
|
+
}
|
1303
1319
|
onEventLeaveValidatorSet(func, fetchConfig) {
|
1304
1320
|
this.onMoveEvent(func, { type: "stake::LeaveValidatorSet" }, fetchConfig);
|
1305
1321
|
return this;
|
1306
1322
|
}
|
1307
|
-
|
1308
|
-
this.onMoveEvent(func, { type: "stake::
|
1323
|
+
onEventLeaveValidatorSetEvent(func, fetchConfig) {
|
1324
|
+
this.onMoveEvent(func, { type: "stake::LeaveValidatorSetEvent" }, fetchConfig);
|
1309
1325
|
return this;
|
1310
1326
|
}
|
1311
|
-
|
1312
|
-
this.onMoveEvent(func, { type: "stake::
|
1327
|
+
onEventReactivateStake(func, fetchConfig) {
|
1328
|
+
this.onMoveEvent(func, { type: "stake::ReactivateStake" }, fetchConfig);
|
1313
1329
|
return this;
|
1314
1330
|
}
|
1315
|
-
|
1316
|
-
this.onMoveEvent(func, { type: "stake::
|
1331
|
+
onEventReactivateStakeEvent(func, fetchConfig) {
|
1332
|
+
this.onMoveEvent(func, { type: "stake::ReactivateStakeEvent" }, fetchConfig);
|
1317
1333
|
return this;
|
1318
1334
|
}
|
1319
|
-
|
1320
|
-
this.onMoveEvent(func, { type: "stake::
|
1335
|
+
onEventRegisterValidatorCandidate(func, fetchConfig) {
|
1336
|
+
this.onMoveEvent(func, { type: "stake::RegisterValidatorCandidate" }, fetchConfig);
|
1321
1337
|
return this;
|
1322
1338
|
}
|
1323
|
-
|
1324
|
-
this.onMoveEvent(func, { type: "stake::
|
1339
|
+
onEventRegisterValidatorCandidateEvent(func, fetchConfig) {
|
1340
|
+
this.onMoveEvent(func, { type: "stake::RegisterValidatorCandidateEvent" }, fetchConfig);
|
1325
1341
|
return this;
|
1326
1342
|
}
|
1327
|
-
|
1328
|
-
this.onMoveEvent(func, { type: "stake::
|
1343
|
+
onEventRotateConsensusKey(func, fetchConfig) {
|
1344
|
+
this.onMoveEvent(func, { type: "stake::RotateConsensusKey" }, fetchConfig);
|
1329
1345
|
return this;
|
1330
1346
|
}
|
1331
|
-
|
1332
|
-
this.onMoveEvent(func, { type: "stake::
|
1347
|
+
onEventRotateConsensusKeyEvent(func, fetchConfig) {
|
1348
|
+
this.onMoveEvent(func, { type: "stake::RotateConsensusKeyEvent" }, fetchConfig);
|
1333
1349
|
return this;
|
1334
1350
|
}
|
1335
|
-
|
1336
|
-
this.onMoveEvent(func, { type: "stake::
|
1351
|
+
onEventSetOperator(func, fetchConfig) {
|
1352
|
+
this.onMoveEvent(func, { type: "stake::SetOperator" }, fetchConfig);
|
1337
1353
|
return this;
|
1338
1354
|
}
|
1339
1355
|
onEventSetOperatorEvent(func, fetchConfig) {
|
1340
1356
|
this.onMoveEvent(func, { type: "stake::SetOperatorEvent" }, fetchConfig);
|
1341
1357
|
return this;
|
1342
1358
|
}
|
1343
|
-
|
1344
|
-
this.onMoveEvent(func, { type: "stake::
|
1359
|
+
onEventUnlockStake(func, fetchConfig) {
|
1360
|
+
this.onMoveEvent(func, { type: "stake::UnlockStake" }, fetchConfig);
|
1345
1361
|
return this;
|
1346
1362
|
}
|
1347
|
-
|
1348
|
-
this.onMoveEvent(func, { type: "stake::
|
1363
|
+
onEventUnlockStakeEvent(func, fetchConfig) {
|
1364
|
+
this.onMoveEvent(func, { type: "stake::UnlockStakeEvent" }, fetchConfig);
|
1349
1365
|
return this;
|
1350
1366
|
}
|
1351
|
-
|
1352
|
-
this.onMoveEvent(func, { type: "stake::
|
1367
|
+
onEventUpdateNetworkAndFullnodeAddresses(func, fetchConfig) {
|
1368
|
+
this.onMoveEvent(func, { type: "stake::UpdateNetworkAndFullnodeAddresses" }, fetchConfig);
|
1353
1369
|
return this;
|
1354
1370
|
}
|
1355
1371
|
onEventUpdateNetworkAndFullnodeAddressesEvent(func, fetchConfig) {
|
1356
1372
|
this.onMoveEvent(func, { type: "stake::UpdateNetworkAndFullnodeAddressesEvent" }, fetchConfig);
|
1357
1373
|
return this;
|
1358
1374
|
}
|
1359
|
-
|
1360
|
-
this.onMoveEvent(func, { type: "stake::
|
1361
|
-
return this;
|
1362
|
-
}
|
1363
|
-
onEventJoinValidatorSetEvent(func, fetchConfig) {
|
1364
|
-
this.onMoveEvent(func, { type: "stake::JoinValidatorSetEvent" }, fetchConfig);
|
1365
|
-
return this;
|
1366
|
-
}
|
1367
|
-
onEventDistributeRewardsEvent(func, fetchConfig) {
|
1368
|
-
this.onMoveEvent(func, { type: "stake::DistributeRewardsEvent" }, fetchConfig);
|
1369
|
-
return this;
|
1370
|
-
}
|
1371
|
-
onEventUnlockStakeEvent(func, fetchConfig) {
|
1372
|
-
this.onMoveEvent(func, { type: "stake::UnlockStakeEvent" }, fetchConfig);
|
1375
|
+
onEventWithdrawStake(func, fetchConfig) {
|
1376
|
+
this.onMoveEvent(func, { type: "stake::WithdrawStake" }, fetchConfig);
|
1373
1377
|
return this;
|
1374
1378
|
}
|
1375
1379
|
onEventWithdrawStakeEvent(func, fetchConfig) {
|
1376
1380
|
this.onMoveEvent(func, { type: "stake::WithdrawStakeEvent" }, fetchConfig);
|
1377
1381
|
return this;
|
1378
1382
|
}
|
1379
|
-
onEventLeaveValidatorSetEvent(func, fetchConfig) {
|
1380
|
-
this.onMoveEvent(func, { type: "stake::LeaveValidatorSetEvent" }, fetchConfig);
|
1381
|
-
return this;
|
1382
|
-
}
|
1383
1383
|
}
|
1384
1384
|
(function (stake) {
|
1385
1385
|
let AddStake;
|
@@ -2436,10 +2436,18 @@ export class voting extends AptosBaseProcessor {
|
|
2436
2436
|
this.onMoveEvent(func, { type: "voting::CreateProposal" }, fetchConfig);
|
2437
2437
|
return this;
|
2438
2438
|
}
|
2439
|
+
onEventCreateProposalEvent(func, fetchConfig) {
|
2440
|
+
this.onMoveEvent(func, { type: "voting::CreateProposalEvent" }, fetchConfig);
|
2441
|
+
return this;
|
2442
|
+
}
|
2439
2443
|
onEventRegisterForum(func, fetchConfig) {
|
2440
2444
|
this.onMoveEvent(func, { type: "voting::RegisterForum" }, fetchConfig);
|
2441
2445
|
return this;
|
2442
2446
|
}
|
2447
|
+
onEventRegisterForumEvent(func, fetchConfig) {
|
2448
|
+
this.onMoveEvent(func, { type: "voting::RegisterForumEvent" }, fetchConfig);
|
2449
|
+
return this;
|
2450
|
+
}
|
2443
2451
|
onEventResolveProposal(func, fetchConfig) {
|
2444
2452
|
this.onMoveEvent(func, { type: "voting::ResolveProposal" }, fetchConfig);
|
2445
2453
|
return this;
|
@@ -2448,14 +2456,6 @@ export class voting extends AptosBaseProcessor {
|
|
2448
2456
|
this.onMoveEvent(func, { type: "voting::Vote" }, fetchConfig);
|
2449
2457
|
return this;
|
2450
2458
|
}
|
2451
|
-
onEventCreateProposalEvent(func, fetchConfig) {
|
2452
|
-
this.onMoveEvent(func, { type: "voting::CreateProposalEvent" }, fetchConfig);
|
2453
|
-
return this;
|
2454
|
-
}
|
2455
|
-
onEventRegisterForumEvent(func, fetchConfig) {
|
2456
|
-
this.onMoveEvent(func, { type: "voting::RegisterForumEvent" }, fetchConfig);
|
2457
|
-
return this;
|
2458
|
-
}
|
2459
2459
|
onEventVoteEvent(func, fetchConfig) {
|
2460
2460
|
this.onMoveEvent(func, { type: "voting::VoteEvent" }, fetchConfig);
|
2461
2461
|
return this;
|
@@ -2859,14 +2859,14 @@ export class account extends AptosBaseProcessor {
|
|
2859
2859
|
this.onMoveEvent(func, { type: "account::CoinRegister" }, fetchConfig);
|
2860
2860
|
return this;
|
2861
2861
|
}
|
2862
|
-
onEventKeyRotation(func, fetchConfig) {
|
2863
|
-
this.onMoveEvent(func, { type: "account::KeyRotation" }, fetchConfig);
|
2864
|
-
return this;
|
2865
|
-
}
|
2866
2862
|
onEventCoinRegisterEvent(func, fetchConfig) {
|
2867
2863
|
this.onMoveEvent(func, { type: "account::CoinRegisterEvent" }, fetchConfig);
|
2868
2864
|
return this;
|
2869
2865
|
}
|
2866
|
+
onEventKeyRotation(func, fetchConfig) {
|
2867
|
+
this.onMoveEvent(func, { type: "account::KeyRotation" }, fetchConfig);
|
2868
|
+
return this;
|
2869
|
+
}
|
2870
2870
|
onEventKeyRotationEvent(func, fetchConfig) {
|
2871
2871
|
this.onMoveEvent(func, { type: "account::KeyRotationEvent" }, fetchConfig);
|
2872
2872
|
return this;
|
@@ -3581,82 +3581,82 @@ export class vesting extends AptosBaseProcessor {
|
|
3581
3581
|
this.onMoveEvent(func, { type: "vesting::AdminWithdraw" }, fetchConfig);
|
3582
3582
|
return this;
|
3583
3583
|
}
|
3584
|
+
onEventAdminWithdrawEvent(func, fetchConfig) {
|
3585
|
+
this.onMoveEvent(func, { type: "vesting::AdminWithdrawEvent" }, fetchConfig);
|
3586
|
+
return this;
|
3587
|
+
}
|
3584
3588
|
onEventCreateVestingContract(func, fetchConfig) {
|
3585
3589
|
this.onMoveEvent(func, { type: "vesting::CreateVestingContract" }, fetchConfig);
|
3586
3590
|
return this;
|
3587
3591
|
}
|
3592
|
+
onEventCreateVestingContractEvent(func, fetchConfig) {
|
3593
|
+
this.onMoveEvent(func, { type: "vesting::CreateVestingContractEvent" }, fetchConfig);
|
3594
|
+
return this;
|
3595
|
+
}
|
3588
3596
|
onEventDistribute(func, fetchConfig) {
|
3589
3597
|
this.onMoveEvent(func, { type: "vesting::Distribute" }, fetchConfig);
|
3590
3598
|
return this;
|
3591
3599
|
}
|
3600
|
+
onEventDistributeEvent(func, fetchConfig) {
|
3601
|
+
this.onMoveEvent(func, { type: "vesting::DistributeEvent" }, fetchConfig);
|
3602
|
+
return this;
|
3603
|
+
}
|
3592
3604
|
onEventResetLockup(func, fetchConfig) {
|
3593
3605
|
this.onMoveEvent(func, { type: "vesting::ResetLockup" }, fetchConfig);
|
3594
3606
|
return this;
|
3595
3607
|
}
|
3608
|
+
onEventResetLockupEvent(func, fetchConfig) {
|
3609
|
+
this.onMoveEvent(func, { type: "vesting::ResetLockupEvent" }, fetchConfig);
|
3610
|
+
return this;
|
3611
|
+
}
|
3596
3612
|
onEventSetBeneficiary(func, fetchConfig) {
|
3597
3613
|
this.onMoveEvent(func, { type: "vesting::SetBeneficiary" }, fetchConfig);
|
3598
3614
|
return this;
|
3599
3615
|
}
|
3600
|
-
|
3601
|
-
this.onMoveEvent(func, { type: "vesting::
|
3616
|
+
onEventSetBeneficiaryEvent(func, fetchConfig) {
|
3617
|
+
this.onMoveEvent(func, { type: "vesting::SetBeneficiaryEvent" }, fetchConfig);
|
3602
3618
|
return this;
|
3603
3619
|
}
|
3604
|
-
|
3605
|
-
this.onMoveEvent(func, { type: "vesting::
|
3620
|
+
onEventTerminate(func, fetchConfig) {
|
3621
|
+
this.onMoveEvent(func, { type: "vesting::Terminate" }, fetchConfig);
|
3606
3622
|
return this;
|
3607
3623
|
}
|
3608
|
-
|
3609
|
-
this.onMoveEvent(func, { type: "vesting::
|
3624
|
+
onEventTerminateEvent(func, fetchConfig) {
|
3625
|
+
this.onMoveEvent(func, { type: "vesting::TerminateEvent" }, fetchConfig);
|
3610
3626
|
return this;
|
3611
3627
|
}
|
3612
|
-
|
3613
|
-
this.onMoveEvent(func, { type: "vesting::
|
3628
|
+
onEventUnlockRewards(func, fetchConfig) {
|
3629
|
+
this.onMoveEvent(func, { type: "vesting::UnlockRewards" }, fetchConfig);
|
3614
3630
|
return this;
|
3615
3631
|
}
|
3616
|
-
|
3617
|
-
this.onMoveEvent(func, { type: "vesting::
|
3632
|
+
onEventUnlockRewardsEvent(func, fetchConfig) {
|
3633
|
+
this.onMoveEvent(func, { type: "vesting::UnlockRewardsEvent" }, fetchConfig);
|
3618
3634
|
return this;
|
3619
3635
|
}
|
3620
|
-
|
3621
|
-
this.onMoveEvent(func, { type: "vesting::
|
3636
|
+
onEventUpdateOperator(func, fetchConfig) {
|
3637
|
+
this.onMoveEvent(func, { type: "vesting::UpdateOperator" }, fetchConfig);
|
3622
3638
|
return this;
|
3623
3639
|
}
|
3624
3640
|
onEventUpdateOperatorEvent(func, fetchConfig) {
|
3625
3641
|
this.onMoveEvent(func, { type: "vesting::UpdateOperatorEvent" }, fetchConfig);
|
3626
3642
|
return this;
|
3627
3643
|
}
|
3628
|
-
|
3629
|
-
this.onMoveEvent(func, { type: "vesting::
|
3630
|
-
return this;
|
3631
|
-
}
|
3632
|
-
onEventResetLockupEvent(func, fetchConfig) {
|
3633
|
-
this.onMoveEvent(func, { type: "vesting::ResetLockupEvent" }, fetchConfig);
|
3644
|
+
onEventUpdateVoter(func, fetchConfig) {
|
3645
|
+
this.onMoveEvent(func, { type: "vesting::UpdateVoter" }, fetchConfig);
|
3634
3646
|
return this;
|
3635
3647
|
}
|
3636
|
-
|
3637
|
-
this.onMoveEvent(func, { type: "vesting::
|
3648
|
+
onEventUpdateVoterEvent(func, fetchConfig) {
|
3649
|
+
this.onMoveEvent(func, { type: "vesting::UpdateVoterEvent" }, fetchConfig);
|
3638
3650
|
return this;
|
3639
3651
|
}
|
3640
|
-
|
3641
|
-
this.onMoveEvent(func, { type: "vesting::
|
3652
|
+
onEventVest(func, fetchConfig) {
|
3653
|
+
this.onMoveEvent(func, { type: "vesting::Vest" }, fetchConfig);
|
3642
3654
|
return this;
|
3643
3655
|
}
|
3644
3656
|
onEventVestEvent(func, fetchConfig) {
|
3645
3657
|
this.onMoveEvent(func, { type: "vesting::VestEvent" }, fetchConfig);
|
3646
3658
|
return this;
|
3647
3659
|
}
|
3648
|
-
onEventDistributeEvent(func, fetchConfig) {
|
3649
|
-
this.onMoveEvent(func, { type: "vesting::DistributeEvent" }, fetchConfig);
|
3650
|
-
return this;
|
3651
|
-
}
|
3652
|
-
onEventTerminateEvent(func, fetchConfig) {
|
3653
|
-
this.onMoveEvent(func, { type: "vesting::TerminateEvent" }, fetchConfig);
|
3654
|
-
return this;
|
3655
|
-
}
|
3656
|
-
onEventAdminWithdrawEvent(func, fetchConfig) {
|
3657
|
-
this.onMoveEvent(func, { type: "vesting::AdminWithdrawEvent" }, fetchConfig);
|
3658
|
-
return this;
|
3659
|
-
}
|
3660
3660
|
}
|
3661
3661
|
(function (vesting) {
|
3662
3662
|
let AdminStore;
|
@@ -6090,26 +6090,26 @@ export class fungible_asset extends AptosBaseProcessor {
|
|
6090
6090
|
this.onMoveEvent(func, { type: "fungible_asset::Deposit" }, fetchConfig);
|
6091
6091
|
return this;
|
6092
6092
|
}
|
6093
|
+
onEventDepositEvent(func, fetchConfig) {
|
6094
|
+
this.onMoveEvent(func, { type: "fungible_asset::DepositEvent" }, fetchConfig);
|
6095
|
+
return this;
|
6096
|
+
}
|
6093
6097
|
onEventFrozen(func, fetchConfig) {
|
6094
6098
|
this.onMoveEvent(func, { type: "fungible_asset::Frozen" }, fetchConfig);
|
6095
6099
|
return this;
|
6096
6100
|
}
|
6097
|
-
|
6098
|
-
this.onMoveEvent(func, { type: "fungible_asset::
|
6101
|
+
onEventFrozenEvent(func, fetchConfig) {
|
6102
|
+
this.onMoveEvent(func, { type: "fungible_asset::FrozenEvent" }, fetchConfig);
|
6099
6103
|
return this;
|
6100
6104
|
}
|
6101
|
-
|
6102
|
-
this.onMoveEvent(func, { type: "fungible_asset::
|
6105
|
+
onEventWithdraw(func, fetchConfig) {
|
6106
|
+
this.onMoveEvent(func, { type: "fungible_asset::Withdraw" }, fetchConfig);
|
6103
6107
|
return this;
|
6104
6108
|
}
|
6105
6109
|
onEventWithdrawEvent(func, fetchConfig) {
|
6106
6110
|
this.onMoveEvent(func, { type: "fungible_asset::WithdrawEvent" }, fetchConfig);
|
6107
6111
|
return this;
|
6108
6112
|
}
|
6109
|
-
onEventFrozenEvent(func, fetchConfig) {
|
6110
|
-
this.onMoveEvent(func, { type: "fungible_asset::FrozenEvent" }, fetchConfig);
|
6111
|
-
return this;
|
6112
|
-
}
|
6113
6113
|
}
|
6114
6114
|
(function (fungible_asset) {
|
6115
6115
|
let BurnRef;
|
@@ -6748,6 +6748,10 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
6748
6748
|
this.onMoveEvent(func, { type: "delegation_pool::AddStake" }, fetchConfig);
|
6749
6749
|
return this;
|
6750
6750
|
}
|
6751
|
+
onEventAddStakeEvent(func, fetchConfig) {
|
6752
|
+
this.onMoveEvent(func, { type: "delegation_pool::AddStakeEvent" }, fetchConfig);
|
6753
|
+
return this;
|
6754
|
+
}
|
6751
6755
|
onEventAllowlistDelegator(func, fetchConfig) {
|
6752
6756
|
this.onMoveEvent(func, { type: "delegation_pool::AllowlistDelegator" }, fetchConfig);
|
6753
6757
|
return this;
|
@@ -6760,10 +6764,18 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
6760
6764
|
this.onMoveEvent(func, { type: "delegation_pool::CreateProposal" }, fetchConfig);
|
6761
6765
|
return this;
|
6762
6766
|
}
|
6767
|
+
onEventCreateProposalEvent(func, fetchConfig) {
|
6768
|
+
this.onMoveEvent(func, { type: "delegation_pool::CreateProposalEvent" }, fetchConfig);
|
6769
|
+
return this;
|
6770
|
+
}
|
6763
6771
|
onEventDelegateVotingPower(func, fetchConfig) {
|
6764
6772
|
this.onMoveEvent(func, { type: "delegation_pool::DelegateVotingPower" }, fetchConfig);
|
6765
6773
|
return this;
|
6766
6774
|
}
|
6775
|
+
onEventDelegateVotingPowerEvent(func, fetchConfig) {
|
6776
|
+
this.onMoveEvent(func, { type: "delegation_pool::DelegateVotingPowerEvent" }, fetchConfig);
|
6777
|
+
return this;
|
6778
|
+
}
|
6767
6779
|
onEventDisableDelegatorsAllowlisting(func, fetchConfig) {
|
6768
6780
|
this.onMoveEvent(func, { type: "delegation_pool::DisableDelegatorsAllowlisting" }, fetchConfig);
|
6769
6781
|
return this;
|
@@ -6788,6 +6800,10 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
6788
6800
|
this.onMoveEvent(func, { type: "delegation_pool::ReactivateStake" }, fetchConfig);
|
6789
6801
|
return this;
|
6790
6802
|
}
|
6803
|
+
onEventReactivateStakeEvent(func, fetchConfig) {
|
6804
|
+
this.onMoveEvent(func, { type: "delegation_pool::ReactivateStakeEvent" }, fetchConfig);
|
6805
|
+
return this;
|
6806
|
+
}
|
6791
6807
|
onEventRemoveDelegatorFromAllowlist(func, fetchConfig) {
|
6792
6808
|
this.onMoveEvent(func, { type: "delegation_pool::RemoveDelegatorFromAllowlist" }, fetchConfig);
|
6793
6809
|
return this;
|
@@ -6800,40 +6816,24 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
6800
6816
|
this.onMoveEvent(func, { type: "delegation_pool::UnlockStake" }, fetchConfig);
|
6801
6817
|
return this;
|
6802
6818
|
}
|
6803
|
-
onEventVote(func, fetchConfig) {
|
6804
|
-
this.onMoveEvent(func, { type: "delegation_pool::Vote" }, fetchConfig);
|
6805
|
-
return this;
|
6806
|
-
}
|
6807
|
-
onEventWithdrawStake(func, fetchConfig) {
|
6808
|
-
this.onMoveEvent(func, { type: "delegation_pool::WithdrawStake" }, fetchConfig);
|
6809
|
-
return this;
|
6810
|
-
}
|
6811
|
-
onEventAddStakeEvent(func, fetchConfig) {
|
6812
|
-
this.onMoveEvent(func, { type: "delegation_pool::AddStakeEvent" }, fetchConfig);
|
6813
|
-
return this;
|
6814
|
-
}
|
6815
|
-
onEventReactivateStakeEvent(func, fetchConfig) {
|
6816
|
-
this.onMoveEvent(func, { type: "delegation_pool::ReactivateStakeEvent" }, fetchConfig);
|
6817
|
-
return this;
|
6818
|
-
}
|
6819
6819
|
onEventUnlockStakeEvent(func, fetchConfig) {
|
6820
6820
|
this.onMoveEvent(func, { type: "delegation_pool::UnlockStakeEvent" }, fetchConfig);
|
6821
6821
|
return this;
|
6822
6822
|
}
|
6823
|
-
|
6824
|
-
this.onMoveEvent(func, { type: "delegation_pool::
|
6823
|
+
onEventVote(func, fetchConfig) {
|
6824
|
+
this.onMoveEvent(func, { type: "delegation_pool::Vote" }, fetchConfig);
|
6825
6825
|
return this;
|
6826
6826
|
}
|
6827
6827
|
onEventVoteEvent(func, fetchConfig) {
|
6828
6828
|
this.onMoveEvent(func, { type: "delegation_pool::VoteEvent" }, fetchConfig);
|
6829
6829
|
return this;
|
6830
6830
|
}
|
6831
|
-
|
6832
|
-
this.onMoveEvent(func, { type: "delegation_pool::
|
6831
|
+
onEventWithdrawStake(func, fetchConfig) {
|
6832
|
+
this.onMoveEvent(func, { type: "delegation_pool::WithdrawStake" }, fetchConfig);
|
6833
6833
|
return this;
|
6834
6834
|
}
|
6835
|
-
|
6836
|
-
this.onMoveEvent(func, { type: "delegation_pool::
|
6835
|
+
onEventWithdrawStakeEvent(func, fetchConfig) {
|
6836
|
+
this.onMoveEvent(func, { type: "delegation_pool::WithdrawStakeEvent" }, fetchConfig);
|
6837
6837
|
return this;
|
6838
6838
|
}
|
6839
6839
|
}
|
@@ -8097,22 +8097,22 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
8097
8097
|
this.onMoveEvent(func, { type: "aptos_governance::CreateProposal" }, fetchConfig);
|
8098
8098
|
return this;
|
8099
8099
|
}
|
8100
|
-
onEventUpdateConfig(func, fetchConfig) {
|
8101
|
-
this.onMoveEvent(func, { type: "aptos_governance::UpdateConfig" }, fetchConfig);
|
8102
|
-
return this;
|
8103
|
-
}
|
8104
|
-
onEventVote(func, fetchConfig) {
|
8105
|
-
this.onMoveEvent(func, { type: "aptos_governance::Vote" }, fetchConfig);
|
8106
|
-
return this;
|
8107
|
-
}
|
8108
8100
|
onEventCreateProposalEvent(func, fetchConfig) {
|
8109
8101
|
this.onMoveEvent(func, { type: "aptos_governance::CreateProposalEvent" }, fetchConfig);
|
8110
8102
|
return this;
|
8111
8103
|
}
|
8104
|
+
onEventUpdateConfig(func, fetchConfig) {
|
8105
|
+
this.onMoveEvent(func, { type: "aptos_governance::UpdateConfig" }, fetchConfig);
|
8106
|
+
return this;
|
8107
|
+
}
|
8112
8108
|
onEventUpdateConfigEvent(func, fetchConfig) {
|
8113
8109
|
this.onMoveEvent(func, { type: "aptos_governance::UpdateConfigEvent" }, fetchConfig);
|
8114
8110
|
return this;
|
8115
8111
|
}
|
8112
|
+
onEventVote(func, fetchConfig) {
|
8113
|
+
this.onMoveEvent(func, { type: "aptos_governance::Vote" }, fetchConfig);
|
8114
|
+
return this;
|
8115
|
+
}
|
8116
8116
|
onEventVoteEvent(func, fetchConfig) {
|
8117
8117
|
this.onMoveEvent(func, { type: "aptos_governance::VoteEvent" }, fetchConfig);
|
8118
8118
|
return this;
|
@@ -8865,74 +8865,74 @@ export class multisig_account extends AptosBaseProcessor {
|
|
8865
8865
|
this.onMoveEvent(func, { type: "multisig_account::AddOwners" }, fetchConfig);
|
8866
8866
|
return this;
|
8867
8867
|
}
|
8868
|
+
onEventAddOwnersEvent(func, fetchConfig) {
|
8869
|
+
this.onMoveEvent(func, { type: "multisig_account::AddOwnersEvent" }, fetchConfig);
|
8870
|
+
return this;
|
8871
|
+
}
|
8868
8872
|
onEventCreateTransaction(func, fetchConfig) {
|
8869
8873
|
this.onMoveEvent(func, { type: "multisig_account::CreateTransaction" }, fetchConfig);
|
8870
8874
|
return this;
|
8871
8875
|
}
|
8876
|
+
onEventCreateTransactionEvent(func, fetchConfig) {
|
8877
|
+
this.onMoveEvent(func, { type: "multisig_account::CreateTransactionEvent" }, fetchConfig);
|
8878
|
+
return this;
|
8879
|
+
}
|
8872
8880
|
onEventExecuteRejectedTransaction(func, fetchConfig) {
|
8873
8881
|
this.onMoveEvent(func, { type: "multisig_account::ExecuteRejectedTransaction" }, fetchConfig);
|
8874
8882
|
return this;
|
8875
8883
|
}
|
8884
|
+
onEventExecuteRejectedTransactionEvent(func, fetchConfig) {
|
8885
|
+
this.onMoveEvent(func, { type: "multisig_account::ExecuteRejectedTransactionEvent" }, fetchConfig);
|
8886
|
+
return this;
|
8887
|
+
}
|
8876
8888
|
onEventMetadataUpdated(func, fetchConfig) {
|
8877
8889
|
this.onMoveEvent(func, { type: "multisig_account::MetadataUpdated" }, fetchConfig);
|
8878
8890
|
return this;
|
8879
8891
|
}
|
8892
|
+
onEventMetadataUpdatedEvent(func, fetchConfig) {
|
8893
|
+
this.onMoveEvent(func, { type: "multisig_account::MetadataUpdatedEvent" }, fetchConfig);
|
8894
|
+
return this;
|
8895
|
+
}
|
8880
8896
|
onEventRemoveOwners(func, fetchConfig) {
|
8881
8897
|
this.onMoveEvent(func, { type: "multisig_account::RemoveOwners" }, fetchConfig);
|
8882
8898
|
return this;
|
8883
8899
|
}
|
8884
|
-
|
8885
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8900
|
+
onEventRemoveOwnersEvent(func, fetchConfig) {
|
8901
|
+
this.onMoveEvent(func, { type: "multisig_account::RemoveOwnersEvent" }, fetchConfig);
|
8886
8902
|
return this;
|
8887
8903
|
}
|
8888
|
-
|
8889
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8904
|
+
onEventTransactionExecutionFailed(func, fetchConfig) {
|
8905
|
+
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionFailed" }, fetchConfig);
|
8890
8906
|
return this;
|
8891
8907
|
}
|
8892
|
-
|
8893
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8908
|
+
onEventTransactionExecutionFailedEvent(func, fetchConfig) {
|
8909
|
+
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionFailedEvent" }, fetchConfig);
|
8894
8910
|
return this;
|
8895
8911
|
}
|
8896
|
-
|
8897
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8912
|
+
onEventTransactionExecutionSucceeded(func, fetchConfig) {
|
8913
|
+
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionSucceeded" }, fetchConfig);
|
8898
8914
|
return this;
|
8899
8915
|
}
|
8900
|
-
|
8901
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8916
|
+
onEventTransactionExecutionSucceededEvent(func, fetchConfig) {
|
8917
|
+
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionSucceededEvent" }, fetchConfig);
|
8902
8918
|
return this;
|
8903
8919
|
}
|
8904
|
-
|
8905
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8920
|
+
onEventUpdateSignaturesRequired(func, fetchConfig) {
|
8921
|
+
this.onMoveEvent(func, { type: "multisig_account::UpdateSignaturesRequired" }, fetchConfig);
|
8906
8922
|
return this;
|
8907
8923
|
}
|
8908
8924
|
onEventUpdateSignaturesRequiredEvent(func, fetchConfig) {
|
8909
8925
|
this.onMoveEvent(func, { type: "multisig_account::UpdateSignaturesRequiredEvent" }, fetchConfig);
|
8910
8926
|
return this;
|
8911
8927
|
}
|
8912
|
-
|
8913
|
-
this.onMoveEvent(func, { type: "multisig_account::
|
8928
|
+
onEventVote(func, fetchConfig) {
|
8929
|
+
this.onMoveEvent(func, { type: "multisig_account::Vote" }, fetchConfig);
|
8914
8930
|
return this;
|
8915
8931
|
}
|
8916
8932
|
onEventVoteEvent(func, fetchConfig) {
|
8917
8933
|
this.onMoveEvent(func, { type: "multisig_account::VoteEvent" }, fetchConfig);
|
8918
8934
|
return this;
|
8919
8935
|
}
|
8920
|
-
onEventExecuteRejectedTransactionEvent(func, fetchConfig) {
|
8921
|
-
this.onMoveEvent(func, { type: "multisig_account::ExecuteRejectedTransactionEvent" }, fetchConfig);
|
8922
|
-
return this;
|
8923
|
-
}
|
8924
|
-
onEventTransactionExecutionSucceededEvent(func, fetchConfig) {
|
8925
|
-
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionSucceededEvent" }, fetchConfig);
|
8926
|
-
return this;
|
8927
|
-
}
|
8928
|
-
onEventTransactionExecutionFailedEvent(func, fetchConfig) {
|
8929
|
-
this.onMoveEvent(func, { type: "multisig_account::TransactionExecutionFailedEvent" }, fetchConfig);
|
8930
|
-
return this;
|
8931
|
-
}
|
8932
|
-
onEventMetadataUpdatedEvent(func, fetchConfig) {
|
8933
|
-
this.onMoveEvent(func, { type: "multisig_account::MetadataUpdatedEvent" }, fetchConfig);
|
8934
|
-
return this;
|
8935
|
-
}
|
8936
8936
|
}
|
8937
8937
|
(function (multisig_account) {
|
8938
8938
|
let AddOwners;
|
@@ -10046,86 +10046,90 @@ export class staking_contract extends AptosBaseProcessor {
|
|
10046
10046
|
this.onMoveEvent(func, { type: "staking_contract::AddDistribution" }, fetchConfig);
|
10047
10047
|
return this;
|
10048
10048
|
}
|
10049
|
+
onEventAddDistributionEvent(func, fetchConfig) {
|
10050
|
+
this.onMoveEvent(func, { type: "staking_contract::AddDistributionEvent" }, fetchConfig);
|
10051
|
+
return this;
|
10052
|
+
}
|
10049
10053
|
onEventAddStake(func, fetchConfig) {
|
10050
10054
|
this.onMoveEvent(func, { type: "staking_contract::AddStake" }, fetchConfig);
|
10051
10055
|
return this;
|
10052
10056
|
}
|
10057
|
+
onEventAddStakeEvent(func, fetchConfig) {
|
10058
|
+
this.onMoveEvent(func, { type: "staking_contract::AddStakeEvent" }, fetchConfig);
|
10059
|
+
return this;
|
10060
|
+
}
|
10053
10061
|
onEventCreateStakingContract(func, fetchConfig) {
|
10054
10062
|
this.onMoveEvent(func, { type: "staking_contract::CreateStakingContract" }, fetchConfig);
|
10055
10063
|
return this;
|
10056
10064
|
}
|
10065
|
+
onEventCreateStakingContractEvent(func, fetchConfig) {
|
10066
|
+
this.onMoveEvent(func, { type: "staking_contract::CreateStakingContractEvent" }, fetchConfig);
|
10067
|
+
return this;
|
10068
|
+
}
|
10057
10069
|
onEventDistribute(func, fetchConfig) {
|
10058
10070
|
this.onMoveEvent(func, { type: "staking_contract::Distribute" }, fetchConfig);
|
10059
10071
|
return this;
|
10060
10072
|
}
|
10073
|
+
onEventDistributeEvent(func, fetchConfig) {
|
10074
|
+
this.onMoveEvent(func, { type: "staking_contract::DistributeEvent" }, fetchConfig);
|
10075
|
+
return this;
|
10076
|
+
}
|
10061
10077
|
onEventRequestCommission(func, fetchConfig) {
|
10062
10078
|
this.onMoveEvent(func, { type: "staking_contract::RequestCommission" }, fetchConfig);
|
10063
10079
|
return this;
|
10064
10080
|
}
|
10081
|
+
onEventRequestCommissionEvent(func, fetchConfig) {
|
10082
|
+
this.onMoveEvent(func, { type: "staking_contract::RequestCommissionEvent" }, fetchConfig);
|
10083
|
+
return this;
|
10084
|
+
}
|
10065
10085
|
onEventResetLockup(func, fetchConfig) {
|
10066
10086
|
this.onMoveEvent(func, { type: "staking_contract::ResetLockup" }, fetchConfig);
|
10067
10087
|
return this;
|
10068
10088
|
}
|
10089
|
+
onEventResetLockupEvent(func, fetchConfig) {
|
10090
|
+
this.onMoveEvent(func, { type: "staking_contract::ResetLockupEvent" }, fetchConfig);
|
10091
|
+
return this;
|
10092
|
+
}
|
10069
10093
|
onEventSetBeneficiaryForOperator(func, fetchConfig) {
|
10070
10094
|
this.onMoveEvent(func, { type: "staking_contract::SetBeneficiaryForOperator" }, fetchConfig);
|
10071
10095
|
return this;
|
10072
10096
|
}
|
10097
|
+
onEventStakingGroupUpdateCommissionEvent(func, fetchConfig) {
|
10098
|
+
this.onMoveEvent(func, { type: "staking_contract::StakingGroupUpdateCommissionEvent" }, fetchConfig);
|
10099
|
+
return this;
|
10100
|
+
}
|
10073
10101
|
onEventSwitchOperator(func, fetchConfig) {
|
10074
10102
|
this.onMoveEvent(func, { type: "staking_contract::SwitchOperator" }, fetchConfig);
|
10075
10103
|
return this;
|
10076
10104
|
}
|
10105
|
+
onEventSwitchOperatorEvent(func, fetchConfig) {
|
10106
|
+
this.onMoveEvent(func, { type: "staking_contract::SwitchOperatorEvent" }, fetchConfig);
|
10107
|
+
return this;
|
10108
|
+
}
|
10077
10109
|
onEventUnlockStake(func, fetchConfig) {
|
10078
10110
|
this.onMoveEvent(func, { type: "staking_contract::UnlockStake" }, fetchConfig);
|
10079
10111
|
return this;
|
10080
10112
|
}
|
10081
|
-
|
10082
|
-
this.onMoveEvent(func, { type: "staking_contract::
|
10113
|
+
onEventUnlockStakeEvent(func, fetchConfig) {
|
10114
|
+
this.onMoveEvent(func, { type: "staking_contract::UnlockStakeEvent" }, fetchConfig);
|
10083
10115
|
return this;
|
10084
10116
|
}
|
10085
|
-
|
10086
|
-
this.onMoveEvent(func, { type: "staking_contract::
|
10117
|
+
onEventUpdateCommission(func, fetchConfig) {
|
10118
|
+
this.onMoveEvent(func, { type: "staking_contract::UpdateCommission" }, fetchConfig);
|
10087
10119
|
return this;
|
10088
10120
|
}
|
10089
10121
|
onEventUpdateCommissionEvent(func, fetchConfig) {
|
10090
10122
|
this.onMoveEvent(func, { type: "staking_contract::UpdateCommissionEvent" }, fetchConfig);
|
10091
10123
|
return this;
|
10092
10124
|
}
|
10093
|
-
|
10094
|
-
this.onMoveEvent(func, { type: "staking_contract::
|
10125
|
+
onEventUpdateVoter(func, fetchConfig) {
|
10126
|
+
this.onMoveEvent(func, { type: "staking_contract::UpdateVoter" }, fetchConfig);
|
10095
10127
|
return this;
|
10096
10128
|
}
|
10097
10129
|
onEventUpdateVoterEvent(func, fetchConfig) {
|
10098
10130
|
this.onMoveEvent(func, { type: "staking_contract::UpdateVoterEvent" }, fetchConfig);
|
10099
10131
|
return this;
|
10100
10132
|
}
|
10101
|
-
onEventResetLockupEvent(func, fetchConfig) {
|
10102
|
-
this.onMoveEvent(func, { type: "staking_contract::ResetLockupEvent" }, fetchConfig);
|
10103
|
-
return this;
|
10104
|
-
}
|
10105
|
-
onEventAddStakeEvent(func, fetchConfig) {
|
10106
|
-
this.onMoveEvent(func, { type: "staking_contract::AddStakeEvent" }, fetchConfig);
|
10107
|
-
return this;
|
10108
|
-
}
|
10109
|
-
onEventRequestCommissionEvent(func, fetchConfig) {
|
10110
|
-
this.onMoveEvent(func, { type: "staking_contract::RequestCommissionEvent" }, fetchConfig);
|
10111
|
-
return this;
|
10112
|
-
}
|
10113
|
-
onEventUnlockStakeEvent(func, fetchConfig) {
|
10114
|
-
this.onMoveEvent(func, { type: "staking_contract::UnlockStakeEvent" }, fetchConfig);
|
10115
|
-
return this;
|
10116
|
-
}
|
10117
|
-
onEventSwitchOperatorEvent(func, fetchConfig) {
|
10118
|
-
this.onMoveEvent(func, { type: "staking_contract::SwitchOperatorEvent" }, fetchConfig);
|
10119
|
-
return this;
|
10120
|
-
}
|
10121
|
-
onEventAddDistributionEvent(func, fetchConfig) {
|
10122
|
-
this.onMoveEvent(func, { type: "staking_contract::AddDistributionEvent" }, fetchConfig);
|
10123
|
-
return this;
|
10124
|
-
}
|
10125
|
-
onEventDistributeEvent(func, fetchConfig) {
|
10126
|
-
this.onMoveEvent(func, { type: "staking_contract::DistributeEvent" }, fetchConfig);
|
10127
|
-
return this;
|
10128
|
-
}
|
10129
10133
|
}
|
10130
10134
|
(function (staking_contract) {
|
10131
10135
|
let AddDistribution;
|