Skip to content

Javascript library for uploading to arweave network easily with manifest generation.

License

Notifications You must be signed in to change notification settings

bberkayozdemir/arweave-deployer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arweave Deployer

Javascript library for uploading to arweave network easily with manifest generation.

Installion

npm install arweave-deployer

Usage

import ArweaveDeployer, { TxTags } from "arweave-deployer"

//initalize
var deployer = new ArweaveDeployer(Wallet, "arweave.net", 443, "https");

//load folder or file
var txs = await deployer.load("./folder");

//deploy 
var deploy = await deployer.deploy(); /*returns {transactionId, [transactions]}*/

//custom tags
let tags = new TxTags();
tags.addTag("MyCustomTagName", "MyCustomTagValue");
var txs = await deployer.load("./test", tags);

About

Javascript library for uploading to arweave network easily with manifest generation.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published