Sha256: 7e012fcd76837e2fb53093cb76d83b21636544a5c3e73caa24d83e6fc6f1539b
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true module Peatio module ManagementAPIv1 class Client < ::ManagementAPIv1::Client def initialize(*) super ENV.fetch('PEATIO_ROOT_URL'), Rails.configuration.x.peatio_management_api_v1_configuration end def create_withdraw(request_params = {}) self.action = :write_withdraws jwt = payload(request_params.slice(:uid, :tid, :rid, :currency, :amount, :action)) .yield_self { |payload| generate_jwt(payload) } .yield_self do |jwt| action[:requires_barong_totp] ? Barong::ManagementAPIv1::Client.new.otp_sign(request_params.merge(jwt: jwt, account_uid: request_params[:uid])) : jwt end puts "Made it past barong signing" +jwt.to_s request(:post, 'withdraws/new', jwt, jwt: true) end def create_deposit(request_params = {}) self.action = :write_deposits jwt = payload(request_params.slice(:uid, :currency, :amount)) .yield_self { |payload| generate_jwt(payload) } request(:post, 'deposits/new', jwt, jwt: true) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
SimBot-0.1.43 | lib/peatio/management_api_v1/client.rb |