Table of Contents

Class MoveModule

Namespace
Aptos
Assembly
Aptos.dll
public class MoveModule
Inheritance
MoveModule
Inherited Members

Constructors

MoveModule(string, string, List<string>, List<MoveFunction>, List<MoveStruct>)

public MoveModule(string address, string name, List<string> friends, List<MoveFunction> exposedFunctions, List<MoveStruct> structs)

Parameters

address string
name string
friends List<string>
exposedFunctions List<MoveFunction>
structs List<MoveStruct>

Fields

Address

[JsonProperty("address")]
public string Address

Field Value

string

ExposedFunctions

[JsonProperty("exposed_functions")]
public List<MoveFunction> ExposedFunctions

Field Value

List<MoveFunction>

Friends

[JsonProperty("friends")]
public List<string> Friends

Field Value

List<string>

Name

[JsonProperty("name")]
public string Name

Field Value

string

Structs

[JsonProperty("structs")]
public List<MoveStruct> Structs

Field Value

List<MoveStruct>