Type Alias PreimageEvent

PreimageEvent: Enum<{
    Cleared: {
        hash: FixedSizeBinary<32>;
    };
    Noted: {
        hash: FixedSizeBinary<32>;
    };
    Requested: {
        hash: FixedSizeBinary<32>;
    };
}>

Type declaration

  • Cleared: {
        hash: FixedSizeBinary<32>;
    }

    A preimage has ben cleared.

    • hash: FixedSizeBinary<32>
  • Noted: {
        hash: FixedSizeBinary<32>;
    }

    A preimage has been noted.

    • hash: FixedSizeBinary<32>
  • Requested: {
        hash: FixedSizeBinary<32>;
    }

    A preimage has been requested.

    • hash: FixedSizeBinary<32>