shapeshift 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 213f575b1a04d623cc02c63ddc926b1f50ff7843
4
+ data.tar.gz: 30cd9979b6c64d47e2c1425bccfaf7ba10768e01
5
+ SHA512:
6
+ metadata.gz: 1d0f186b9a36b035d7886374e8f5921803f9cf6ef16e69c0689e5d6666d8ea4d6a83e885360e45143f1c01110fd928243790d7d27ade281d7099a2f4bfa84638
7
+ data.tar.gz: 4d647a061e82ce2d77da2a20ee961cc52ca1c8fc6b2c23a67a85bee25aca303addc280ec9f80eb9a89ee106cfc31f15581598bad28a82aeca830f2f10e91b276
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in shapeshift.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 ATJohnson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,40 @@
1
+ # Shapeshift
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/shapeshift`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Refactor and make code base more DRY
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'shapeshift'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install shapeshift
22
+
23
+ ## Usage
24
+
25
+ TODO: Use cases and example code coming soon.
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/atjohnson/shapeshift.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "shapeshift"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,126 @@
1
+ require "shapeshift/version"
2
+ require 'net/http'
3
+ require 'json'
4
+
5
+ module Shapeshift
6
+
7
+ def self.get(path_name, value = nil)
8
+ uri = URI("https://shapeshift.io/#{path_name}/#{value}")
9
+ response = Net::HTTP.get(uri)
10
+ check_response(response)
11
+ end
12
+
13
+ def self.coins
14
+ coins = get("getcoins")
15
+ all_coins = []
16
+ coins.each do |coin|
17
+ all_coins << coin[1]['name']
18
+ end
19
+ all_coins
20
+ end
21
+
22
+ def self.limit(coin_pair)
23
+ get("limit", coin_pair)
24
+ end
25
+
26
+ def self.market(coin_pair)
27
+ get("marketinfo", coin_pair)
28
+ end
29
+
30
+ def self.rate(coin_pair)
31
+ get("rate", coin_pair)
32
+ end
33
+
34
+ def self.status(deposit_address)
35
+ get("txStat", deposit_address)
36
+ end
37
+
38
+ def self.time_remaining(deposit_address)
39
+ get("timeremaining", deposit_address)
40
+ end
41
+
42
+ def self.shift(wallet_address, coin_pair, return_address)
43
+ url = "https://shapeshift.io/shift"
44
+ uri = URI.parse(url)
45
+ http = Net::HTTP.new(uri.host, uri.port)
46
+ http.use_ssl = true
47
+ request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
48
+ request.body = {
49
+ "withdrawal" => "#{wallet_address}",
50
+ "pair" => "#{coin_pair}",
51
+ "returnAddress" => "#{return_address}"
52
+ # destTag = (Optional) Destination tag that you want appended to a Ripple payment to you
53
+ # rsAddress = (Optional) For new NXT accounts to be funded, you supply this on NXT payment to you
54
+ # apiKey = (Optional) Your affiliate PUBLIC KEY, for volume tracking, affiliate payments, split-shifts, etc...
55
+ }.to_json
56
+ response = http.request(request)
57
+ puts (response.body)
58
+ end
59
+
60
+ def self.receipt(email, txid)
61
+ url = "https://shapeshift.io/mail"
62
+ uri = URI.parse(url)
63
+ http = Net::HTTP.new(uri.host, uri.port)
64
+ http.use_ssl = true
65
+ request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
66
+ request.body = {
67
+ "email" => "#{email}",
68
+ "txid" => "#{txid}",
69
+ }.to_json
70
+ response = http.request(request)
71
+ end
72
+
73
+ def self.fixed(amount, wallet_address, coin_pair, return_address)
74
+ url = "https://shapeshift.io/sendamount"
75
+ uri = URI.parse(url)
76
+ http = Net::HTTP.new(uri.host, uri.port)
77
+ http.use_ssl = true
78
+ request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
79
+ request.body = {
80
+ "amount" => "#{amount}",
81
+ "withdrawal" => "#{wallet_address}",
82
+ "coin_pair" => "#{coin_pair}",
83
+ "returnAddress" => "#{return_address}"
84
+ # destTag = (Optional) Destination tag that you want appended to a Ripple payment to you
85
+ # rsAddress = (Optional) For new NXT accounts to be funded, you supply this on NXT payment to you
86
+ # apiKey = (Optional) Your affiliate PUBLIC KEY, for volume tracking, affiliate payments, split-shifts, etc...
87
+ }.to_json
88
+ response = http.request(request)
89
+ end
90
+
91
+ def self.quote(amount, coin_pair)
92
+ url = "https://shapeshift.io/sendamount"
93
+ uri = URI.parse(url)
94
+ http = Net::HTTP.new(uri.host, uri.port)
95
+ http.use_ssl = true
96
+ request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
97
+ request.body = {
98
+ "amount" => "#{amount}",
99
+ "coin_pair" => "#{coin_pair}"
100
+ }.to_json
101
+ response = http.request(request)
102
+ end
103
+
104
+ def self.cancel(deposit_address)
105
+ url = "https://shapeshift.io/cancelpending"
106
+ uri = URI.parse(url)
107
+ http = Net::HTTP.new(uri.host, uri.port)
108
+ http.use_ssl = true
109
+ request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
110
+ request.body = {
111
+ "address" => "#{deposit_address}"
112
+ }.to_json
113
+ response = http.request(request)
114
+ end
115
+
116
+ private
117
+
118
+ def self.check_response(response)
119
+ begin
120
+ value = JSON.parse(response)
121
+ rescue JSON::ParserError
122
+ return puts "The API is not responding"
123
+ end
124
+ end
125
+
126
+ end
@@ -0,0 +1,3 @@
1
+ module Shapeshift
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'shapeshift/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "shapeshift"
8
+ spec.version = Shapeshift::VERSION
9
+ spec.authors = ["Trevor Johnson"]
10
+ spec.email = ["trevsadev@gmail.com"]
11
+
12
+ spec.summary = %q{A Ruby wrapper for the shapeshift.io API.}
13
+ spec.description = %q{}
14
+ spec.homepage = "https://github.com/ATJohnson/shapeshift"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.14"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+
27
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shapeshift
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Trevor Johnson
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-07-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: ''
42
+ email:
43
+ - trevsadev@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/shapeshift.rb
56
+ - lib/shapeshift/version.rb
57
+ - shapeshift.gemspec
58
+ homepage: https://github.com/ATJohnson/shapeshift
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.6.12
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: A Ruby wrapper for the shapeshift.io API.
82
+ test_files: []