https://github.com/rss3-network/dsl-js-sdk
The JS SDK for interacting with the RSS3 Network Data Sublayer
https://github.com/rss3-network/dsl-js-sdk
Last synced: 11 months ago
JSON representation
The JS SDK for interacting with the RSS3 Network Data Sublayer
- Host: GitHub
- URL: https://github.com/rss3-network/dsl-js-sdk
- Owner: RSS3-Network
- License: mit
- Created: 2023-06-30T18:12:27.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-15T10:40:23.000Z (over 1 year ago)
- Last Synced: 2025-07-09T09:49:02.183Z (11 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.16 MB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSS3 JavaScript SDK
> The Turbocharger for Your Next Open Web Development.
- Quick Integration with Ethereum, Arbiturm, Base, Polygon and [more....](https://docs.rss3.io/docs/supported-networks)
- Lightning Fast to Interact with the RSS3 Network.
- Many [Web3 Domains Supported](https://docs.rss3.io/docs/name-service-resolution)
- Fully Typed, Easy to BUIDL.
## Installation
```bash
npm i @rss3/sdk
```
## Getting Started
### Obtain Data from the RSS3 Network
Get open social activities of anyone, here we get `vitalik.eth`'s comments on `Farcaster`:
```js
import { getActivities } from '@rss3/sdk'
const socialActivities = await getActivities({
account: "vitalik.eth",
tag: ["social"],
type: ["comment"],
platform: ["Farcaster"],
});
```
Or simply query cross-network and human-readable feed of anyone:
```js
import { getActivities } from '@rss3/sdk'
const readableFeed = await getActivities({
account: "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
});
```
For more examples visit [RSS3 Docs]([https://docs.rss3.io/](https://docs.rss3.io/guide/for-developers/getting-started)).
## License
[MIT](LICENSE).