@@ -28,6 +28,7 @@ export const functions = {
2828 governor : viewFun ( "0x0c340a24" , "governor()" , { } , p . address ) ,
2929 increaseAllowance : fun ( "0x39509351" , "increaseAllowance(address,uint256)" , { "_spender" : p . address , "_addedValue" : p . uint256 } , p . bool ) ,
3030 initialize : fun ( "0xf542033f" , "initialize(string,string,address,uint256)" , { "_nameArg" : p . string , "_symbolArg" : p . string , "_vaultAddress" : p . address , "_initialCreditsPerToken" : p . uint256 } , ) ,
31+ initialize2 : fun ( "0x472abf68" , "initialize2()" , { } , ) ,
3132 isGovernor : viewFun ( "0xc7af3352" , "isGovernor()" , { } , p . bool ) ,
3233 isUpgraded : viewFun ( "0x95ef84b9" , "isUpgraded(address)" , { "_0" : p . address } , p . uint256 ) ,
3334 mint : fun ( "0x40c10f19" , "mint(address,uint256)" , { "_account" : p . address , "_amount" : p . uint256 } , ) ,
@@ -187,6 +188,9 @@ export type IncreaseAllowanceReturn = FunctionReturn<typeof functions.increaseAl
187188export type InitializeParams = FunctionArguments < typeof functions . initialize >
188189export type InitializeReturn = FunctionReturn < typeof functions . initialize >
189190
191+ export type Initialize2Params = FunctionArguments < typeof functions . initialize2 >
192+ export type Initialize2Return = FunctionReturn < typeof functions . initialize2 >
193+
190194export type IsGovernorParams = FunctionArguments < typeof functions . isGovernor >
191195export type IsGovernorReturn = FunctionReturn < typeof functions . isGovernor >
192196
0 commit comments