File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @airdao/airdao-node-contracts" ,
3
- "version" : " 1.3.32 " ,
3
+ "version" : " 1.3.33 " ,
4
4
"main" : " ./dist/src/index.js" ,
5
5
"types" : " ./dist/src/index.d.ts" ,
6
6
"files" : [
Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ export enum ContractNames {
97
97
98
98
Ecosystem_GeneralTokenBank_Multisig = "Ecosystem_GeneralTokenBank_Multisig" ,
99
99
Ecosystem_GeneralTokenBank = "Ecosystem_GeneralTokenBank" ,
100
+
101
+ RewardDistribution_Multisig = "RewardDistribution_Multisig" ,
100
102
}
101
103
102
104
export const MULTISIGS_COMMON = {
@@ -155,7 +157,11 @@ export function getEnvironment(version: MultisigVersions = MultisigVersions.comm
155
157
if ( version == MultisigVersions . common ) {
156
158
return {
157
159
master : ContractNames . MasterMultisig ,
158
- slaves : [ ...new Set ( Object . values ( MULTISIGS_COMMON ) ) ]
160
+ slaves : [
161
+ ...new Set ( Object . values ( MULTISIGS_COMMON ) ) ,
162
+ // multisigs below are not listed in the MULTISIGS_COMMON, so we add them manually
163
+ ContractNames . RewardDistribution_Multisig ,
164
+ ]
159
165
} ;
160
166
}
161
167
throw new Error ( "Unknown environment" ) ;
You can’t perform that action at this time.
0 commit comments