Class MultisigAddress
MultisigAddress is a convenience class for handling multisignature public identities.
Inherited Members
Namespace: Algorand
Assembly: Algorand.dll
Syntax
[JsonConverter(typeof(MultisigAddressConverter))]
public class MultisigAddress
Constructors
| Edit this page View SourceMultisigAddress(int, int, List<Ed25519PublicKeyParameters>)
Declaration
public MultisigAddress(int version, int threshold, List<Ed25519PublicKeyParameters> publicKeys)
Parameters
| Type | Name | Description |
|---|---|---|
| int | version | |
| int | threshold | |
| List<Ed25519PublicKeyParameters> | publicKeys |
MultisigAddress(int, int, List<byte[]>)
Declaration
[JsonConstructor]
public MultisigAddress(int version, int threshold, List<byte[]> publicKeys)
Parameters
| Type | Name | Description |
|---|---|---|
| int | version | |
| int | threshold | |
| List<byte[]> | publicKeys |
Fields
| Edit this page View SourcepublicKeys
Declaration
[JsonProperty]
public List<Ed25519PublicKeyParameters> publicKeys
Field Value
| Type | Description |
|---|---|
| List<Ed25519PublicKeyParameters> |
threshold
Declaration
[JsonProperty]
public int threshold
Field Value
| Type | Description |
|---|---|
| int |
version
Declaration
[JsonProperty]
public int version
Field Value
| Type | Description |
|---|---|
| int |
Methods
| Edit this page View SourceEquals(object?)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object? obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| bool | true if the specified object is equal to the current object; otherwise, false. |
Overrides
| Edit this page View SourceGetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | A hash code for the current object. |
Overrides
| Edit this page View SourceToAddress()
building an address object helps us generate string representations
Declaration
public Address ToAddress()
Returns
| Type | Description |
|---|---|
| Address | the address |
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | A string that represents the current object. |