CryptoPriceFinder 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb4df3a5bca6acee44250193ee69d9b0efeaa7625a2f725b7983f5af035e064a
4
- data.tar.gz: 7387fbd1ae46338c5437c28495b74805ac43f132d8bae7860bb9933eb1d25e7a
3
+ metadata.gz: 2985884072fbb0fcf5947b15e93ea59842733b673814672c7967033316a92a2d
4
+ data.tar.gz: 6643e833eb55937b87112dea847a1b6589b13ccb38222b98543a958a0d58b0df
5
5
  SHA512:
6
- metadata.gz: a2cb18c22c75464048bb61afa5d89c7560980632d24a66e41845fefcb59c226622b9c7124e2a72447aeab4fb60b663d695425e59e2e9e0f88608de8e3c2f9d45
7
- data.tar.gz: 1005391cd894adadb1f9c6709ee63bcd4f2095457b2bfad89acc50266ab9c373d2574fcd68ff14f5a412ab83b269425a64940d45c1cd07c69254fbac2350973e
6
+ metadata.gz: 3eaed93abbf567fc875c3f4819c4283cfe273ea16896ffa148bd819297eb9ba819c35e23df6684c059f55d2ce2df430979afbfd6df394ede22c92a5ff252ab6e
7
+ data.tar.gz: 9b9cca50fd27f83b90d1923d40e6cb9d3e7c6cb0d42b13b705717a7cb442ea876679b50e8fd77ee62f7c33c65da65a2320761480a70d00847fa95470e18bcd2e
@@ -76,5 +76,38 @@ module CryptoPriceFinder
76
76
  def ravencoin(amount)
77
77
  http("rvn", "usd", amount)
78
78
  end
79
+ def usdc(amount)
80
+ http("usdc", "usd", amount)
81
+ end
82
+ def cardano(amount)
83
+ http("ada", "usd", amount)
84
+ end
85
+ def sui(amount)
86
+ http("sui", "usd", amount)
87
+ end
88
+ def uniswap(amount)
89
+ http("uni", "usd", amount)
90
+ end
91
+ def fantom(amount)
92
+ http("ftm", "usd", amount)
93
+ end
94
+ def fartcoin(amount)
95
+ http("fartcoin", "usd", amount)
96
+ end
97
+ def neo(amount)
98
+ http("neo", "usd", amount)
99
+ end
100
+ def ftx_token(amount)
101
+ http("ftt", "usd", amount)
102
+ end
103
+ def flow(amount)
104
+ http("flow", "usd", amount)
105
+ end
106
+ def worldcoin(amount)
107
+ http("wld", "usd", amount)
108
+ end
109
+ def vechain(amount)
110
+ http("vet", "usd", amount)
111
+ end
79
112
  end
80
113
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CryptoPriceFinder
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CryptoPriceFinder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael-Meade
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-03 00:00:00.000000000 Z
11
+ date: 2025-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty