snet-sdk-web
v5.0.4
Published
SingularityNET SDK for Web
Maintainers
Readme
snet-sdk-web
SingularityNET SDK for Browser (Web)
Getting Started
This package snet-sdk-web provides browser-compatible tools for interacting with the SNET SDK. It is built on top of the snet-sdk-core, extending its functionality to support web-specific environments.
The SNET JS SDK consists of three packages:
core– The main SDK functionality.nodeJS– Node.js-specific implementations.web– Web (browser) integrations.
These instructions are for the development and use of the SingularityNET SDK for JavaScript on web platform like browsers.
Installation
npm install snet-sdk-web| Enviroment | Version | | -------| --------------- | | Node.js | >= 18 | | react-scripts | >= 5.0.1 |
If you are using create-react-app then require Node.js polyfills for browser compatibility. To add these polyfills, you can use the config-overrides.js file with react-app-rewired. This approach allows you to customize the Webpack configuration without ejecting from create-react-app.
Install react-app-rewired into your application
npm install --save-dev react-app-rewiredInstall the necessary polyfill packages
npm install --save-dev buffer process os-browserify urlCreate config-overrides.js in the root of your project with the content:
const webpack = require("webpack");
module.exports = function override(config) {
const fallback = config.resolve.fallback || {};
Object.assign(fallback, {
os: require.resolve('os-browserify'),
url: require.resolve('url'),
path: require.resolve('path-browserify'),
fs: require.resolve('fs'),
});
config.resolve.fallback = fallback;
config.plugins = (config.plugins || []).concat([
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
]);
config.ignoreWarnings = [/Failed to parse source map/];
config.module.rules.push({
test: /\.(js|mjs|jsx)$/,
enforce: "pre",
loader: require.resolve("source-map-loader"),
resolve: {
fullySpecified: false,
},
});
return config;
};Update your package.json scripts to use react-app-rewired instead of react-scripts.
{
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
}
}Usage
The SingularityNET SDK allows you to import compiled client libraries for your service or services of choice and make calls to those services programmatically from your application by setting up state channels with the providers of those services and making gRPC calls to the SingularityNET daemons for those services by selecting a channel with sufficient funding and supplying the appropriate metadata for authentication.
import SnetSDK from "snet-sdk-web";
import config from "./config";
const sdk = new SnetSDK(config);You can find a sample config below
{
"web3Provider": window.ethereum,
"networkId": "11155111",
"ipfsEndpoint": "http://ipfs.organization.io:80",
"defaultGasPrice": "4700000",
"defaultGasLimit": "210000",
"tokenName": "FET",
}
Config
All config fields:
| Key | Description |
|--------------------|-------------------------------------------------------------------------------------------|
| web3Provider | The URL of the Web3 provider, used to interact with the Ethereum network.|
| privateKey | The private key of the Ethereum account used for signing transactions. Must start with 0x |
| networkId | The ID of the Ethereum network to connect to. (1 for Mainnet or 11155111 for Sepolia)|
| ipfsEndpoint | The optional parameter. The endpoint for connecting to an SingularityNet IPFS node|
| logLevel | The optional parameter, info by default. Can be - debug, error, info |
| rpcEndpoint | It is the optional field, you should provide this if you are getting block size limit exceeded error. This is usually happens when you are using any web social auth providers.|
| defaultGasPrice | The gas price (in wei) to be used for transactions.|
| defaultGasLimit | The gas limit to be set for transactions.|
| tokenName | The name of the token which will be used. It can assume the values FET and AGIX. |
| standType | This attribute for test networks can assume the values demo, dev, and for Mainnet, it can take on the values prod |
Debugging Tip: To view debug logs, enable verbose mode in your browser's developer console.
Using the SDK with SingularityNET Services
Once instantiated, the SDK allows you to create clients for SingularityNET services. These clients require compiled gRPC client libraries to interact with the services.
This SDK uses gRPC-web by Improbable Engineering. To generate the gRPC client libraries, follow the follow the official gRPC-web code generation guide.
The API for invoking gRPC methods mirrors the standard gRPC-web interface.
Creating a Service Client
import { <ServiceName> } from '<path_to_grpc_service_file>'
import { <Message> } from '<path_to_grpc_message_file>'
// Basic initialization
const client = sdk.createServiceClient({
orgId: "<org_id>",
serviceId: "<service_id>"
});
You can initialize the client in two ways:
- Direct Parameters Provide orgId and serviceId directly:
sdk.createServiceClient({ orgId: "my-org", serviceId: "my-service" });- ServiceMetadataProvider For advanced control, use a pre-configured metadata provider:
const serviceMetadataProvider = await sdk.createServiceMetadataProvider(
orgId,
serviceId,
groupName, // optional
options // optional (e.g., endpoint overrides)
);
const client = sdk.createServiceClient({ serviceMetadataProvider });- Payment Strategy (Optional) By default, the SDK uses a built-in payment strategy. To customize:
const client = sdk.createServiceClient({
orgId: "my-org",
serviceId: "my-service",
paymentStrategy: myCustomStrategy // Your IPaymentStrategy implementation
});This generates a service client which can be used to make gRPC calls to the desired service. You can then invoke service specific calls as follows
client.invoke(<ServiceName>.<MethodName>, <InvokeRpcOptions>);More details about can be found on the official documentation.
WEBSDK SETUP LOCALLY
To set up and link snet-sdk-web locally for development or testing, follow these steps:
- Clone and Build the SDK Clone the repository:
git clone https://github.com/singnet/snet-sdk-web.git- Install dependencies and build:
npm install
npm run build- Link the package globally (to use it in other projects):
npm linkor use next string in your package.json file:
"snet-sdk-web": "file:<path to snet-sdk-web parent folder>/snet-sdk-web/dist"- Start your project to test the changes:
npm run start⚠️ Important Note
If you make changes to the snet-sdk-web code rebuild the package:
npm run buildVersioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
License
This project is licensed under the MIT License - see the LICENSE file for details.
