Files
vk-nft-feed/index.js
2022-01-21 01:00:13 +03:00

16 lines
353 B
JavaScript

import dotenv from 'dotenv';
dotenv.config();
import Rarepress from 'rarepress';
import getImages from './getImages.js';
(async () => {
const rarepress = new Rarepress();
// await rarepress.init({ network: 'mainnet' });
(await getImages(-1)).forEach((image) => {
console.log(image);
// const cid = await rarepress.fs.add()
})
})();