@aztec/l1-artifacts 1.0.0-nightly.20250613 → 1.0.0-nightly.20250615
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/dest/ExtRollupLib2Abi.d.ts +1332 -0
- package/dest/ExtRollupLib2Abi.d.ts.map +1 -0
- package/dest/ExtRollupLib2Abi.js +1763 -0
- package/dest/ExtRollupLib2Bytecode.d.ts +9 -0
- package/dest/ExtRollupLib2Bytecode.d.ts.map +1 -0
- package/dest/ExtRollupLib2Bytecode.js +6 -0
- package/dest/ExtRollupLibAbi.d.ts +0 -35
- package/dest/ExtRollupLibAbi.d.ts.map +1 -1
- package/dest/ExtRollupLibAbi.js +0 -44
- package/dest/ExtRollupLibBytecode.d.ts +1 -1
- package/dest/ExtRollupLibBytecode.d.ts.map +1 -1
- package/dest/ExtRollupLibBytecode.js +1 -1
- package/dest/FeeJuicePortalBytecode.d.ts +1 -1
- package/dest/FeeJuicePortalBytecode.js +1 -1
- package/dest/GovernanceProposerBytecode.d.ts +1 -1
- package/dest/GovernanceProposerBytecode.js +1 -1
- package/dest/InboxBytecode.d.ts +1 -1
- package/dest/InboxBytecode.js +1 -1
- package/dest/MultiAdderBytecode.d.ts +1 -1
- package/dest/MultiAdderBytecode.js +1 -1
- package/dest/NewGovernanceProposerPayloadBytecode.d.ts +1 -1
- package/dest/NewGovernanceProposerPayloadBytecode.js +1 -1
- package/dest/OutboxBytecode.d.ts +1 -1
- package/dest/OutboxBytecode.js +1 -1
- package/dest/RegisterNewRollupVersionPayloadBytecode.d.ts +1 -1
- package/dest/RegisterNewRollupVersionPayloadBytecode.js +1 -1
- package/dest/RegistryBytecode.d.ts +1 -1
- package/dest/RegistryBytecode.js +1 -1
- package/dest/RewardDistributorBytecode.d.ts +1 -1
- package/dest/RewardDistributorBytecode.js +1 -1
- package/dest/RollupAbi.d.ts +105 -0
- package/dest/RollupAbi.d.ts.map +1 -1
- package/dest/RollupAbi.js +135 -0
- package/dest/RollupBytecode.d.ts +38 -11
- package/dest/RollupBytecode.d.ts.map +1 -1
- package/dest/RollupBytecode.js +47 -11
- package/dest/RollupStorage.d.ts +3 -3
- package/dest/RollupStorage.js +3 -3
- package/dest/SlashFactoryBytecode.d.ts +1 -1
- package/dest/SlashFactoryBytecode.js +1 -1
- package/dest/StakingAssetHandlerBytecode.d.ts +1 -1
- package/dest/StakingAssetHandlerBytecode.js +1 -1
- package/dest/TokenPortalBytecode.d.ts +1 -1
- package/dest/TokenPortalBytecode.js +1 -1
- package/dest/UniswapPortalBytecode.d.ts +1 -1
- package/dest/UniswapPortalBytecode.js +1 -1
- package/dest/ValidatorSelectionLibBytecode.d.ts +1 -1
- package/dest/ValidatorSelectionLibBytecode.js +1 -1
- package/dest/checksum.d.ts +1 -1
- package/dest/checksum.js +1 -1
- package/dest/index.d.ts +2 -0
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +2 -0
- package/package.json +1 -1
package/dest/RollupAbi.d.ts
CHANGED
|
@@ -830,6 +830,41 @@ export declare const RollupAbi: readonly [{
|
|
|
830
830
|
readonly type: "uint256";
|
|
831
831
|
readonly internalType: "uint256";
|
|
832
832
|
}];
|
|
833
|
+
}, {
|
|
834
|
+
readonly type: "event";
|
|
835
|
+
readonly name: "RewardConfigUpdated";
|
|
836
|
+
readonly inputs: readonly [{
|
|
837
|
+
readonly name: "rewardConfig";
|
|
838
|
+
readonly type: "tuple";
|
|
839
|
+
readonly indexed: false;
|
|
840
|
+
readonly internalType: "struct RewardConfig";
|
|
841
|
+
readonly components: readonly [{
|
|
842
|
+
readonly name: "sequencerBps";
|
|
843
|
+
readonly type: "uint32";
|
|
844
|
+
readonly internalType: "Bps";
|
|
845
|
+
}, {
|
|
846
|
+
readonly name: "increment";
|
|
847
|
+
readonly type: "uint32";
|
|
848
|
+
readonly internalType: "uint32";
|
|
849
|
+
}, {
|
|
850
|
+
readonly name: "maxScore";
|
|
851
|
+
readonly type: "uint32";
|
|
852
|
+
readonly internalType: "uint32";
|
|
853
|
+
}, {
|
|
854
|
+
readonly name: "a";
|
|
855
|
+
readonly type: "uint32";
|
|
856
|
+
readonly internalType: "uint32";
|
|
857
|
+
}, {
|
|
858
|
+
readonly name: "minimum";
|
|
859
|
+
readonly type: "uint32";
|
|
860
|
+
readonly internalType: "uint32";
|
|
861
|
+
}, {
|
|
862
|
+
readonly name: "k";
|
|
863
|
+
readonly type: "uint32";
|
|
864
|
+
readonly internalType: "uint32";
|
|
865
|
+
}];
|
|
866
|
+
}];
|
|
867
|
+
readonly anonymous: false;
|
|
833
868
|
}, {
|
|
834
869
|
readonly type: "error";
|
|
835
870
|
readonly name: "RewardDistributor__InvalidCaller";
|
|
@@ -2547,6 +2582,41 @@ export declare const RollupAbi: readonly [{
|
|
|
2547
2582
|
readonly internalType: "FeeAssetValue";
|
|
2548
2583
|
}];
|
|
2549
2584
|
readonly stateMutability: "view";
|
|
2585
|
+
}, {
|
|
2586
|
+
readonly type: "function";
|
|
2587
|
+
readonly name: "getRewardConfig";
|
|
2588
|
+
readonly inputs: readonly [];
|
|
2589
|
+
readonly outputs: readonly [{
|
|
2590
|
+
readonly name: "";
|
|
2591
|
+
readonly type: "tuple";
|
|
2592
|
+
readonly internalType: "struct RewardConfig";
|
|
2593
|
+
readonly components: readonly [{
|
|
2594
|
+
readonly name: "sequencerBps";
|
|
2595
|
+
readonly type: "uint32";
|
|
2596
|
+
readonly internalType: "Bps";
|
|
2597
|
+
}, {
|
|
2598
|
+
readonly name: "increment";
|
|
2599
|
+
readonly type: "uint32";
|
|
2600
|
+
readonly internalType: "uint32";
|
|
2601
|
+
}, {
|
|
2602
|
+
readonly name: "maxScore";
|
|
2603
|
+
readonly type: "uint32";
|
|
2604
|
+
readonly internalType: "uint32";
|
|
2605
|
+
}, {
|
|
2606
|
+
readonly name: "a";
|
|
2607
|
+
readonly type: "uint32";
|
|
2608
|
+
readonly internalType: "uint32";
|
|
2609
|
+
}, {
|
|
2610
|
+
readonly name: "minimum";
|
|
2611
|
+
readonly type: "uint32";
|
|
2612
|
+
readonly internalType: "uint32";
|
|
2613
|
+
}, {
|
|
2614
|
+
readonly name: "k";
|
|
2615
|
+
readonly type: "uint32";
|
|
2616
|
+
readonly internalType: "uint32";
|
|
2617
|
+
}];
|
|
2618
|
+
}];
|
|
2619
|
+
readonly stateMutability: "view";
|
|
2550
2620
|
}, {
|
|
2551
2621
|
readonly type: "function";
|
|
2552
2622
|
readonly name: "getRewardDistributor";
|
|
@@ -2967,6 +3037,41 @@ export declare const RollupAbi: readonly [{
|
|
|
2967
3037
|
}];
|
|
2968
3038
|
readonly outputs: readonly [];
|
|
2969
3039
|
readonly stateMutability: "nonpayable";
|
|
3040
|
+
}, {
|
|
3041
|
+
readonly type: "function";
|
|
3042
|
+
readonly name: "setRewardConfig";
|
|
3043
|
+
readonly inputs: readonly [{
|
|
3044
|
+
readonly name: "_config";
|
|
3045
|
+
readonly type: "tuple";
|
|
3046
|
+
readonly internalType: "struct RewardConfig";
|
|
3047
|
+
readonly components: readonly [{
|
|
3048
|
+
readonly name: "sequencerBps";
|
|
3049
|
+
readonly type: "uint32";
|
|
3050
|
+
readonly internalType: "Bps";
|
|
3051
|
+
}, {
|
|
3052
|
+
readonly name: "increment";
|
|
3053
|
+
readonly type: "uint32";
|
|
3054
|
+
readonly internalType: "uint32";
|
|
3055
|
+
}, {
|
|
3056
|
+
readonly name: "maxScore";
|
|
3057
|
+
readonly type: "uint32";
|
|
3058
|
+
readonly internalType: "uint32";
|
|
3059
|
+
}, {
|
|
3060
|
+
readonly name: "a";
|
|
3061
|
+
readonly type: "uint32";
|
|
3062
|
+
readonly internalType: "uint32";
|
|
3063
|
+
}, {
|
|
3064
|
+
readonly name: "minimum";
|
|
3065
|
+
readonly type: "uint32";
|
|
3066
|
+
readonly internalType: "uint32";
|
|
3067
|
+
}, {
|
|
3068
|
+
readonly name: "k";
|
|
3069
|
+
readonly type: "uint32";
|
|
3070
|
+
readonly internalType: "uint32";
|
|
3071
|
+
}];
|
|
3072
|
+
}];
|
|
3073
|
+
readonly outputs: readonly [];
|
|
3074
|
+
readonly stateMutability: "nonpayable";
|
|
2970
3075
|
}, {
|
|
2971
3076
|
readonly type: "function";
|
|
2972
3077
|
readonly name: "setRewardsClaimable";
|
package/dest/RollupAbi.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RollupAbi.d.ts","sourceRoot":"","sources":["../src/RollupAbi.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"RollupAbi.d.ts","sourceRoot":"","sources":["../src/RollupAbi.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAg1IZ,CAAC"}
|
package/dest/RollupAbi.js
CHANGED
|
@@ -1085,6 +1085,51 @@
|
|
|
1085
1085
|
}
|
|
1086
1086
|
]
|
|
1087
1087
|
},
|
|
1088
|
+
{
|
|
1089
|
+
"type": "event",
|
|
1090
|
+
"name": "RewardConfigUpdated",
|
|
1091
|
+
"inputs": [
|
|
1092
|
+
{
|
|
1093
|
+
"name": "rewardConfig",
|
|
1094
|
+
"type": "tuple",
|
|
1095
|
+
"indexed": false,
|
|
1096
|
+
"internalType": "struct RewardConfig",
|
|
1097
|
+
"components": [
|
|
1098
|
+
{
|
|
1099
|
+
"name": "sequencerBps",
|
|
1100
|
+
"type": "uint32",
|
|
1101
|
+
"internalType": "Bps"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"name": "increment",
|
|
1105
|
+
"type": "uint32",
|
|
1106
|
+
"internalType": "uint32"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"name": "maxScore",
|
|
1110
|
+
"type": "uint32",
|
|
1111
|
+
"internalType": "uint32"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "a",
|
|
1115
|
+
"type": "uint32",
|
|
1116
|
+
"internalType": "uint32"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "minimum",
|
|
1120
|
+
"type": "uint32",
|
|
1121
|
+
"internalType": "uint32"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"name": "k",
|
|
1125
|
+
"type": "uint32",
|
|
1126
|
+
"internalType": "uint32"
|
|
1127
|
+
}
|
|
1128
|
+
]
|
|
1129
|
+
}
|
|
1130
|
+
],
|
|
1131
|
+
"anonymous": false
|
|
1132
|
+
},
|
|
1088
1133
|
{
|
|
1089
1134
|
"type": "error",
|
|
1090
1135
|
"name": "RewardDistributor__InvalidCaller",
|
|
@@ -3356,6 +3401,51 @@
|
|
|
3356
3401
|
],
|
|
3357
3402
|
"stateMutability": "view"
|
|
3358
3403
|
},
|
|
3404
|
+
{
|
|
3405
|
+
"type": "function",
|
|
3406
|
+
"name": "getRewardConfig",
|
|
3407
|
+
"inputs": [],
|
|
3408
|
+
"outputs": [
|
|
3409
|
+
{
|
|
3410
|
+
"name": "",
|
|
3411
|
+
"type": "tuple",
|
|
3412
|
+
"internalType": "struct RewardConfig",
|
|
3413
|
+
"components": [
|
|
3414
|
+
{
|
|
3415
|
+
"name": "sequencerBps",
|
|
3416
|
+
"type": "uint32",
|
|
3417
|
+
"internalType": "Bps"
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"name": "increment",
|
|
3421
|
+
"type": "uint32",
|
|
3422
|
+
"internalType": "uint32"
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
"name": "maxScore",
|
|
3426
|
+
"type": "uint32",
|
|
3427
|
+
"internalType": "uint32"
|
|
3428
|
+
},
|
|
3429
|
+
{
|
|
3430
|
+
"name": "a",
|
|
3431
|
+
"type": "uint32",
|
|
3432
|
+
"internalType": "uint32"
|
|
3433
|
+
},
|
|
3434
|
+
{
|
|
3435
|
+
"name": "minimum",
|
|
3436
|
+
"type": "uint32",
|
|
3437
|
+
"internalType": "uint32"
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
"name": "k",
|
|
3441
|
+
"type": "uint32",
|
|
3442
|
+
"internalType": "uint32"
|
|
3443
|
+
}
|
|
3444
|
+
]
|
|
3445
|
+
}
|
|
3446
|
+
],
|
|
3447
|
+
"stateMutability": "view"
|
|
3448
|
+
},
|
|
3359
3449
|
{
|
|
3360
3450
|
"type": "function",
|
|
3361
3451
|
"name": "getRewardDistributor",
|
|
@@ -3908,6 +3998,51 @@
|
|
|
3908
3998
|
"outputs": [],
|
|
3909
3999
|
"stateMutability": "nonpayable"
|
|
3910
4000
|
},
|
|
4001
|
+
{
|
|
4002
|
+
"type": "function",
|
|
4003
|
+
"name": "setRewardConfig",
|
|
4004
|
+
"inputs": [
|
|
4005
|
+
{
|
|
4006
|
+
"name": "_config",
|
|
4007
|
+
"type": "tuple",
|
|
4008
|
+
"internalType": "struct RewardConfig",
|
|
4009
|
+
"components": [
|
|
4010
|
+
{
|
|
4011
|
+
"name": "sequencerBps",
|
|
4012
|
+
"type": "uint32",
|
|
4013
|
+
"internalType": "Bps"
|
|
4014
|
+
},
|
|
4015
|
+
{
|
|
4016
|
+
"name": "increment",
|
|
4017
|
+
"type": "uint32",
|
|
4018
|
+
"internalType": "uint32"
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"name": "maxScore",
|
|
4022
|
+
"type": "uint32",
|
|
4023
|
+
"internalType": "uint32"
|
|
4024
|
+
},
|
|
4025
|
+
{
|
|
4026
|
+
"name": "a",
|
|
4027
|
+
"type": "uint32",
|
|
4028
|
+
"internalType": "uint32"
|
|
4029
|
+
},
|
|
4030
|
+
{
|
|
4031
|
+
"name": "minimum",
|
|
4032
|
+
"type": "uint32",
|
|
4033
|
+
"internalType": "uint32"
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"name": "k",
|
|
4037
|
+
"type": "uint32",
|
|
4038
|
+
"internalType": "uint32"
|
|
4039
|
+
}
|
|
4040
|
+
]
|
|
4041
|
+
}
|
|
4042
|
+
],
|
|
4043
|
+
"outputs": [],
|
|
4044
|
+
"stateMutability": "nonpayable"
|
|
4045
|
+
},
|
|
3911
4046
|
{
|
|
3912
4047
|
"type": "function",
|
|
3913
4048
|
"name": "setRewardsClaimable",
|