Variable $MoveScriptBytecodeConst

$MoveScriptBytecode: {
    description: "Move script bytecode";
    properties: {
        abi: {
            type: "MoveFunction";
        };
        bytecode: {
            isRequired: true;
            type: "HexEncodedBytes";
        };
    };
} = ...

Type declaration

  • description: "Move script bytecode"
  • properties: {
        abi: {
            type: "MoveFunction";
        };
        bytecode: {
            isRequired: true;
            type: "HexEncodedBytes";
        };
    }
    • abi: {
          type: "MoveFunction";
      }
      • type: "MoveFunction"
    • bytecode: {
          isRequired: true;
          type: "HexEncodedBytes";
      }
      • isRequired: true
      • type: "HexEncodedBytes"

Generated using TypeDoc