Kagome
Polkadot Runtime Engine in C++17
extrinsic.hpp
Go to the documentation of this file.
1 
6 #ifndef KAGOME_PRIMITIVES_EXTRINSIC_HPP
7 #define KAGOME_PRIMITIVES_EXTRINSIC_HPP
8 
9 #include <optional>
10 
11 #include "common/buffer.hpp"
12 #include "scale/tie.hpp"
13 
14 namespace kagome::primitives {
15 
19  using ExtrinsicIndex = uint32_t;
20 
24  struct Extrinsic {
25  SCALE_TIE(1);
26 
28  };
29 } // namespace kagome::primitives
30 
31 #endif // KAGOME_PRIMITIVES_EXTRINSIC_HPP
Class represents arbitrary (including empty) byte buffer.
Definition: buffer.hpp:29
common::Buffer data
extrinsic content as byte array
Definition: extrinsic.hpp:27
uint32_t ExtrinsicIndex
Definition: extrinsic.hpp:19
Extrinsic class represents extrinsic.
Definition: extrinsic.hpp:24