Migrate to v6
This guide references the major changes between v5 and v6 to help those migrating an existing app.
Removing SigningMethod
and SigningMethodType
We moved these types to the api-kit
.
_10// old v5 code_10import { SigningMethod, SigningMethodType } from '@safe-global/protocol-kit'_10_10// new v6 code_10import { SigningMethod, SigningMethodType } from '@safe-global/types-kit'