2021-05-06 05:44:11 +00:00
|
|
|
package multisig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2022-09-10 14:34:47 +00:00
|
|
|
builtintypes "github.com/filecoin-project/go-state-types/builtin"
|
2021-05-06 05:44:11 +00:00
|
|
|
builtin5 "github.com/filecoin-project/specs-actors/v5/actors/builtin"
|
|
|
|
init5 "github.com/filecoin-project/specs-actors/v5/actors/builtin/init"
|
|
|
|
multisig5 "github.com/filecoin-project/specs-actors/v5/actors/builtin/multisig"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
init_ "github.com/filecoin-project/lotus/chain/actors/builtin/init"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type message5 struct{ message0 }
|
|
|
|
|
|
|
|
func (m message5) Create(
|
|
|
|
signers []address.Address, threshold uint64,
|
|
|
|
unlockStart, unlockDuration abi.ChainEpoch,
|
|
|
|
initialAmount abi.TokenAmount,
|
|
|
|
) (*types.Message, error) {
|
|
|
|
|
|
|
|
lenAddrs := uint64(len(signers))
|
|
|
|
|
|
|
|
if lenAddrs < threshold {
|
|
|
|
return nil, xerrors.Errorf("cannot require signing of more addresses than provided for multisig")
|
|
|
|
}
|
|
|
|
|
|
|
|
if threshold == 0 {
|
|
|
|
threshold = lenAddrs
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.from == address.Undef {
|
|
|
|
return nil, xerrors.Errorf("must provide source address")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up constructor parameters for multisig
|
|
|
|
msigParams := &multisig5.ConstructorParams{
|
|
|
|
Signers: signers,
|
|
|
|
NumApprovalsThreshold: threshold,
|
|
|
|
UnlockDuration: unlockDuration,
|
|
|
|
StartEpoch: unlockStart,
|
|
|
|
}
|
|
|
|
|
|
|
|
enc, actErr := actors.SerializeParams(msigParams)
|
|
|
|
if actErr != nil {
|
|
|
|
return nil, actErr
|
|
|
|
}
|
|
|
|
|
|
|
|
// new actors are created by invoking 'exec' on the init actor with the constructor params
|
|
|
|
execParams := &init5.ExecParams{
|
|
|
|
CodeCID: builtin5.MultisigActorCodeID,
|
|
|
|
ConstructorParams: enc,
|
|
|
|
}
|
|
|
|
|
|
|
|
enc, actErr = actors.SerializeParams(execParams)
|
|
|
|
if actErr != nil {
|
|
|
|
return nil, actErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return &types.Message{
|
|
|
|
To: init_.Address,
|
|
|
|
From: m.from,
|
2022-09-10 14:34:47 +00:00
|
|
|
Method: builtintypes.MethodsInit.Exec,
|
2021-05-06 05:44:11 +00:00
|
|
|
Params: enc,
|
|
|
|
Value: initialAmount,
|
|
|
|
}, nil
|
|
|
|
}
|