Official NodeJS SDK for ethoFS
The ethoFS NodeJS SDK provides the quickest / easiest path for interacting with the Etho Protocol Network.
npm install --save @ethofs/sdk
To start, simply require the ethoFS SDK and set up an instance with your ethoFS Upload Address/Key (Etho Protocol Key). Register a new upload address using the addUser function or by registering at: Etho Protocol Uploads.
const ethofsSDK = require('@ethofs/sdk');
const ethofs = ethofsSDK();
const ethofsSDK = require('@ethofs/sdk');
const ethofs = ethofsSDK('yourETHOPrivateKey');
connections
: A JSON object that contains the following keyvalues:rpc
(optional) : The Etho Protocol RPC Locationgateway
(optional) : The IPFS API/Gateway Location
const connections = {
rpc: 'https://rpc.ethoprotocol.com',
gateway: 'https://gateway.ethoprotocol.com'
};
const ethofsSDK = require('@ethofs/sdk');
const ethofs = ethofsSDK('yourETHOPrivateKey', connections);
Quickly test that you can connect to the API with the following call:
ethofs.testAuthentication().then((result) => {
//handle successful authentication here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Once you've set up your instance, using the ethoFS SDK is easy. Simply call your desired function and handle the results of the promise.
-
User
-
Pinning
-
Data
### `networkStats` Retrieve ethoFS Network Stats.
{
activeUploadContracts: This is number of active upload contracts on the network,
totalNetworkStorageUse: This is total used storage space(in bytes) used on the network,
networkStorageAvailable: This is total used storage space(in bytes) available on the network,
active_gatewaynodes: This is total number of active Gateway Nodes on the network,
active_masternodes: This is total number of active Masternodes on the network,
active_servicenodes: This is total number of active Service Nodes on the network,
gatewaynode_reward: This is the previous daily reward payment for Gateway Nodes,
masternode_reward: This is the previous daily reward payment for Masternodes,
servicenode_reward: This is the previous daily reward payment for Service Nodes
}
ethofs.networkStats().then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Retrieve ethoFS Node Location Information.
[
{
type: This is type of node (Gateway Node, Masternode, Service Node),
country: This is the country where node is located in,
city: This is the city where node is located in,
latitude: This is the latitude of node (geolocated by IP address),
longitude: This is the longitude of node (geolocated by IP address)
}
]
ethofs.nodeLocations().then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Estimate cost of a data upload by sending a request with upload duration and estimated size.
readableStream
- A readableStream of the file to be addedoptions
: A JSON object that contains the following keyvalues:ethofsOptions
: A JSON object with additional options for the data being pinned
{
uploadSize: This is the calculated size of the upload,
uploadDuration: This is the upload contract duration provided by the user,
uploadCost: This is the calculated total cost in ETHO (wei) for the upload
}
const fs = require('fs');
const readableStreamForFile = fs.createReadStream('./yourfile.png');
const options = {
ethofsOptions: {
hostingContractDuration: 100000,
hostingContractSize: 20000000
}
};
ethofs.calculateCost(options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Add a new user/address to ethoFS network.
userName
- A string of the desired user name for ethoFS registration
{
ethoTXHash: This is transaction hash of the confirmed upload contract on the Ether-1 Network
}
var userName = 'TestUserName';
ethofs.addUser(userName).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Send a file to ethoFS for direct pinning to IPFS.
readableStream
- A readableStream of the file to be addedoptions
: A JSON object that contains the following keyvalues:ethofsData
: A JSON object with (#ethofsData-anchor) for the data being pinnedethofsOptions
: A JSON object with additional options for the data being pinned
{
ipfsHash: This is the IPFS multi-hash provided back for your content,
ethoTXHash: This is transaction hash of the confirmed upload contract on the Ether-1 Network,
uploadCost: This is the total cost in ETHO for the upload,
initiationBlock: This is the block number the upload contract was initialized/created on,
expirationBlock: This is the block number that the upload contract will expire on
}
const fs = require('fs');
const readableStreamForFile = fs.createReadStream('./yourfile.png');
const options = {
ethofsData: {
name: 'MyCustomUploadName',
keyvalues: {
customKey: 'customValue',
customKey2: 'customValue2'
}
},
ethofsOptions: {
hostingContractDuration: 100000
}
};
ethofs.pinFileToIPFS(readableStreamForFile, options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Send a folder to ethoFS for direct pinning to IPFS.
readableStream
- A readableStream of the folder to be addedoptions
: A JSON object that contains the following keyvalues:ethofsData
: A JSON object with (#ethofsData-anchor) for the data being pinnedethofsOptions
: A JSON object with additional options for the data being pinned
{
ipfsHash: This is the IPFS multi-hash provided back for your content,
ethoTXHash: This is transaction hash of the confirmed upload contract on the Ether-1 Network,
uploadCost: This is the total cost in ETHO for the upload,
initiationBlock: This is the block number the upload contract was initialized/created on,
expirationBlock: This is the block number that the upload contract will expire on
}
const fs = require('fs');
const readableStreamForFolder = fs.createReadStream('./yourDirectory');
const options = {
ethofsData: {
name: 'MyCustomUploadName',
keyvalues: {
customKey: 'customValue',
customKey2: 'customValue2'
}
},
ethofsOptions: {
hostingContractDuration: 100000
}
};
ethofs.pinFolderToIPFS(readableStreamForFolder, options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Send a file/directory from local filesystem to ethoFS for direct pinning to IPFS.
fsLocation
- A local filesystem location of the file or directory to be addedoptions
: A JSON object that contains the following keyvalues:ethofsData
: A JSON object with (#ethofsData-anchor) for the data being pinnedethofsOptions
: A JSON object with additional options for the data being pinned
{
ipfsHash: This is the IPFS multi-hash provided back for your content,
ethoTXHash: This is transaction hash of the confirmed upload contract on the Ether-1 Network,
uploadCost: This is the total cost in ETHO for the upload,
initiationBlock: This is the block number the upload contract was initialized/created on,
expirationBlock: This is the block number that the upload contract will expire on
}
const sourceDirectory = ('./yourDirectory');
const options = {
ethofsData: {
name: 'MyCustomDirectoryUploadName',
keyvalues: {
customKey: 'customValue',
customKey2: 'customValue2'
}
},
ethofsOptions: {
hostingContractDuration: 100000
}
};
ethofs.pinFromFS(sourceDirectory, options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Have ethoFS extend the contract by increasing the expiration blocktime of content that you've pinned/uploaded through the platform.
uploadContractAddress
- the upload contract address of the content you wish to extend with ethoFSoptions
: A JSON object that contains the following keyvalues:ethofsOptions
: A JSON object with (#ethofsOptions-anchor) for the data being extended
{
ethoTXHash: This is transaction hash of the confirmed upload contract extension on the Ether-1 Network
}
const options = {
ethofsOptions: {
hostingContractDuration: 100000
}
};
ethofs.extendPin(hostingContractAddress, options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Have ethoFS unpin content that you've pinned/uploaded through the platform.
uploadContractAddress
- the upload contract address of the content you wish to remove from ethoFS
{
ethoTXHash: This is transaction hash of the confirmed upload contract removal on the Ether-1 Network
}
ethofs.unpin(hashToUnpin).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Tests that you can authenticate with ethoFS correctly and the authentication key is registered
None
{
authenticated: true
}
ethofs.testAuthentication().then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
List pin contracts stored in ethoFS.
options
(optional) : A JSON object that contains the following keyvalues:ethofsDataFilter
(optional) : A JSON object with (#ethofsDataFilter-anchor) for the filtering out pinned data
{
address: This is the Ether-1 contract address,
data: This is any saved data along with upload (ie name/keyvalues),
ipfsHash: This is the IPFS multi-hash provided back for your content,
initiationBlock: This is the original Ether-1 block the upload was iniated/recorded in,
expirationBlock: This is the Ether-1 expiration block of the upload contract
}
const options = {
ethofsDataFilter: {
name: 'MyNameFilter',
keyvalues: {
customKeyFilter: 'customValueFilter',
customKey2Filter: 'customValue2Filter'
}
},
};
ethofs.pinList(options).then((result) => {
//handle results here
console.log(result);
}).catch((err) => {
//handle error here
console.log(err);
});
Some endpoints allow you to pass additional options for ethoFS to take into account when adding content to IPFS.
The options object can consist of the following values:
- uploadContractDuration (required) - The duration in ETHO blocks you would like your upload pinned for. A minimum of 100000 blocks is required.
{
hostingContractDuration: 100000
}
Some endpoints allow you to pass additional data to store with your IPFS upload.
The options object can consist of the following values:
- name (optional) - The name of your upload.
- keyvalues (optional) - Misc metadata to store with your upload.
{
name: 'UploadContractName',
keyvalues: {
customKey: 'customValue',
customKey2: 'customValue2'
}
}
Some endpoints allow you to pass additional data filters to filter out existing contracts.
The options object can consist of the following values:
- name (optional) - The name of your upload.
- keyvalues (optional) - Misc metadata stored with your upload.
{
name: 'UploadContractNameFilter',
keyvalues: {
customKeyFilter: 'customValueFilter',
customKey2Filter: 'customValue2Filter'
}
}
Feel free to file a github issue or email us at [email protected]
We'd love to hear from you!