@@ -135,11 +135,11 @@ access(all) contract TidalYieldStrategies {
135135 // assign EVM token addresses & types
136136 // TODO: Consider how we're going to handle these addresses across networks, especially testing & CI
137137 let yieldTokenEVMAddress = EVM .addressFromString (" 0x4154d5B0E2931a0A1E5b733f19161aa7D2fc4b95" )
138- let stableTokenEVMAddress = EVM .addressFromString (" 0xd431955D55a99EF69BEb96BA34718d0f9fBc91b1 " )
138+ let moetTokenEVMAddress = EVM .addressFromString (" 0x51F5cC5f50afB81e8F23C926080FA38C3024b238 " )
139139 let yieldTokenType = FlowEVMBridgeConfig .getTypeAssociated (with : yieldTokenEVMAddress )
140140 ?? panic (" YieldToken associated with EVM address \( yieldTokenEVMAddress .toString ()) not found in VM Bridge config" )
141- let stableTokenType = FlowEVMBridgeConfig .getTypeAssociated (with : stableTokenEVMAddress )
142- ?? panic (" Stables associated with EVM address \( stableTokenEVMAddress .toString ()) not found in VM Bridge config" )
141+ let moetTokenType = FlowEVMBridgeConfig .getTypeAssociated (with : moetTokenEVMAddress )
142+ ?? panic (" Stables associated with EVM address \( moetTokenEVMAddress .toString ()) not found in VM Bridge config" )
143143 // assign collateral & flow token types
144144 let collateralType = withFunds .getType ()
145145 let flowTokenType = Type <@FlowToken.Vault >()
@@ -167,17 +167,17 @@ access(all) contract TidalYieldStrategies {
167167 // Stable -> YieldToken
168168 // TODO: Update to use UniswapV3SwapConnectors
169169 // let stableToYieldSwapper = MockSwapper.Swapper(
170- // inVault: stableTokenType ,
170+ // inVault: moetTokenType ,
171171 // outVault: yieldTokenType,
172172 // uniqueID: uniqueID
173173 // )
174174 // TODO: consider how we're going to pass the user's COA capability to the Swapper
175175 let stableToYieldSwapper = UniswapV3SwapConnectors .Swapper (
176176 routerAddress : router ,
177177 quoterAddress : quoter ,
178- tokenPath : [stableTokenEVMAddress , yieldTokenEVMAddress ],
178+ tokenPath : [moetTokenEVMAddress , yieldTokenEVMAddress ],
179179 feePath : [3000 ],
180- inVault : stableTokenType ,
180+ inVault : moetTokenType ,
181181 outVault : yieldTokenType ,
182182 coaCapability : TidalYieldStrategies ._getCOACapability (),
183183 uniqueID : uniqueID
@@ -186,16 +186,16 @@ access(all) contract TidalYieldStrategies {
186186 // TODO: Update to use UniswapV3SwapConnectors
187187 // let yieldToStableSwapper = MockSwapper.Swapper(
188188 // inVault: yieldTokenType,
189- // outVault: stableTokenType ,
189+ // outVault: moetTokenType ,
190190 // uniqueID: uniqueID
191191 // )
192192 let yieldToStableSwapper = UniswapV3SwapConnectors .Swapper (
193193 routerAddress : router ,
194194 quoterAddress : quoter ,
195- tokenPath : [yieldTokenEVMAddress , stableTokenEVMAddress ],
195+ tokenPath : [yieldTokenEVMAddress , moetTokenEVMAddress ],
196196 feePath : [3000 ],
197197 inVault : yieldTokenType ,
198- outVault : stableTokenType ,
198+ outVault : moetTokenType ,
199199 coaCapability : TidalYieldStrategies ._getCOACapability (),
200200 uniqueID : uniqueID
201201 )
0 commit comments