Multisig ISM
Verify messages using validator signatures
The MultisigISM
is one of the most commonly used ISM types. These ISMs verify that m
of n
Validators have attested to the validity of a particular interchain message.
Interface
MultisigISMs
must implement the IMultisigIsm
interface.
Configure
The hyperlane-monorepo contains MultisigISM
implementations (including a legacy version and more gas-efficient versions deployable via factories) that application developers can deploy off-the-shelf, specifying their desired configuration.
Developers can configure, for each origin chain, a set of n
Validators, and the number of validator signatures (m
) needed to verify a message.
Validator signatures are not specific to an ISM. In other words, developers can configure their MultisigISM
to use any validator that's running on Hyperlane and it will "just work".
The hyperlane-deploy repo contains the tooling and instructions needed to deploy and configure a MultisigISM
.
Customize
The hyperlane-monorepo contains an abstract MultisigISM
implementation that application developers can fork.
Developers simply need to implement the validatorsAndThreshold()
function.
By creating a custom implementation, application developers can tailor the security provided by a MultisigISM
to the needs of their application.
For example, a custom implementation could vary the number of signatures required, based on the content of the message being verified.
Last updated