MultisigStorage class

Constructors

MultisigStorage({required TimePoint timePoint, required BigInt deposit, required Uint8List depositor, required List<Uint8List> approvals})
const
MultisigStorage.fromMap(Map<String, dynamic> map)
factory

Properties

approvals List<Uint8List>
final
deposit BigInt
final
depositor Uint8List
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
timePoint TimePoint
final

Methods

isAlreadyApprovedBy(Uint8List address) bool
isApprovedByAll(int signatoriesLength) bool
isOnlyOneApprovalLeft(int signatoriesLength) bool
isOwner(Uint8List address) bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

codec CompositeCodec
final

Static Methods

createMultisigStorageKey(Uint8List multiSigAddressBytes, Uint8List callHashReceiver) Uint8List
Make Multisig Storage Key
decodeFrom(Input input) MultisigStorage