generated from ChainSafe/yarn-workspaces-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: sprinter react docs + updates (#60)
- [x] add sprinter-react docs - [x] update sprinter-sdk class reference docs - [x] update API documentation
- Loading branch information
1 parent
9ba9ab8
commit a235185
Showing
4 changed files
with
260 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# Sprinter React SDK | ||
|
||
The Sprinter React SDK is a React wrapper for the [Sprinter SDK](01-overview.md), enabling easy interaction with blockchain networks through React components and hooks. It provides context management and custom hooks for retrieving balances, tokens, supported chains, and solutions for asset transfers. | ||
|
||
## Installation | ||
|
||
To install the package, use npm or yarn: | ||
|
||
```bash | ||
npm install @chainsafe/sprinter-react | ||
``` | ||
or | ||
```bash | ||
yarn add @chainsafe/sprinter-react | ||
``` | ||
|
||
## Usage | ||
|
||
Wrap your application in the `SprinterContext` to gain access to blockchain-related data within your component tree. | ||
|
||
### Example | ||
|
||
```ts | ||
import React from 'react'; | ||
import { SprinterContext } from '@chainsafe/sprinter-react'; | ||
|
||
const App = () => ( | ||
<SprinterContext> | ||
<YourComponent /> | ||
</SprinterContext> | ||
); | ||
|
||
export default App; | ||
``` | ||
Inside your components, you can use the provided hooks to interact with blockchain data: | ||
|
||
```ts | ||
import React, { useEffect } from 'react'; | ||
import { useSprinterBalances, useSprinterTokens } from '@chainsafe/sprinter-react'; | ||
|
||
const YourComponent = () => { | ||
const ownerAddress = "0xYourAddressHere"; | ||
const { balances, getUserBalances } = useSprinterBalances(ownerAddress); | ||
|
||
useEffect(() => { | ||
getUserBalances(); | ||
}, [getUserBalances]); | ||
|
||
return ( | ||
<div> | ||
<h1>Balances:</h1> | ||
<pre>{JSON.stringify(balances, null, 2)}</pre> | ||
<h1>Available Tokens:</h1> | ||
<pre>{JSON.stringify(tokens, null, 2)}</pre> | ||
</div> | ||
); | ||
}; | ||
|
||
export default YourComponent; | ||
``` | ||
|
||
### Available Hooks | ||
|
||
The following hooks are provided by the SDK: | ||
|
||
- `useSprinter()`: Access everything from the Sprinter context. | ||
- `useSprinterBalances(account: Address)`: Retrieve user balances for a given account. | ||
- `useSprinterTokens()`: Retrieve available tokens. | ||
- `useSprinterChains()`: Retrieve available blockchain chains. | ||
- `useSprinterSolution()`: Retrieve solutions for asset transfers. | ||
- `useSprinterCallSolution()`: Call solutions for transferring assets. | ||
|
||
### Custom Fetch Options | ||
|
||
You can pass custom fetch options when initializing the context: | ||
|
||
```ts | ||
<SprinterContext fetchOptions={{ baseUrl: "https://api.test.sprinter.buildwithsygma.com/" }}> | ||
<YourComponent /> | ||
</SprinterContext> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters