Sha256: 477d1a07f9475a0e3d1e4a6ac912ef96b9a62c73d9d6a98cba0de05a4ed72d4c
Contents?: true
Size: 944 Bytes
Versions: 3
Compression:
Stored size: 944 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct ClaimOfferAtomV0 # { # // emitted to identify the offer # uint256 sellerEd25519; // Account that owns the offer # int64 offerID; # # // amount and asset taken from the owner # Asset assetSold; # int64 amountSold; # # // amount and asset sent to the owner # Asset assetBought; # int64 amountBought; # }; # # =========================================================================== module Stellar class ClaimOfferAtomV0 < XDR::Struct attribute :seller_ed25519, Uint256 attribute :offer_id, Int64 attribute :asset_sold, Asset attribute :amount_sold, Int64 attribute :asset_bought, Asset attribute :amount_bought, Int64 end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.32.0 | generated/stellar/claim_offer_atom_v0.rb |
stellar-base-0.31.0 | generated/stellar/claim_offer_atom_v0.rb |
stellar-base-0.30.0 | generated/stellar/claim_offer_atom_v0.rb |