mirror of
https://github.com/anatolykopyl/vk-nft-feed.git
synced 2026-03-26 04:44:34 +00:00
Initial commit
This commit is contained in:
15
index.js
Normal file
15
index.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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()
|
||||
})
|
||||
})();
|
||||
Reference in New Issue
Block a user