Initial commit

This commit is contained in:
Yaser
2026-08-13 19:42:08 +03:30
commit d59bf30ef0
173 changed files with 11702 additions and 0 deletions

4
bin/check_order.rb Normal file
View File

@@ -0,0 +1,4 @@
# frozen_string_literal: true
order = Order.find(ENV.fetch('ORDER_ID', '1'))
puts "ORDER id=#{order.id} state=#{order.state} price=#{order.price} volume=#{order.volume} origin_volume=#{order.origin_volume}"