FuLink Agent SDK
The FuLink Agent SDK is a robust toolkit designed to empower developers in seamlessly integrating FuLink Agent functionality into their decentralized applications (DApps). Bridging the communication between DApps and the FuLink Agent, this comprehensive SDK provides essential software development tools and resources. You can use it in the browser or in a Node.js runtime. By incorporating the FuLink Agent SDK into your DApp, you enable a secure and efficient connection to the FuLink Agent, which acts as an intermediary for handling privacy-sensitive data requests,such as connect, upload data, apply, approve, and download.
Explore the potential of the FuLink Agent SDK with this documentation, guiding you through the integration process to create DApps that prioritize privacy and innovative functionalities.
Environment
The following is the supported blockchain and its associated chain ID for your reference.
Horus (BSC Testnet)
97
Conflux eSpace Testnet
71
The following are the URLs for the FuLink Agent:
Testnet: https://agent.testnet.fulink.org
Getting Started
Install
To get started, you need to install the FuLink Agent SDK into your project using either of the following commands:
or
Initial configration
After the installation, you'll need to set the configurations in the .env file of your project:
REACT_APP_FULINK_AGENT_URL: the web agent address
REACT_APP_CENTRALIZED_SERVER_URL: the backend service address
REACT_APP_STAKING_SERVICE_URL: the staking service address
REACT_APP_BSC_TESTNET_PORTER_URL: the porter service address
REACT_APP_DEFAULT_NETWORK_CHAIN_ID: the network chain id
Here's an example of how to modify the .env file in your project:
The following lists the default configuration in the FuLink Agent SDK:
FuLink web agent address: https://agent.testnet.fulink.org
Backend service address: https://agent-integration-demo.fulink.org/bk
FuLink staking service address: https://staking-api.testnet.fulink.org
FuLink porter service address: https://porter-api.testnet.fulink.org
The network chain id: 97
How to use
Interacting with FuLink Agent
Upload data
Apply Data
Approve the apply data as publisher
Download data
Interacting with FuLink Agent
The most common action is Sign In, where the user is redirected to the Wallet page to authorize the application. Once the user has successfully signed in, an access key is stored in the browser's LocalStorage. Subsequent actions that require the access key will be permitted.
Copy
When the connect interface is called, the browser will be redirected to FuLink Agent, where user authentication is performed on the Agent side. Once the authentication is completed, the agent-access-sdk will store the user information in the LocalStorage of the calling side, indicating that the login process has been completed.
Upload data
There are four interfaces available for uploading data as publisher: uploadData, uploadDataBatch, uploadFile, and uploadFileBatch. By calling these upload interfaces, you can navigate to the Agent upload page to complete the upload. After the upload is completed, you will receive the dataLabel and dataHash of the uploaded data.
By calling the getFileList
API, you can retrieve all the uploaded data within the Agent.
Apply Data
When applying for data, you can use the apply method from the Agent SDK to pass the file information to FuLink Agent. This will open the application page of FuLink Agent where you can complete the application process. The file information can be obtained from the getFileList
and getFileDetail
API.
You can retrieve the data that the user has applied for by using the getSendApplyFiles
function In the response data of getSendApplyFiles
, the value of the "status" field indicates the approval status of the data, where 1 represents "applying" 2 represents "approved" and 3 represents "rejected"
Approve the apply data as publisher
By calling the getIncomingApplyFiles
function, you can retrieve all the incoming apply data of the user
calling the approve
function, you can pass the data that needs to be approved to FuLink Agent. The data information can be obtained from the getIncomingApplyFiles
API. The number of backup nodes required for the approve
method can be obtained by calling the getUrsulaNumber
API
In the response data of getIncomingApplyFiles
, the value of the "status" field indicates the approval status of the data, where 1 represents "applying" 2 represents "approved" and 3 represents "rejected"
Download data
Once the data requested by the user is approved, it can be downloaded
calling the download
function, you can pass the information for downloading the data to FuLink Agent. The download
function will return the binary buffer of the downloaded data
Example
Copy
Utilities
The default network for the FuLink Agent SDK is Horus (BSC Testnet), with a chain ID of 97
getNetWorkChainId
can be used to retrieve information about the current chain ID. setNetWorkChainId
can be used to change the chain ID.
Explore the fulink-web-agent-integration-demo repository for a practical example of Dapp integration with the FuLink Agent SDK.
Last updated