Links

sui_getNormalizedMoveModule

Return a structured representation of Move module

Parameters

  • package : <ObjectID> -
  • module_name : <string> -

Returns

SuiMoveNormalizedModule : <SuiMoveNormalizedModule>
  • address : <string>
  • exposed_functions : <object>
  • file_format_version : <uint32>
  • friends : <[SuiMoveModuleId]>
  • name : <string>
  • structs : <object>

Example Request and Result for sui_getNormalizedMoveModule

Request
curl
--location --request POST 'https://sui-devnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_getNormalizedMoveModule",
"params": [
"0xba483c73a9b79bcc592cc5f163465ff1bc5c5d2e",
"capy"
]
}'