Class EntryPointAccess
Access control options for a contract entry point (method).
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class EntryPointAccess
Properties
| Edit this page View SourceGroups
Only users from the listed groups may call this method. Note: if the list is empty then this method is not callable from outside the contract.
Declaration
public List<string> Groups { get; init; }
Property Value
| Type | Description |
|---|---|
| List<string> |
IsPublic
When public, anyone can call this method (no access controls).
Declaration
public bool IsPublic { get; init; }
Property Value
| Type | Description |
|---|---|
| bool |
IsTemplate
Can't be accessed directly but are kept in the derived wasm bytes.
Declaration
public bool IsTemplate { get; init; }
Property Value
| Type | Description |
|---|---|
| bool |