We want to allow members of an account to be able to update it with a specific message for it.
message MsgUpdateMembers {
repeated Member members = 1;
}
message Member {
bytes pubkey = 1;
uint64 weight = 2;
}
We'll also want to accept the usual multisig member "structures", I propose we use members weights and threshold to allow these structures without having to code specifically for each one of them. So it will be up to a front end to decide how to show things.
threshold = m * member_weight
My idea is that with weight and threshold you could represent almost any kind of multisig. Although I haven't really tested this statement enough.
We can have a set of supported algos, which would translate in some Authenticate functions.
Desired signatures algorithms:
Each one of them can have different ways of getting SignBytes, as for example BLS requires that each signature is made to a different message (to be verified by someone that knows more about it).
We could also have different ways of calculating sign bytes, allowing signatures from Metamask for example.
Each authentication method will have its own way of parsing signatures.
We'd need to allow accounts to set their own address for this. Then the MsgInit would need to require existing members signatures, and we'll query the multisig account's sequence and number???.
Haven't give this much thought yet
This won't be part of the multisig account, as it works too differently. Right now it's more a workaround than a proper design.
There's going to be a type of account abstraction that will be initialized during the init genesis. This account's address will be a known one, and anyone wanting to send a multi-signer message will have to know it (MULTISIGNER_ADDR
).
The multisigner will be an abstracted account that can send messages in behalf of other accounts, like a SudoSend
(but always performing a signature verification).
To send a multi-signer message, a UserOperation will be assembled with MULTISIGNER_ADDR
as the sender.
execution_messages
will contain a list of messages signed by different accounts.
authentication_method
will contain a list of authentication methods, the length must match execution_messages
's length (one auth method for each message).
authentication_data
will contain a list of signatures, one for each msg in execution_messages
.
For bundler_payment_messages
we could either:
execution_messages
sign over this tooauthentication_method
that only signs over bundler_payment_messages
.I like the second approach as it will be simpler to do imo, as we treat it as an extension of execution_messages
.