> ## Documentation Index
> Fetch the complete documentation index at: https://docs.faremeter.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Crossmint Wallet Package

> Crossmint custodial wallet integration for Solana

# wallet-crossmint/src

## Functions

### createCrossmintWallet()

> **createCrossmintWallet**(`network`, `crossmintApiKey`, `crossmintWalletAddress`): `Promise`\<\{ `network`: `string`; `publicKey`: `Address`; `sendTransaction`: (`tx`) => `Promise`\<`string`>; }>

Defined in: [packages/wallet-crossmint/src/index.ts:36](https://github.com/faremeter/faremeter/blob/main/packages/wallet-crossmint/src/index.ts#L36)

Creates a Crossmint custodial wallet for Solana.

Uses the Crossmint Wallets SDK to sign and send transactions via
API key authentication.

#### Parameters

##### network

`string`

Solana network identifier.

##### crossmintApiKey

`string`

Crossmint API key for authentication.

##### crossmintWalletAddress

`string`

Address of the Crossmint-managed wallet.

#### Returns

`Promise`\<\{ `network`: `string`; `publicKey`: `Address`; `sendTransaction`: (`tx`) => `Promise`\<`string`>; }>

A wallet object that can send kit-native Solana transactions.
