Register Wallet
Register a wallet by proving ownership with an Ed25519 signature. Registration is required before connecting wallets to the Exit Intelligence Stream.
No on-chain transaction is needed. Generate the proof locally using your keypair and the SDK’s proveOwnership helper.
SDK Usage
Generate Proof
Use the SDK’sproveOwnership helper to generate a WalletProof locally. This is a pure cryptographic operation with no network call.
Register
Send the proof to the API to register the wallet.Connect with Wallets (one step)
Convenience method that registers wallets and connects to the stream in one call.Authorizations
Your LaserSell API key. Obtain one from the LaserSell dashboard.
Body
Solana wallet public key to register (base58).
"9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
Ed25519 signature of the message, base58-encoded.
Structured message in the format lasersell-register:<pubkey>:<unix_timestamp>.
The timestamp must be within 5 minutes of the server's current time.
"lasersell-register:9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM:1706000000"
Optional human-readable label for the wallet.
"My Trading Wallet"

