Giter Club home page Giter Club logo

irys-js-sdk's Introduction

Irys SDK

The Irys SDK is a typesafe SDK for interacting with Irys.

What is Irys?

Irys is the only provenance layer. It enables users to scale permanent data and precisely attribute its origin. Data uploaded to Irys is permanent, precise, and unconstrained. Learn more in our docs.

How Irys works

When you upload data to Irys, you are immediately issued a receipt. This receipt contains an ID that can be used to instantly download your data, along with attribution, authorship details, and timestamp accurate to the millisecond. The receipt acts as cryptographic proof of time and can be trustlessly verified as a safeguard against potentially malicious behavior.

Next, Irys includes your transaction in a bundle and submits it to Arweave where it is permanently stored. Irys guarantees your transaction will be finalized on Arweave (>= 50 block confirmations) and seeded to >=5 miners.

For more details, including a video overview, see our docs.

Why Irys offers

Getting started

Install the SDK

Using npm:

npm install @irys/sdk

or yarn:

yarn add @irys/sdk

Connect to an Irys node

Connect to one of our three nodes:

const getIrys = async () => {
	const providerUrl = "https://rpc-mumbai.maticvigil.com";
	const token = "matic";
 
	const irys = new Irys({
		network: "devnet", // "mainnet" || "devnet"
		token, // Token used for payment
		key: process.env.PRIVATE_KEY, // Private key
		config: { providerUrl }, // Optional provider URL, only required when using Devnet
	});
	return irys;
};

Upload

const uploadData = async () => {
	const irys = await getIrys();
	const dataToUpload = "GM world.";
	try {
		const receipt = await irys.upload(dataToUpload);
		console.log(`Data uploaded ==> https://gateway.irys.xyz/${receipt.id}`);
	} catch (e) {
		console.log("Error uploading data ", e);
	}
};

For more code examples, including code showing how to upload files and folders, see our docs.

Irys in the browser

When using Irys in the browser, the end user's injected provider is used to sign transactions and pay for uploads. See our docs for code examples.

UI toolkit

To help kickstart your next project, we've released the Provenance Toolkit, a full suite of open source UI components.

Video

We also have a video teaching how to build with Irys.

Support

If you have any questions or just want to brainstorm about how to integrate Irys into your project, reach out to us in Discord.

irys-js-sdk's People

Contributors

jessetherobot avatar joshbenaron avatar rabm2k7 avatar lukecd avatar jshaw-ar avatar kevger avatar 0xmaayan avatar jbn avatar focusjosh avatar jorahw3 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.