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

# WalletService

> Swift Protocol

**Protocol**

```swift theme={null}
protocol WalletService : Sendable
```

## Instance Properties

### isProductionEnvironment

```swift theme={null}
var isProductionEnvironment: Bool { get }
```

## Instance Methods

### addSigner(\_:chainType:chainName:)

```swift theme={null}
func addSigner(_ entry: DelegatedSignerEntry, chainType: ChainType, chainName: String) async throws(WalletError) -> AddDelegatedSignerResponse
```

### createWallet(\_:)

```swift theme={null}
func createWallet(_ request: CreateWalletParams) async throws(WalletError) -> WalletApiModel
```

### fund(\_:)

```swift theme={null}
func fund(_ request: FundWalletRequest) async throws(WalletError)
```

### getWallet(\_:)

```swift theme={null}
func getWallet(_ request: GetMeWalletRequest) async throws(WalletError) -> WalletApiModel
```

### registerTypedSigner(\_:chainType:chainName:)

```swift theme={null}
func registerTypedSigner(_ signer: any AdminSignerData, chainType: ChainType, chainName: String) async throws(WalletError) -> AddDelegatedSignerResponse
```

### removeSigner(\_:chainType:chainName:)

```swift theme={null}
func removeSigner(_ signerLocator: String, chainType: ChainType, chainName: String) async throws(TransactionError) -> any TransactionApiModel
```
