Submitted by T1MOH
Incorrect chainId of Base in deploy parameters results in incorrect deploy and subsequent redeployment.
Contract ChainIds.sol is responsible for mapping chainId -> wormholeChainId which is used in contract Addresses to associate contract name with its address on specific chain. Addresses is the main contract which keeps track of all dependency addresses and passed into main deploy() and here addresses accessed via block.chainId: https://github.com/code-423n4/2023-07-moonwell/blob/fced18035107a345c31c9a9497d0da09105df4df/test/proposals/mips/mip00.sol#L77
Here you can see that Network ID of Base set to 84531. But actual network id is 8453 from Base docs.
Change Base Network ID to 8453.
ElliotFriedman (Moonwell) confirmed
