Initial commit

This commit is contained in:
2022-01-21 01:00:13 +03:00
commit 20ad4adfe8
7 changed files with 18781 additions and 0 deletions

15
index.js Normal file
View 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()
})
})();