@xiti/cosmodal
v1.2.1
Published
A wallet connector with mobile WalletConnect support for the Cosmos ecosystem.
Downloads
8
Readme
@xiti/cosmodal
A wallet connector with mobile WalletConnect support for the Cosmos ecosystem.
Example
The example is deployed on Vercel at https://noahsaso-cosmodal.vercel.app.
It can also be run locally using these commands:
# Clone the repo.
git clone https://github.com/Xiti922/cosmodal
# Enter the example folder.
cd cosmodal/example
# Start the Next.js dev server.
npm install && npm run dev
# OR
yarn && yarn dev
Setup
- Install the Cosmodal package in your React project
npm install --save @xiti/cosmodal
# OR
yarn add @xiti/cosmodal
- Import
WalletManagerProvider
and wrap it around your whole app. Only include it once as an ancestor of all components that need to access the wallet. Likely you'll want this in your root App component. Check out the example code to see how to define wallets.
import {
WalletManagerProvider,
ChainInfoID,
WalletType,
} from "@xiti/cosmodal"
const MyApp: FunctionComponent<AppProps> = ({ Component, pageProps }) => (
<WalletManagerProvider
defaultChainId={ChainInfoID.Juno1}
enabledWalletTypes={[WalletType.Keplr, WalletType.WalletConnectKeplr]}
walletConnectClientMeta={{
name: "CosmodalExampleDAPP",
description: "A dapp using the cosmodal library.",
url: "https://cosmodal.example.app",
icons: ["https://cosmodal.example.app/walletconnect.png"],
}}
>
<Component {...pageProps} />
</WalletManagerProvider>
)
export default MyApp
- Manage the wallet by using the
useWalletManager
anduseWallet
hooks in your pages and components.
import {
useWalletManager,
useWallet,
WalletConnectionStatus,
} from "@xiti/cosmodal"
const Home: NextPage = () => {
const { connect, disconnect } = useWalletManager()
const { status, error, name, address, signingCosmWasmClient } = useWallet()
return status === WalletConnectionStatus.Connected ? (
<div>
<p>
Name: <b>{name}</b>
</p>
<p>
Address: <b>{address}</b>
</p>
<button onClick={disconnect}>Disconnect</button>
</div>
) : (
<div>
<button onClick={connect}>Connect</button>
{error && <p>{error instanceof Error ? error.message : `${error}`}</p>}
</div>
)
}
export default Home
API
WalletManagerProvider
This component takes the following properties:
| Property | Type | Required | Description |
| --------------------------------- | ---------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| enabledWalletTypes
| WalletType[]
| ☑ | Wallet types available for connection. |
| defaultChainId
| string
| ☑ | Chain ID to initially connect to and selected by default if nothing is passed to the hook. Must be present in one of the objects in chainInfoList
. |
| chainInfoOverrides
| ChainInfoOverrides \| undefined
| | List or getter of additional or replacement ChainInfo objects. These will take precedent over internal definitions by comparing chainId
. |
| classNames
| ModalClassNames
| | Class names applied to various components for custom theming. |
| closeIcon
| ReactNode
| | Custom close icon. |
| walletConnectClientMeta
| IClientMeta
| | Descriptive info about the React app which gets displayed when enabling a WalletConnect wallet (e.g. name, image, etc.). |
| renderLoader
| () => ReactNode
| | A custom loader to display in a few modals, such as when enabling the wallet. |
| preselectedWalletType
| WalletType
| | When set to a valid wallet type, the connect function will skip the selection modal and attempt to connect to this wallet immediately. |
| localStorageKey
| string
| | localStorage key for saving, loading, and auto connecting to a wallet. |
| onKeplrKeystoreChangeEvent
| (event: Event) => unknown
| | Callback that will be attached as a listener to the keplr_keystorechange
event on the window object. |
| getSigningCosmWasmClientOptions
| SigningClientGetter<SigningCosmWasmClientOptions> \| undefined
| | Getter for options passed to SigningCosmWasmClient on connection. |
| getSigningStargateClientOptions
| SigningClientGetter<SigningStargateClientOptions> \| undefined
| | Getter for options passed to SigningStargateClient on connection. |
| showEnablingModalOnAutoconnect
| boolean \| undefined
| | Shows the enabling modal on autoconnect. The default behavior is to hide it on autoconnect, since most times it will silently succeed from a previous connection, and the enabling modal is distracting during first page load. |
useWalletManager
() => IWalletManagerContext
This hook returns all relevant fields, but you will likely only use this to connect
and disconnect
.
useWallet
(chainId?: ChainInfo["chainId"]) => UseWalletResponse
This hook is a subset of useWalletManager
, returning the fields inside the connectedWallet
object, as well as status
and error
. It also takes an optional chainId
, which will instantiate clients for the desired chain once the wallet is connected. This lets you seamlessly connect and use clients for many different chains. If no chainId
is passed, it will return the connection info for the default chain (from the initial wallet connection via useWalletManager
's connect
function).
useConnectWalletToChain
() => ConnectWalletToChainFunction
This hook provides a function that takes a chainId
and tries to connect to it
with the already connected wallet client. This function expects the wallet to
already be connected to the default chain.
Relevant types
type ConnectWalletToChainFunction = (
chainId: ChainInfo["chainId"]
) => Promise<ConnectedWallet>
type UseWalletResponse = Partial<ConnectedWallet> &
Pick<IWalletManagerContext, "status" | "error">
interface ModalClassNames {
modalContent?: string
modalOverlay?: string
modalHeader?: string
modalSubheader?: string
modalCloseButton?: string
walletList?: string
wallet?: string
walletImage?: string
walletInfo?: string
walletName?: string
walletDescription?: string
textContent?: string
}
interface IClientMeta {
description: string
url: string
icons: string[]
name: string
}
type WalletClient = Keplr | KeplrWalletConnectV1
enum WalletType {
Keplr = "keplr",
WalletConnectKeplr = "walletconnect_keplr",
}
interface ConnectedWallet {
// Wallet.
wallet: Wallet
// Wallet client.
walletClient: WalletClient
// Chain info the clients are connected to.
chainInfo: ChainInfo
// Offline signer for the wallet client.
offlineSigner: OfflineSigner
// Name of wallet.
name: string
// Wallet address.
address: string
// Wallet public key.
publicKey: {
data: Uint8Array
hex: string
}
// Signing client for interacting with CosmWasm chain APIs.
signingCosmWasmClient: SigningCosmWasmClient
// Signing client for interacting with Stargate chain APIs.
signingStargateClient: SigningStargateClient
}
enum WalletConnectionStatus {
Initializing,
AttemptingAutoConnection,
// Don't call connect until this state is reached.
ReadyForConnection,
Connecting,
Connected,
Resetting,
Errored,
}
type SigningClientGetter<T> = (
chainInfo: ChainInfo
) => T | Promise<T | undefined> | undefined
type ChainInfoOverrides =
| ChainInfo[]
| (() => undefined | ChainInfo[] | Promise<undefined | ChainInfo[]>)
interface IWalletManagerContext {
// Function to begin the connection process. This will either display
// the wallet picker modal or immediately attempt to connect to a wallet
// when `preselectedWalletType` is set.
connect: () => void
// Function that disconnects from the connected wallet.
disconnect: () => Promise<void>
// Connected wallet info and clients for interacting with the chain.
connectedWallet?: ConnectedWallet
// Status of cosmodal.
status: WalletConnectionStatus
// If status is WalletConnectionStatus.Connected.
connected: boolean
// Error encountered during the connection process.
error?: unknown
// If this app is running inside the Keplr Mobile web interface.
isEmbeddedKeplrMobileWeb: boolean
// List or getter of additional or replacement ChainInfo objects. These
// will take precedent over internal definitions by comparing `chainId`.
// This is passed through from the provider props to allow composition
// of your own hooks, and for use in the built-in useWallet hook.
chainInfoOverrides?: ChainInfoOverrides
// Getter for options passed to SigningCosmWasmClient on connection.
// This is passed through from the provider props to allow composition
// of your own hooks, and for use in the built-in useWallet hook.
getSigningCosmWasmClientOptions?: SigningClientGetter<SigningCosmWasmClientOptions>
// Getter for options passed to SigningStargateClient on connection.
// This is passed through from the provider props to allow composition
// of your own hooks, and for use in the built-in useWallet hook.
getSigningStargateClientOptions?: SigningClientGetter<SigningStargateClientOptions>
}
interface WalletManagerProviderProps {
// Wallet types available for connection.
enabledWalletTypes: WalletType[]
// Chain ID to initially connect to and selected by default if nothing
// is passed to the hook. Must be present in one of the objects in
// `chainInfoList`.
defaultChainId: string
// List or getter of additional or replacement ChainInfo objects. These
// will take precedent over internal definitions by comparing `chainId`.
chainInfoOverrides?: ChainInfoOverrides
// Class names applied to various components for custom theming.
classNames?: ModalClassNames
// Custom close icon.
closeIcon?: ReactNode
// Descriptive info about the webapp which gets displayed when enabling a
// WalletConnect wallet (e.g. name, image, etc.).
walletConnectClientMeta?: IClientMeta
// A custom loader to display in the modals, such as enabling the wallet.
renderLoader?: () => ReactNode
// When set to a valid wallet type, the connect function will skip the
// selection modal and attempt to connect to this wallet immediately.
preselectedWalletType?: `${WalletType}`
// localStorage key for saving, loading, and auto connecting to a wallet.
localStorageKey?: string
// Callback that will be attached as a listener to the
// `keplr_keystorechange` event on the window object.
onKeplrKeystoreChangeEvent?: (event: Event) => unknown
// Getter for options passed to SigningCosmWasmClient on connection.
getSigningCosmWasmClientOptions?: SigningClientGetter<SigningCosmWasmClientOptions>
// Getter for options passed to SigningStargateClient on connection.
getSigningStargateClientOptions?: SigningClientGetter<SigningStargateClientOptions>
// Shows the enabling modal on autoconnect. The default behavior
// is to hide it on autoconnect, since most times it will silently succeed
// from a previous connection, and the enabling modal is distracting during
// first page load.
showEnablingModalOnAutoconnect?: boolean
}