main.rb 260 B

123456789101112131415
  1. require_relative "EthRegistry.rb"
  2. require_relative "CheapEth.rb"
  3. require_relative "gui.rb"
  4. $contract_addr = "0x735954982e500db6809792dec536684ffd2bb0d6"
  5. cheap_eth = CheapEth.new
  6. app = Fox::FXApp.new
  7. main = MainWindow.new app, cheap_eth
  8. app.create
  9. app.run