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 +4 -4
- data/lib/CryptoPriceFinder/crypto.rb +33 -0
- data/lib/CryptoPriceFinder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2985884072fbb0fcf5947b15e93ea59842733b673814672c7967033316a92a2d
|
4
|
+
data.tar.gz: 6643e833eb55937b87112dea847a1b6589b13ccb38222b98543a958a0d58b0df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
+
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-
|
11
|
+
date: 2025-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|