SDK
Guides
Migrate to v6

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
_10
import { SigningMethod, SigningMethodType } from '@safe-global/protocol-kit'
_10
_10
// new v6 code
_10
import { SigningMethod, SigningMethodType } from '@safe-global/types-kit'

Was this page helpful?