Sha256: 4c9fb33e773159d397d051bbfbf6218c530c4472dc03ef52b7a0ca3a987546a8
Contents?: true
Size: 343 Bytes
Versions: 4
Compression:
Stored size: 343 Bytes
Contents
module SolanaRuby module DataTypes extend self def uint8 UnsignedInt.new(8) end def uint32 UnsignedInt.new(32) end def uint64 UnsignedInt.new(64) end def near_int64 NearInt64.new end def blob1 Blob.new(1) end def blob32 Blob.new(32) end end end
Version data entries
4 entries across 4 versions & 1 rubygems