Kill CRV gauge emissions for decprecated crvUSD stableswap pools

Summary:

Kill gauges to several crvUSD stableswap pools that have been deprecated due to faulty oracle in the pool implementations. Affected pools have been redeployed and have passed gauge votes, except for crvUSD/USDM.

Abstract:

Pools needing to kill gauge:

Description Pool Address Gauge Address
crvUSD/stUSDT 0xB9eC78Bd89d3Ef17537f130CC72750FD4DE85f82 0x188a85362CC5e245A377294aa270C7758A203918
crvUSD/STBT 0x707EAe1CcFee0B8fef07D3F18EAFD1246762d587 0xd32F4bE8f777Ac27c6AAd544457de6d4f17a1BFA
crvUSD/USDM 0x2dabF79E16ceb92B651651f47b6E835C9DB5828A 0xdF901BE65847AaCED69319394835E7Dce5740556
crvUSD/sFRAX 0xfEF79304C80A694dFd9e603D624567D470e1a0e7 0x62B8DA8f1546a092500c457452fC2d45fa1777c4
crvUSD/sDAI 0x1539c2461d7432cc114b0903f1824079BfCA2C92 0x2B5a5e182768a18C70EDd265240578a72Ca475ae

Motivation:

See the explanation for the faulty pool implementation here:

Specification:

STABLESWAP_PROXY = "0x768caA20Cf1921772B6F56950e23Bafd94aF5CFF"

ACTIONS = [
    #kill crvUSD/stUSDT
    (STABLESWAP_PROXY, "set_killed", "0x188a85362CC5e245A377294aa270C7758A203918", True),

    #kill crvUSD/STBT
    (STABLESWAP_PROXY, "set_killed", "0xd32F4bE8f777Ac27c6AAd544457de6d4f17a1BFA", True),

    #kill crvUSD/USDM
    (STABLESWAP_PROXY, "set_killed", "0xdF901BE65847AaCED69319394835E7Dce5740556", True),

    #kill crvUSD/sFRAX
    (STABLESWAP_PROXY, "set_killed", "0x62B8DA8f1546a092500c457452fC2d45fa1777c4", True),

    #kill crvUSD/sDAI
    (STABLESWAP_PROXY, "set_killed", "0x2B5a5e182768a18C70EDd265240578a72Ca475ae", True),
]
3 Likes