The Signature is now a class which facilitates all the parsing and serializing.
Example
Before
splitSig = splitSignature(sigBytes);
After
splitSig = ethers.Signature.from(sigBytes);
,
Before
sigBytes = joinSignature(splitSig);
After
sigBytes = ethers.Signature.from(splitSig).serialized;
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community