The ChildGaugeFactory is used to claim CRV emissions from. The RootChainGaugeFactory on Ethereum and ChildGaugeFactory on the according chain share the same contract address.
Contract Source & Deployment
All contract deployments can be found here. Source code available on Github.
Getter method to check if _gauge is a valid gauge. A gauge is valid if
Returns: true or flase (bool).
Input
Type
Description
_gauge
address
gauge address
Source code
gauge_data:public(HashMap[address,uint256])@view@externaldefis_valid_gauge(_gauge:address)->bool:""" @notice Query whether the gauge is a valid one deployed via the factory @param _gauge The address of the gauge of interest """returnself.gauge_data[_gauge]!=0
Getter method to check if the gauge is mirrored on Ethereum. If true, a RootGauge with the same contract address as the ChildGauge exists on Ethereum.
Returns: true or false (bool).
Input
Type
Description
_gauge
address
gauge address
Source code
gauge_data:public(HashMap[address,uint256])@view@externaldefis_mirrored(_gauge:address)->bool:""" @notice Query whether the gauge is mirrored on Ethereum mainnet @param _gauge The address of the gauge of interest """returnbitwise_and(self.gauge_data[_gauge],2)!=0
This function is only callable by the admin of the contract.
Function to set the mirrored bit of the gauge data for _gauge
Emits: UpdateMirrored
Input
Type
Description
_gauge
address
gauge address
_mirrored
bool
bool determin whether to set the mirrored but to True/False
Source code
eventUpdateMirrored:_gauge:indexed(address)_mirrored:bool# [last_request][has_counterpart][is_valid_gauge]gauge_data:public(HashMap[address,uint256])@externaldefset_mirrored(_gauge:address,_mirrored:bool):""" @notice Set the mirrored bit of the gauge data for `_gauge` @param _gauge The gauge of interest @param _mirrored Boolean deteremining whether to set the mirrored bit to True/False """gauge_data:uint256=self.gauge_data[_gauge]assertgauge_data!=0# dev: invalid gaugeassertmsg.sender==self.owner# dev: only ownergauge_data=shift(shift(gauge_data,-2),2)+1# set is_valid_gauge = Trueif_mirrored:gauge_data+=2# set is_mirrored = Trueself.gauge_data[_gauge]=gauge_datalogUpdateMirrored(_gauge,_mirrored)
Getter for the last timestamp of the last cross chain request for emissions.
Returns: timestamp (uint256).
Input
Type
Description
_gauge
address
gauge address
Source code
gauge_data:public(HashMap[address,uint256])@view@externaldeflast_request(_gauge:address)->uint256:""" @notice Query the timestamp of the last cross chain request for emissions @param _gauge The address of the gauge of interest """returnshift(self.gauge_data[_gauge],-2)
get_gauge_from_lp_token:public(HashMap[address,address])@externaldefdeploy_gauge(_lp_token:address,_salt:bytes32,_manager:address=msg.sender)->address:""" @notice Deploy a liquidity gauge @param _lp_token The token to deposit in the gauge @param _manager The address to set as manager of the gauge @param _salt A value to deterministically deploy a gauge """ifself.get_gauge_from_lp_token[_lp_token]!=ZERO_ADDRESS:# overwriting lp_token -> gauge mapping requiresassertmsg.sender==self.owner# dev: only ownergauge_data:uint256=1# set is_valid_gauge = Trueimplementation:address=self.get_implementationgauge:address=create_forwarder_to(implementation,salt=keccak256(_abi_encode(chain.id,msg.sender,_salt)))ifmsg.sender==self.call_proxy:gauge_data+=2# set mirrored = TruelogUpdateMirrored(gauge,True)# issue a call to the root chain to deploy a root gaugeCallProxy(self.call_proxy).anyCall(self,_abi_encode(chain.id,_salt,method_id=method_id("deploy_gauge(uint256,bytes32)")),ZERO_ADDRESS,1)self.gauge_data[gauge]=gauge_dataidx:uint256=self.get_gauge_countself.get_gauge[idx]=gaugeself.get_gauge_count=idx+1self.get_gauge_from_lp_token[_lp_token]=gaugeChildGauge(gauge).initialize(_lp_token,_manager)logDeployedGauge(implementation,_lp_token,msg.sender,_salt,gauge)returngauge
Getter for the number of gauges deployed. Increments by one when deploying a new gauge.
Returns: total number of gauges deployed (uint256).
Source code
get_gauge_count:public(uint256)@externaldefdeploy_gauge(_lp_token:address,_salt:bytes32,_manager:address=msg.sender)->address:""" @notice Deploy a liquidity gauge @param _lp_token The token to deposit in the gauge @param _manager The address to set as manager of the gauge @param _salt A value to deterministically deploy a gauge """ifself.get_gauge_from_lp_token[_lp_token]!=ZERO_ADDRESS:# overwriting lp_token -> gauge mapping requiresassertmsg.sender==self.owner# dev: only ownergauge_data:uint256=1# set is_valid_gauge = Trueimplementation:address=self.get_implementationgauge:address=create_forwarder_to(implementation,salt=keccak256(_abi_encode(chain.id,msg.sender,_salt)))ifmsg.sender==self.call_proxy:gauge_data+=2# set mirrored = TruelogUpdateMirrored(gauge,True)# issue a call to the root chain to deploy a root gaugeCallProxy(self.call_proxy).anyCall(self,_abi_encode(chain.id,_salt,method_id=method_id("deploy_gauge(uint256,bytes32)")),ZERO_ADDRESS,1)self.gauge_data[gauge]=gauge_dataidx:uint256=self.get_gauge_countself.get_gauge[idx]=gaugeself.get_gauge_count=idx+1self.get_gauge_from_lp_token[_lp_token]=gaugeChildGauge(gauge).initialize(_lp_token,_manager)logDeployedGauge(implementation,_lp_token,msg.sender,_salt,gauge)returngauge
Function to mint CRV emission rewards for msg.sender and transfer it to them.
Emits: Minted
Input
Type
Description
_gauge
address
gauge address to mint from
Source code
eventMinted:_user:indexed(address)_gauge:indexed(address)_new_total:uint256@external@nonreentrant("lock")defmint(_gauge:address):""" @notice Mint everything which belongs to `msg.sender` and send to them @param _gauge `LiquidityGauge` address to get mintable amount from """self._psuedo_mint(_gauge,msg.sender)@internaldef_psuedo_mint(_gauge:address,_user:address):gauge_data:uint256=self.gauge_data[_gauge]assertgauge_data!=0# dev: invalid gauge# if is_mirrored and last_request != this weekifbitwise_and(gauge_data,2)!=0andshift(gauge_data,-2)/WEEK!=block.timestamp/WEEK:CallProxy(self.call_proxy).anyCall(self,_abi_encode(_gauge,method_id=method_id("transmit_emissions(address)")),ZERO_ADDRESS,1,)# update last request timeself.gauge_data[_gauge]=shift(block.timestamp,2)+3assertChildGauge(_gauge).user_checkpoint(_user)total_mint:uint256=ChildGauge(_gauge).integrate_fraction(_user)to_mint:uint256=total_mint-self.minted[_user][_gauge]ifto_mint!=0:# transfer tokens to userresponse:Bytes[32]=raw_call(CRV,_abi_encode(_user,to_mint,method_id=method_id("transfer(address,uint256)")),max_outsize=32,)iflen(response)!=0:assertconvert(response,bool)self.minted[_user][_gauge]=total_mintlogMinted(_user,_gauge,total_mint)
Function to mint CRV emission rewards from multiple gauges for msg.sender and transfer it to them. This function supports claim of up to 32 gauges in one transcations.
Emits: Minted
Input
Type
Description
_gauge
address[32]
gauge addresses to mint from
Source code
eventMinted:_user:indexed(address)_gauge:indexed(address)_new_total:uint256@external@nonreentrant("lock")defmint_many(_gauges:address[32]):""" @notice Mint everything which belongs to `msg.sender` across multiple gauges @param _gauges List of `LiquidityGauge` addresses """foriinrange(32):if_gauges[i]==ZERO_ADDRESS:passself._psuedo_mint(_gauges[i],msg.sender)@internaldef_psuedo_mint(_gauge:address,_user:address):gauge_data:uint256=self.gauge_data[_gauge]assertgauge_data!=0# dev: invalid gauge# if is_mirrored and last_request != this weekifbitwise_and(gauge_data,2)!=0andshift(gauge_data,-2)/WEEK!=block.timestamp/WEEK:CallProxy(self.call_proxy).anyCall(self,_abi_encode(_gauge,method_id=method_id("transmit_emissions(address)")),ZERO_ADDRESS,1,)# update last request timeself.gauge_data[_gauge]=shift(block.timestamp,2)+3assertChildGauge(_gauge).user_checkpoint(_user)total_mint:uint256=ChildGauge(_gauge).integrate_fraction(_user)to_mint:uint256=total_mint-self.minted[_user][_gauge]ifto_mint!=0:# transfer tokens to userresponse:Bytes[32]=raw_call(CRV,_abi_encode(_user,to_mint,method_id=method_id("transfer(address,uint256)")),max_outsize=32,)iflen(response)!=0:assertconvert(response,bool)self.minted[_user][_gauge]=total_mintlogMinted(_user,_gauge,total_mint)
Getter for the total minted CRV of address arg0 from gauge arg1.
Returns: total minted CRV (uint256).
Input
Type
Description
arg0
address
user address
arg1
address
gauge address
Source code
# user -> gauge -> valueminted:public(HashMap[address,HashMap[address,uint256]])@external@nonreentrant("lock")defmint(_gauge:address):""" @notice Mint everything which belongs to `msg.sender` and send to them @param _gauge `LiquidityGauge` address to get mintable amount from """self._psuedo_mint(_gauge,msg.sender)@internaldef_psuedo_mint(_gauge:address,_user:address):gauge_data:uint256=self.gauge_data[_gauge]assertgauge_data!=0# dev: invalid gauge# if is_mirrored and last_request != this weekifbitwise_and(gauge_data,2)!=0andshift(gauge_data,-2)/WEEK!=block.timestamp/WEEK:CallProxy(self.call_proxy).anyCall(self,_abi_encode(_gauge,method_id=method_id("transmit_emissions(address)")),ZERO_ADDRESS,1,)# update last request timeself.gauge_data[_gauge]=shift(block.timestamp,2)+3assertChildGauge(_gauge).user_checkpoint(_user)total_mint:uint256=ChildGauge(_gauge).integrate_fraction(_user)to_mint:uint256=total_mint-self.minted[_user][_gauge]ifto_mint!=0:# transfer tokens to userresponse:Bytes[32]=raw_call(CRV,_abi_encode(_user,to_mint,method_id=method_id("transfer(address,uint256)")),max_outsize=32,)iflen(response)!=0:assertconvert(response,bool)self.minted[_user][_gauge]=total_mintlogMinted(_user,_gauge,total_mint)
Function to deploy a ChildLiquidityGauge and initialize it.
Returns: gauge (address).
Emits: DeployedGauge and possibly UpdateMirrored
Input
Type
Description
_lp_token
address
lp token to deploy the gauge for
_salt
bytes32
salt
_manager
address
gauge manager address; defaults to msg.sender
Source code
eventDeployedGauge:_implementation:indexed(address)_lp_token:indexed(address)_deployer:indexed(address)_salt:bytes32_gauge:addresseventUpdateMirrored:_gauge:indexed(address)_mirrored:bool@externaldefdeploy_gauge(_lp_token:address,_salt:bytes32,_manager:address=msg.sender)->address:""" @notice Deploy a liquidity gauge @param _lp_token The token to deposit in the gauge @param _manager The address to set as manager of the gauge @param _salt A value to deterministically deploy a gauge """ifself.get_gauge_from_lp_token[_lp_token]!=ZERO_ADDRESS:# overwriting lp_token -> gauge mapping requiresassertmsg.sender==self.owner# dev: only ownergauge_data:uint256=1# set is_valid_gauge = Trueimplementation:address=self.get_implementationgauge:address=create_forwarder_to(implementation,salt=keccak256(_abi_encode(chain.id,msg.sender,_salt)))ifmsg.sender==self.call_proxy:gauge_data+=2# set mirrored = TruelogUpdateMirrored(gauge,True)# issue a call to the root chain to deploy a root gaugeCallProxy(self.call_proxy).anyCall(self,_abi_encode(chain.id,_salt,method_id=method_id("deploy_gauge(uint256,bytes32)")),ZERO_ADDRESS,1)self.gauge_data[gauge]=gauge_dataidx:uint256=self.get_gauge_countself.get_gauge[idx]=gaugeself.get_gauge_count=idx+1self.get_gauge_from_lp_token[_lp_token]=gaugeChildGauge(gauge).initialize(_lp_token,_manager)logDeployedGauge(implementation,_lp_token,msg.sender,_salt,gauge)returngauge
This function is only callable by the owner of the contract.
Function to set the voting escrow contract.
Emits: UpdateVotingEscrow
Input
Type
Description
_voting_escrow
address
voting escorw oracle contract
Source code
eventUpdateVotingEscrow:_old_voting_escrow:address_new_voting_escrow:addressvoting_escrow:public(address)@externaldefset_voting_escrow(_voting_escrow:address):""" @notice Update the voting escrow contract @param _voting_escrow Contract to use as the voting escrow oracle """assertmsg.sender==self.owner# dev: only ownerlogUpdateVotingEscrow(self.voting_escrow,_voting_escrow)self.voting_escrow=_voting_escrow
This function is only callable by the owner of the contract.
Function to set the gauge implementation contract.
Emits: UpdateImplementation
Input
Type
Description
_implementation
address
implementation contract
Source code
eventUpdateImplementation:_old_implementation:address_new_implementation:addressget_implementation:public(address)@externaldefset_implementation(_implementation:address):""" @notice Set the implementation @param _implementation The address of the implementation to use """assertmsg.sender==self.owner# dev: only ownerlogUpdateImplementation(self.get_implementation,_implementation)self.get_implementation=_implementation
This function is only callable by the owner of the contract.
Function to commit the transfer of contract ownership to _future_owner.
Input
Type
Description
_future_owner
address
future owner
Source code
owner:public(address)future_owner:public(address)@externaldefcommit_transfer_ownership(_future_owner:address):""" @notice Transfer ownership to `_future_owner` @param _future_owner The account to commit as the future owner """assertmsg.sender==self.owner# dev: only ownerself.future_owner=_future_owner
This function is only callable by the future_owner of the contract.
Function to accept the transfer of ownership.
Emits: TransferOwnership
Source code
eventTransferOwnership:_old_owner:address_new_owner:addressowner:public(address)future_owner:public(address)@externaldefaccept_transfer_ownership():""" @notice Accept the transfer of ownership @dev Only the committed future owner can call this function """assertmsg.sender==self.future_owner# dev: only future ownerlogTransferOwnership(self.owner,msg.sender)self.owner=msg.sender