Sha256: 6da2054676be6bb5f09807fd9b29976e3c2aa5e57c6ad85c4ac4cfd0a254920f
Contents?: true
Size: 555 Bytes
Versions: 20
Compression:
Stored size: 555 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # union PublicKey switch (CryptoKeyType type) # { # case KEY_TYPE_ED25519: # uint256 ed25519; # }; # # =========================================================================== module Stellar class PublicKey < XDR::Union switch_on CryptoKeyType, :type switch :key_type_ed25519, :ed25519 attribute :ed25519, Uint256 end end
Version data entries
20 entries across 20 versions & 3 rubygems