@river-build/react-sdk v0.0.97
@river-build/react-sdk
React Hooks for River SDK.
Installation
in the future:
yarn add @river-build/react-sdk
Usage
Connect to River
@river-build/react-sdk
suggests you to use Wagmi to connect to River.
Wrap your app with RiverSyncProvider
and use the useConnectRiver
hook to connect to River.
!NOTE You'll need to use
useEthersSigner
to get the signer from viem wallet client. You can get the hook from wagmi docs.
import {
RiverSyncProvider,
useConnectRiver,
useConnection,
} from "@river-build/react-sdk";
import { makeRiverConfig } from "@river-build/sdk";
import { WagmiProvider } from "wagmi";
import { useEthersSigner } from "./utils/viem-to-ethers";
const riverConfig = makeRiverConfig("gamma");
const App = ({ children }: { children: React.ReactNode }) => {
return (
<WagmiProvider config={wagmiConfig}>
<RiverSyncProvider>{children}</RiverSyncProvider>
</WagmiProvider>
);
};
const ConnectRiver = () => {
const { connect, isConnecting, isConnected } = useConnectRiver();
const signer = useEthersSigner();
return (
<>
<button
onClick={() => {
if (signer) {
connect(signer, { riverConfig });
}
}}
>
{isConnecting ? "Disconnect" : "Connect"}
</button>
{isConnected && <span>Connected!</span>}
</>
);
};
Get information about an account
Post messages to a stream
Subscribe to a stream
Addding persistance
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
9 months ago
8 months ago
8 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
1 year ago
1 year ago
1 year ago