Welcome to the requestNetwork.js documentation! requestNetwork.js is a Javascript library for interacting with the Request Network protocol. Using the library you can create new requests from your applications, pay them, consult them or update them from your own off-chain applications.
If your application is decentralized and onchain on Ethereum, you can directly interact with our smart contracts. Smart contract documentation
This is still an alpha version which will evolve significantly before the main net release.
Everything that is specified in the wiki.
Among other things, this documentation specifies the smart contract architecture, the different actions that can be done at specific times, the statuses, how to use the extensions, the fee management system, the cross currency feature, how to manage identity and what to expect from the reputation system.
No tutorials available yet. Feel free to suggest yours and we will refer to it. If you’re looking for an example, you can browse the app.request.network website and github
requestNetwork.js ships as a CommonJS package. CommonJS (recommended):
npm install @requestnetwork/request-network.js --save
yarn add @requestnetwork/request-network.js
(We are currently working on retrieving the name of requestnetwork.js)
import RequestNetwork from '@requestnetwork/request-network.js';
npm install -g ganache-cli
Launch a ganache-cli instance on a terminal:
npm run ganache
In a second terminal, deploy the contracts:
npm run testdeploy
You can now launch the unit tests:
npm run testunit
Default configuration (Infura and Rinkeby)
let requestNetwork = new RequestNetwork();
Custom configuration
let requestNetwork = new RequestNetwork(provider, networkId, useIpfsPublic);
Instantiates a new RequestNetwork instance that provides the public interface to the requestNetwork.js library.
-
@param
providerThe Web3.js Provider instance you would like the requestNetwork.js library to use for interacting with the Ethereum network. -
@param
networkIdthe Ethereum network ID. -
@param
useIpfsPublicuse public ipfs node if true, private one specified in “src/config.json ipfs.nodeUrlDefault.private” otherwise -
@return An instance of the requestNetwork.js RequestNetwork class.
requestNetwork.js is a promise-based library. This means that whenever an asynchronous call is required, the library method will return a native Javascript promise. You can therefore choose between using promise or async/await syntax when calling our async methods.
Every function that modify data on the blockchain will trigger first an event “broadcasted” when the transaction is submitted to the nodes, before returning the request data when the transaction is confirmed. You can specify a number of confirmations to wait before returning the promise in options.numberOfConfirmation - default to 0.
Async/await syntax (recommended):
try {
var data = await requestNetwork.requestEthereumService.accept(requestId).on('broadcasted', txHash => {
//Transaction broadcasted
console.log('transaction hash: ', txHash);
});
//Transaction mined
console.log(data.request)
} catch (error) {
console.log('Caught error: ', error);
}Promise syntax:
requestNetwork.requestEthereumService.accept(requestId).on('broadcasted', txHash => {
//Transaction broadcasted
console.log('Transaction hash: ', txHash);
}).then(data => {
//Transaction mined
console.log(data.request);
})
.catch(error => {
console.log('Caught error: ', error);
});As is the convention with promise-based libraries, if an error occurs, it is thrown. It is the callers responsibility to catch thrown errors and to handle them appropriately.
The library adheres to the Semantic Versioning 2.0.0 specification. Note that major version zero (0.y.z) is for initial development. Anything may change at any time. The public API should not be considered stable since the library is still an alpha and we will introduce backward incompatible changes to the interface without incrementing the major version until the 1.0.0 release. Our convention until then will be to increment the minor version whenever we introduce backward incompatible changes to the public interface, and to increment the patch version otherwise. Functions
public createRequestAsPayee(_payer: string, _amountInitial: any, _data ? : string, _extension ? : string, _extensionParams ? : Array < any >, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_payeraddress of the payer - @param
_amountInitialamount initial expected of the request - @param
_dataJson of the request's details (optional) - @param
_extensionaddress of the extension contract of the request (optional) - @param
_extensionParamsarray of parameters for the extension (optional) - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public accept(_requestId: string, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public cancel(_requestId: string, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public paymentAction(_requestId: string, _amount: any, _additionals: any, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_amountamount to pay in wei - @param
_additionalsadditional to declaire in wei (optional) - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public refundAction(_requestId: string, _amount: any, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_amountamount to refund in wei - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public subtractAction(_requestId: string, _amount: any, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_amountsubtract to declare in wei - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public additionalAction(_requestId: string, _amount: any, _options ? : any)
Emit the event 'broadcasted' with {transaction: {hash}} when the transaction is submitted.
- @param
_requestIdrequestId of the payer - @param
_amountsubtract to declare in wei - @param
_optionsoptions for the method (gasPrice,gas,value,from,numberOfConfirmation) - @return promise of the object containing the request and the transaction hash (
{request, transaction})
public getRequestCurrencyContractInfo(_requestId: string)
return {} always
- @param
_requestIdrequestId of the request - @return promise of the object containing the information from the currency contract of the request (always
{}here)
public getRequest(_requestId: string)
- @param
_requestIdrequestId of the request - @return promise of the object containing the request
public getRequestByTransactionHash(_hash: string)
Get a request and method called by the hash of a transaction
- @param _hash hash of the ethereum transaction
- @return promise of the object containing the request and the transaction
public getRequestEvents(_requestId: string, _fromBlock ?: number, _toBlock ?: number)
- @param
_requestIdrequestId of the request - @param
_fromBlocksearch events from this block (optional) - @param
_toBlocksearch events until this block (optional) - @return promise of the array of events about the request
public getRequestEventsCurrencyContractInfo(_requestId: string, _fromBlock ?: number, _toBlock ?: number)
- @param
_requestIdrequestId of the request - @param
_fromBlocksearch events from this block (optional) - @param
_toBlocksearch events until this block (optional) - @return promise of the object containing the events from the currency contract of the request (always
{}here)
Here is the list of events produced by the Request Network smarts contracts. Note that the solidity types will be converted in strings when you receive them.
- event
Created(bytes32 indexed requestId, address indexed payee, address indexed payer) - event
Accepted(bytes32 indexed requestId) - event
Canceled(bytes32 indexed requestId) - event
UpdateBalance(bytes32 indexed requestId, int256 deltaAmount) - event
UpdateExpectedAmount(bytes32 indexed requestId, int256 deltaAmount) - event
NewPayee(bytes32 indexed requestId, address payee) - event
NewPayer(bytes32 indexed requestId, address payer) - event
NewExpectedAmount(bytes32 indexed requestId, int256 expectedAmount) - event
NewExtension(bytes32 indexed requestId, address extension) - event
NewData(bytes32 indexed requestId, string data)