Delegate AccountStateGetter
An delegate to provide read-only view of account states.
Gets states associated with the specified account addresses.
If some states associated with the specified account addresses have
never been set these absent states are represented as null.
Namespace: Libplanet.Action
Assembly: Libplanet.dll
Syntax
public delegate IReadOnlyList<IValue?> AccountStateGetter(IReadOnlyList<Address> addresses);
Parameters
| Type | Name | Description |
|---|---|---|
| IReadOnlyList<Address> | addresses | Account addresses associated with the states to get. |
Returns
| Type | Description |
|---|---|
| IReadOnlyList<Nullable<IValue>> | The states associated to the specified account |