@rarimo/providers-solana
Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the Solana blockchain.

Example
For example applications, see rarimo/js-sdk-examples on GitHub.
Here is an example that creates a PhantomProvider object for a Phantom wallet and prints its address:
import { createProvider } from '@rarimo/provider'
import { PhantomProvider } from '@rarimo/providers-solana'
const getPhantomWalletAddress = async () => {
const provider = await createProvider(PhantomProvider)
await provider.connect()
console.log(provider.address)
}
Changelog
For the change log, see CHANGELOG.md.