Variable $EventConst

$Event: {
    description: "An event from a transaction";
    properties: {
        data: {
            description: "The JSON representation of the event";
            isRequired: true;
            properties: {};
        };
        guid: {
            isRequired: true;
            type: "EventGuid";
        };
        sequence_number: {
            isRequired: true;
            type: "U64";
        };
        type: {
            isRequired: true;
            type: "MoveType";
        };
    };
} = ...

Type declaration

  • description: "An event from a transaction"
  • properties: {
        data: {
            description: "The JSON representation of the event";
            isRequired: true;
            properties: {};
        };
        guid: {
            isRequired: true;
            type: "EventGuid";
        };
        sequence_number: {
            isRequired: true;
            type: "U64";
        };
        type: {
            isRequired: true;
            type: "MoveType";
        };
    }
    • data: {
          description: "The JSON representation of the event";
          isRequired: true;
          properties: {};
      }
      • description: "The JSON representation of the event"
      • isRequired: true
      • properties: {}
      • guid: {
            isRequired: true;
            type: "EventGuid";
        }
        • isRequired: true
        • type: "EventGuid"
      • sequence_number: {
            isRequired: true;
            type: "U64";
        }
        • isRequired: true
        • type: "U64"
      • type: {
            isRequired: true;
            type: "MoveType";
        }
        • isRequired: true
        • type: "MoveType"

    Generated using TypeDoc