Crossmint wallet implementation for GOAT SDK
Project description
Crossmint Wallet Implementation for GOAT SDK
This package provides Crossmint wallet integration for the GOAT SDK, supporting both EVM Smart Wallets and Solana Custodial Wallets.
Features
- EVM Smart Wallet support
- Solana Custodial Wallet support
- Async API client for Crossmint interactions
- Support for multiple authentication methods (email, phone, user ID)
- Transaction and signature management
- Balance queries and ENS resolution
Installation
poetry add goat-sdk-wallet-crossmint
Usage
from goat_wallets.crossmint import smart_wallet_factory, custodial_factory
from crossmint.common_sdk_base import CrossmintApiClient
# Initialize Crossmint client
crossmint_client = CrossmintApiClient(...)
# Create Smart Wallet
smart_wallet = await smart_wallet_factory(crossmint_client)({
# Required: One of the following to locate the wallet
"address": "0x...", # Wallet address, or use linkedUser instead:
# "linkedUser": {
# "email": "user@example.com", # Or use phone/userId
# # "phone": "+1234567890",
# # "userId": "user-id"
# },
"chain": "base", # or "ethereum", etc.
"signer": {
"secretKey": "0x..." # Private key for signing
},
"provider": "https://base-mainnet.g.alchemy.com/v2/your-api-key",
"options": {
"ensProvider": "https://base-mainnet.g.alchemy.com/v2/your-api-key" # Optional: For ENS resolution
}
})
# Create Custodial Solana Wallet
custodial_wallet = await custodial_factory(crossmint_client)({
"connection": solana_connection, # Solana RPC connection
# One of the following for wallet location:
"email": "user@example.com",
# "phone": "+1234567890",
# "userId": "user-id",
# "address": "solana-address"
})
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file goat_sdk_wallet_crossmint-0.1.14.tar.gz.
File metadata
- Download URL: goat_sdk_wallet_crossmint-0.1.14.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.16 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2c4f1ec2ccff07130861a71936c6b4e2ac3710380deb42905629af52a441065
|
|
| MD5 |
09f4f1de50069cb22eac9f60e37a7466
|
|
| BLAKE2b-256 |
9d070839dc657973b8253c239affe4d475cd503c5557306ce65a2f6d546e8fed
|
File details
Details for the file goat_sdk_wallet_crossmint-0.1.14-py3-none-any.whl.
File metadata
- Download URL: goat_sdk_wallet_crossmint-0.1.14-py3-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.16 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41bbd31e49ddc76f9bb83bb89b05f846e82243c95371e9bdc40c94d75c55be1d
|
|
| MD5 |
bb08bdb5ec06cc712f4517359c024a67
|
|
| BLAKE2b-256 |
0f905846a4fa88c0238b686ed0008cefb617d7ef4c9bdf38c31415dfe516a95d
|