Keyban React SDK
The Keyban React SDK provides a seamless way to integrate Keyban's blockchain services into your React applications. It offers React hooks and components to manage accounts, perform transactions, retrieve balances, interact with NFTs, and more, all within the React ecosystem.
Installation
Install the Keyban React SDK using npm or yarn:
npm install @keyban/sdk-react
or
yarn add @keyban/sdk-react
Configuration
To start using the Keyban React SDK, wrap your application with the KeybanProvider
component. This component provides the necessary context for the SDK's hooks to function correctly.
Example of KeybanProvider
Usage
import React from "react";
import { KeybanProvider, KeybanChain } from "@keyban/sdk-react";
const App = () => {
/**
* Function to provide the access token.
* You can implement logic here to retrieve the token from a secure source,
* such as environment variables, a secure vault, or an authentication service.
*/
const getAccessToken = () => {
// Example: Retrieve the access token from environment variables
return process.env.REACT_APP_KEYBAN_ACCESS_TOKEN || "your-access-token";
};
/**
* Function to provide the shared key for client-side operations.
* This key is used to cipher the client's share of the end user and is stored securely in Keyban's infrastructure.
* By managing the key this way, Keyban as the server and client share will not be able to sign operations on behalf of the end users.
* We recommend providing a unique key per client share to enhance security.
*/
const clientShareKeyProvider = async () => {
// Example: Retrieve the shared key from a secure source
return process.env.REACT_APP_KEYBAN_SHARED_KEY || "your-shared-key";
};
return (
<KeybanProvider
apiUrl="https://api.keyban.io" // Base URL for Keyban API
appId="your-app-id" // Your unique application ID from Keyban
chain={KeybanChain.KeybanTestnet} // Specify the blockchain network (e.g., Testnet or Mainnet)
accessTokenProvider={getAccessToken} // Function that provides the access token
clientShareKeyProvider={clientShareKeyProvider} // Function that provides the shared key
>
{/* Your application components go here */}
<YourMainComponent />
</KeybanProvider>
);
};
export default App;
Configuration Options
apiUrl
: The Keyban API URL (default: https://api.keyban.io).appId
: Your application ID for authentication with the Keyban API.chain
: The blockchain network used by Keyban (e.g.,KeybanChain.KeybanTestnet
).accessTokenProvider
: A function that returns your access token for authentication.clientShareKeyProvider
: A function that provides a key used to cipher the client's share of the end user. This key is stored securely in Keyban's infrastructure, ensuring that Keyban cannot sign operations on behalf of end users. We recommend providing a unique key per client share to enhance security.
Using React Hooks
The Keyban React SDK provides several React hooks that allow you to interact with the Keyban API in a declarative and efficient manner.
Accessing the Keyban Client
Use the useKeybanClient
hook to access the Keyban client within your components.
import { useKeybanClient } from "@keyban/sdk-react";
const MyComponent = () => {
const keybanClient = useKeybanClient();
// Use keybanClient to interact with the Keyban API
};
Retrieving the Keyban Account
Use the useKeybanAccount
hook to get the Keyban account associated with the current user.
import { useKeybanAccount } from "@keyban/sdk-react";
const AccountInfo = () => {
const [account, error] = useKeybanAccount();
if (error) {
return <div>Error: {error.message}</div>;
}
return <div>Account Address: {account.address}</div>;
};
Retrieving the Account Balance
Use the useKeybanAccountBalance
hook to get the native token balance of the account.
import { useKeybanAccount, useKeybanAccountBalance } from "@keyban/sdk-react";
const BalanceInfo = () => {
const [account, accountError] = useKeybanAccount();
const [balance, balanceError] = useKeybanAccountBalance(account);
if (accountError || balanceError) {
return <div>Error: {accountError?.message || balanceError?.message}</div>;
}
return <div>Balance: {balance}</div>;
};
Retrieving NFTs of the Account
Use the useKeybanAccountNfts
hook to get the list of NFTs owned by the account.
import { useKeybanAccount, useKeybanAccountNfts } from "@keyban/sdk-react";
const NftsList = () => {
const [account, accountError] = useKeybanAccount();
const [nfts, nftsError, { fetchMore, loading }] = useKeybanAccountNfts(account, { first: 5 });
if (accountError || nftsError) {
return <div>Error: {accountError?.message || nftsError?.message}</div>;
}
return (
<div>
<h3>Your NFTs</h3>
<ul>
{nfts.nodes.map((nft) => (
<li key={nft.id}>
<p>NFT ID: {nft.id}</p>
<p>Collection: {nft.nft.collection?.name || "Unknown"}</p>
<p>Token ID: {nft.nft.tokenId}</p>
</li>
))}
</ul>
{nfts.hasNextPage && (
<button onClick={fetchMore} disabled={loading}>
{loading ? 'Loading...' : 'Load More'}
</button>
)}
</div>
);
};
Performing Transactions
Use the methods available on the KeybanAccount
instance to perform transactions.
Transferring Native Tokens
import { useKeybanAccount } from "@keyban/sdk-react";
const TransferNativeToken = () => {
const [account] = useKeybanAccount();
const handleTransfer = async () => {
try {
const valueInWei = BigInt(1e18); // 1 ETH in Wei
const txHash = await account.transfer("0xRecipientAddress", valueInWei);
console.log(`Transaction sent: ${txHash}`);
} catch (err) {
console.error(err);
}
};
return <button onClick={handleTransfer}>Send 1 ETH</button>;
};
Transferring ERC20 Tokens
import { useKeybanAccount } from "@keyban/sdk-react";
const TransferERC20Token = () => {
const [account] = useKeybanAccount();
const handleTransferERC20 = async () => {
try {
const valueInWei = BigInt(1e18); // Amount to transfer in Wei
const txHash = await account.transferERC20({
contractAddress: "0xTokenContractAddress",
to: "0xRecipientAddress",
value: valueInWei,
});
console.log(`Transaction sent: ${txHash}`);
} catch (err) {
console.error(err);
}
};
return <button onClick={handleTransferERC20}>Send ERC20 Token</button>;
};
Transferring NFTs
import { useKeybanAccount } from "@keyban/sdk-react";
const TransferNft = () => {
const [account] = useKeybanAccount();
const handleTransferNft = async () => {
try {
const txHash = await account.transferNft({
contractAddress: "0xNftContractAddress",
tokenId: BigInt(1), // Token ID
to: "0xRecipientAddress",
standard: 'ERC721', // or 'ERC1155'
});
console.log(`Transaction sent: ${txHash}`);
} catch (err) {
console.error(err);
}
};
return <button onClick={handleTransferNft}>Send NFT</button>;
};
Error Handling
The SDK provides error classes to handle different errors that may occur when using the SDK.
SdkError
: Represents an SDK-specific error.SdkErrorTypes
: Enumeration of possible error types.
Example of Error Handling
import { SdkError, SdkErrorTypes } from "@keyban/sdk-react";
try {
// Operation that might fail
} catch (error) {
if (error instanceof SdkError) {
switch (error.type) {
case SdkErrorTypes.AddressInvalid:
console.error("Invalid address");
break;
// Handle other error types
default:
console.error("SDK Error:", error.message);
}
} else {
console.error("Unexpected Error:", error);
}
}
Other Features
Formatting a Balance
Use the FormattedBalance
component to display a balance in a readable format.
import { FormattedBalance } from "@keyban/sdk-react";
const balance = {
raw: BigInt(1000000000000000000), // 1 ETH in Wei
decimals: 18,
symbol: "ETH",
isNative: true,
};
const BalanceDisplay = () => {
return (
<div>
Balance: <FormattedBalance balance={balance} />
</div>
);
};
Notes
- Ensure your components are wrapped by
KeybanProvider
for the hooks to function correctly. - Handle errors by checking the second element of the array returned by the hooks.
- Stay Updated: Keep an eye on future releases for new features and improvements.