package octez-injector

  1. Overview
  2. Docs

Module Octez_injector.Injector_server_operationSource

Sourcetype parameters = {
  1. entrypoint : string;
  2. value : string;
}

Parameters for smart contract calls

Sourcetype t =
  1. | Transaction of {
    1. amount : int64;
    2. destination : string;
    3. parameters : parameters option;
    }

Operations which can be processed by the injector

Sourceval encoding : t Tezos_base.TzPervasives.Data_encoding.t

Encoding for operations (used by injector for on-disk persistence)

Sourceval pp : Format.formatter -> t -> unit

Pretty printer (human readable) for operations

Sourceval unique : t -> bool

false if the injector will accept duplicate such operations.