This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function scrapZooGame(zooprice, zooper100hashrate, alreadygot) { | |
| fetch('https://api2.zoogame.finance/api/zoo/nft?price=LowToHigh&perPage=5000¤tPage=1&market=true').then(function(response) { | |
| return response.json(); | |
| }).then(function(r) { | |
| var solo = []; | |
| solo = r.data.filter(z => alreadygot.indexOf(z.teamId) == -1); | |
| var fams = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function moboxKeyWorth() { | |
| var keyworth = 0; | |
| function postfetch(d, ratio) { | |
| d = d.list[0]; | |
| d.endPrice /= 1000000000; | |
| console.log(d.endPrice, ratio, d.endPrice * ratio); | |
| return (d.endPrice * ratio); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function zooKeyWorth() { | |
| var keyworth = 0; | |
| function postfetch(d, ratio) { | |
| d = d.data[0]; | |
| console.log(d.price, ratio, d.price * ratio) | |
| return (d.price * ratio); | |
| } | |
| fetch('https://api2.zoogame.finance/api/zoo/nft?price=LowToHigh&perPage=1&market=true&rarity=1').then(function(response) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function scrapZooGame(zooprice, zooper100hashrate, alreadygot) { | |
| fetch('https://api.zoogame.finance/api/zoo/market?nftName=&team=&rarity=&page=1&perPage=10000&type=1¤tPage=1').then(function(response) { | |
| return response.json(); | |
| }).then(function(r) { | |
| var multi = []; | |
| var solo = []; | |
| for (let i = 0; i < r.data.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function scrapMomo(mboxprice, mboxper100hashrate) { | |
| fetch('https://nftapi.mobox.io/auction/search/BNB?page=1&limit=10000&category=&vType=&sort=price&pType=').then(function(response) { | |
| return response.json(); | |
| }).then(function(r) { | |
| r = r.list | |
| var fams = {} | |
| var rares = [] | |
| for (let i = 0; i < r.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function myFunction() { | |
| alert("Hello! I am an alert box!"); | |
| } |