Kagome
Polkadot Runtime Engine in C++17
account.hpp
Go to the documentation of this file.
1 
6 #ifndef KAGOME_PRIMITIVES_ACCOUNT_HPP
7 #define KAGOME_PRIMITIVES_ACCOUNT_HPP
8 
10 
11 namespace kagome::primitives {
12 
13  using AccountId = crypto::Sr25519PublicKey;
14 
15  using AccountNonce = uint32_t;
16 
17 } // namespace kagome::primitives
18 
19 #endif // KAGOME_PRIMITIVES_ACCOUNT_HPP
uint32_t AccountNonce
Definition: account.hpp:15
crypto::Sr25519PublicKey AccountId
Definition: account.hpp:13