Skip to content

ethstorage/ethfs-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ethfs-sdk

EthStorage upload file sdk.

Installation

With npm do

$ npm install ethfs-sdk

Usage

The specific usage tutorial can be accessed here.

Get Signer

const provider = new ethers.providers.Web3Provider(window.ethereum);
const signer = provider.getSigner();


or


const rpc = "https://galileo.web3q.io:8545";
const privateKey = "0x...";
const provider = new ethers.providers.JsonRpcProvider(rpc);
const signer = new ethers.Wallet(privateKey, provider);

Create FlatDirectory

import {createDirectory} from "ethfs-sdk";

const signer = getSigner(); 
const directoryAddress = await createDirectory(signer);
// 0xC7c5CB39D5be1626c782C980b6008AC157DbC49d

Upload file

import {upload} from "ethfs-sdk";

const signer = getSigner();
const contract = "0xC7c5CB39D5be1626c782C980b6008AC157DbC49d";

const fileName = "0.jpeg";
const fileSize = 1024;
const content = Buffer;
// "" means the file is in the root directory
const dirPath = "test/";
const directoryPath = dirPath + fileName;

// callback, can be null
const onProgress = (chunkIndex, totalChunk, fileName) => {
// ...
}
const onSuccess = (fileName) => {
// ...
}
const onError = (message) => {
// ...
}

await upload(signer, contract, directoryPath, fileSize, content,
    onProgress, onSuccess, onError);
// file path: 0xC7c5CB39D5be1626c782C980b6008AC157DbC49d/test/0.jpeg

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published