SPG tests are failing due to changes in protocol-core-v1, which integrated Solady's ERC6551 implementation (see protocol-core-v1 #133). The update changes the uint256 nonce to a state variable that is now computed from the input parameters of the execute() function. The tests' signature generation needs to be updated to align with these protocol changes.
Description
SPG tests are failing due to changes in protocol-core-v1, which integrated Solady's ERC6551 implementation (see protocol-core-v1 #133). The update changes the
uint256 nonce
to astate
variable that is now computed from the input parameters of theexecute()
function. The tests' signature generation needs to be updated to align with these protocol changes.