|
10 | 10 |
|
11 | 11 | import os
|
12 | 12 | from goat_wallets.crossmint.solana_smart_wallet import SolanaSmartWalletClient
|
13 |
| -from goat_wallets.crossmint.parameters import WalletType |
14 | 13 | from goat_wallets.crossmint.parameters import CoreSignerType
|
15 |
| -from goat_wallets.crossmint.parameters import AdminSigner |
| 14 | +from goat_wallets.crossmint.solana_smart_wallet_factory import SolanaSmartWalletFactory |
| 15 | +from goat_wallets.crossmint.types import SolanaKeypairSigner |
| 16 | +from goat_wallets.crossmint.solana_smart_wallet import SolanaSmartWalletConfig |
16 | 17 | from solana.rpc.api import Client as SolanaClient
|
17 | 18 | from goat_wallets.crossmint.api_client import CrossmintWalletsAPI
|
18 |
| -from goat_wallets.crossmint.solana_smart_wallet_factory import solana_smart_wallet_factory |
19 | 19 | from solders.keypair import Keypair
|
20 | 20 | from dotenv import load_dotenv
|
21 | 21 | from solders.pubkey import Pubkey
|
|
24 | 24 |
|
25 | 25 | load_dotenv()
|
26 | 26 |
|
| 27 | + |
27 | 28 | def create_memo_instruction(fee_payer: Pubkey, memo: str) -> Instruction:
|
28 |
| - memo_program_id = Pubkey.from_string("MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr") |
29 |
| - accounts = [AccountMeta(pubkey=fee_payer, is_signer=False, is_writable=False)] |
| 29 | + memo_program_id = Pubkey.from_string( |
| 30 | + "MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr") |
| 31 | + accounts = [AccountMeta( |
| 32 | + pubkey=fee_payer, is_signer=False, is_writable=False)] |
30 | 33 | data = bytes(memo, "utf-8")
|
31 | 34 | return Instruction(
|
32 | 35 | memo_program_id,
|
33 | 36 | data,
|
34 | 37 | accounts,
|
35 | 38 | )
|
36 | 39 |
|
37 |
| -def create_wallet(api_client: CrossmintWalletsAPI, connection: SolanaClient, signer: Keypair) -> SolanaSmartWalletClient: |
| 40 | + |
| 41 | +def create_wallet(factory: SolanaSmartWalletFactory, signer: Keypair) -> SolanaSmartWalletClient: |
38 | 42 | print("\n🔑 Creating Solana Smart Wallet...")
|
39 |
| - wallet_creation_response = api_client.create_smart_wallet( |
40 |
| - WalletType.SOLANA_SMART_WALLET, |
41 |
| - AdminSigner( |
| 43 | + wallet = factory.get_or_create({ |
| 44 | + "config": SolanaSmartWalletConfig( |
| 45 | + adminSigner=SolanaKeypairSigner( |
42 | 46 | type=CoreSignerType.SOLANA_KEYPAIR,
|
43 |
| - address=str(signer.pubkey()) |
44 |
| - ), |
| 47 | + keyPair=signer |
| 48 | + ) |
45 | 49 | )
|
| 50 | + }) |
46 | 51 | print(f"✅ Wallet created successfully!")
|
47 |
| - print(f"📝 Wallet Address: {wallet_creation_response['address']}") |
| 52 | + print(f"📝 Wallet Address: {wallet.get_address()}") |
48 | 53 | print(f"👤 Admin Signer: {signer.pubkey()}")
|
49 |
| - return SolanaSmartWalletClient( |
50 |
| - wallet_creation_response["address"], |
51 |
| - api_client, |
52 |
| - { |
53 |
| - "config": { |
54 |
| - "adminSigner": { |
55 |
| - "type": "solana-keypair", |
56 |
| - "keyPair": signer |
57 |
| - } |
58 |
| - } |
59 |
| - }, |
60 |
| - connection=connection |
61 |
| - ) |
| 54 | + return wallet |
| 55 | + |
62 | 56 |
|
63 | 57 | def register_delegated_signer(wallet: SolanaSmartWalletClient, signer: Keypair) -> Pubkey:
|
64 | 58 | print("\n🔑 Registering delegated signer...")
|
65 | 59 | delegated_signer_response = wallet.register_delegated_signer(
|
66 | 60 | str(signer.pubkey())
|
67 | 61 | )
|
68 | 62 | print(f"✅ Delegated signer registered successfully!")
|
69 |
| - print(f"📝 Delegated Signer Locator: {delegated_signer_response['locator']}") |
| 63 | + print( |
| 64 | + f"📝 Delegated Signer Locator: {delegated_signer_response['locator']}") |
70 | 65 | print(f"👤 Delegated Signer Address: {signer.pubkey()}")
|
71 | 66 | return delegated_signer_response["locator"]
|
72 | 67 |
|
| 68 | + |
73 | 69 | def send_transaction(wallet: SolanaSmartWalletClient, signer: Keypair):
|
74 | 70 | print("\n💸 Preparing transaction...")
|
75 |
| - transaction = create_memo_instruction(Pubkey.from_string(wallet.get_address()), "My first Solana Smart Wallet transaction! 🚀") |
| 71 | + instruction = create_memo_instruction(Pubkey.from_string( |
| 72 | + wallet.get_address()), "My first Solana Smart Wallet transaction! 🚀") |
76 | 73 | print(f"📝 Transaction Details:")
|
77 | 74 | print(f" From: {wallet.get_address()}")
|
78 | 75 | print(f" Signer: {signer.pubkey()}")
|
79 | 76 | print(f" Message: My first Solana Smart Wallet transaction! 🚀")
|
80 |
| - |
| 77 | + |
81 | 78 | print("\n📤 Sending transaction to network...")
|
82 | 79 | transaction_response = wallet.send_transaction(
|
83 | 80 | {
|
84 |
| - "instructions": [transaction], |
| 81 | + "instructions": [instruction], |
85 | 82 | "signer": signer
|
86 | 83 | }
|
87 | 84 | )
|
88 | 85 | print(f"✅ Transaction sent successfully!")
|
89 | 86 | print(f"🔗 Transaction Hash: {transaction_response.get('hash')}")
|
90 | 87 |
|
| 88 | + |
91 | 89 | def main():
|
92 | 90 | print("🚀 Starting Solana Smart Wallet Delegated Signer Example")
|
93 | 91 | print("=" * 50)
|
94 |
| - |
| 92 | + |
95 | 93 | api_key = os.getenv("CROSSMINT_API_KEY")
|
96 | 94 | base_url = os.getenv("CROSSMINT_BASE_URL", "https://staging.crossmint.com")
|
97 | 95 | rpc_url = os.getenv("SOLANA_RPC_ENDPOINT", "https://api.devnet.solana.com")
|
98 | 96 | if not api_key:
|
99 | 97 | raise ValueError("❌ CROSSMINT_API_KEY is required")
|
100 |
| - |
| 98 | + |
101 | 99 | print("\n🔧 Initializing API client and connection...")
|
102 | 100 | api_client = CrossmintWalletsAPI(api_key, base_url=base_url)
|
103 | 101 | connection = SolanaClient(rpc_url)
|
104 |
| - |
| 102 | + |
105 | 103 | print("\n🔑 Generating keypairs...")
|
106 | 104 | admin_signer = Keypair()
|
107 | 105 | delegated_signer = Keypair()
|
108 |
| - |
109 |
| - wallet = create_wallet(api_client, connection, admin_signer) |
| 106 | + |
| 107 | + factory = SolanaSmartWalletFactory(api_client, connection) |
| 108 | + wallet = create_wallet(factory, admin_signer) |
110 | 109 | register_delegated_signer(wallet, delegated_signer)
|
111 | 110 | send_transaction(wallet, delegated_signer)
|
112 |
| - |
| 111 | + |
113 | 112 | print("\n✨ Example completed successfully!")
|
114 | 113 | print("=" * 50)
|
115 | 114 |
|
| 115 | + |
116 | 116 | if __name__ == "__main__":
|
117 | 117 | main()
|
0 commit comments