Variable $MoveModuleBytecodeConst

$MoveModuleBytecode: {
    description: "Move module bytecode along with it's ABI";
    properties: {
        abi: {
            type: "MoveModule";
        };
        bytecode: {
            isRequired: true;
            type: "HexEncodedBytes";
        };
    };
} = ...

Type declaration

  • description: "Move module bytecode along with it's ABI"
  • properties: {
        abi: {
            type: "MoveModule";
        };
        bytecode: {
            isRequired: true;
            type: "HexEncodedBytes";
        };
    }
    • abi: {
          type: "MoveModule";
      }
      • type: "MoveModule"
    • bytecode: {
          isRequired: true;
          type: "HexEncodedBytes";
      }
      • isRequired: true
      • type: "HexEncodedBytes"

Generated using TypeDoc