Aptos · Schema
MoveModule
A Move module
BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC
Properties
| Name | Type | Description |
|---|---|---|
| address | object | |
| name | object | |
| friends | array | Friends of the module |
| exposed_functions | array | Public functions of the module |
| structs | array | Structs of the module |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/aptos/json-schema/MoveModule.json",
"title": "MoveModule",
"type": "object",
"description": "A Move module",
"required": [
"address",
"name",
"friends",
"exposed_functions",
"structs"
],
"properties": {
"address": {
"$ref": "#/components/schemas/Address"
},
"name": {
"$ref": "#/components/schemas/IdentifierWrapper"
},
"friends": {
"type": "array",
"description": "Friends of the module",
"items": {
"$ref": "#/components/schemas/MoveModuleId"
}
},
"exposed_functions": {
"type": "array",
"description": "Public functions of the module",
"items": {
"$ref": "#/components/schemas/MoveFunction"
}
},
"structs": {
"type": "array",
"description": "Structs of the module",
"items": {
"$ref": "#/components/schemas/MoveStruct"
}
}
}
}