Ethereum Wallets
Ethereum Sign EIP-7702 Authorization
Sign an EIP-7702 authorization using a managed wallet. An EIP-7702 authorization allows an externally owned account (EOA) to authorize a delegation / contract address without signing or submitting a transaction.
POST
The private key never leaves the vault and is never exposed to the client.Documentation Index
Fetch the complete documentation index at: https://docs.streambird.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Auth Platform API includes all the Auth related features. All Users, Phone Numbers, Emails, and OTPs are associated with an App as the container.Endpoints only accept App's Secret API keys other than certain endpoints that are used client side or via SDK that accept the
public_token.Authentication using App Api Key
Header:Authorization: Bearer {api_key}Path Parameters
Unique ID of the wallet used to sign the authorization.
Request Body
The request uses an Ethereum JSON-RPC–compatible payload.Must be
eth_sign7702Authorization.Parameters used to construct the authorization.
All fields are signed exactly as provided after normalization. Changing any value invalidates the signature.
Response
RPC method that was executed (
eth_sign7702Authorization).Signed authorization payload.
Using the Signed Authorization
The returned signature can be included in an EIP-7702 transaction as part of anauthorizationList, sent to a relay or bundler, or stored and replayed until the nonce is consumed.
To submit on-chain, recombine the signature parts into a standard Ethereum signature:
Notes
- This method does not broadcast a transaction.
- The authorization is off-chain until included in a transaction.
- Private keys are never exposed.
- The same authorization can be reused until its nonce is consumed.
- Input values for
chainIdandnoncemay be provided as hex strings or decimal strings/numbers. - Response values for
chainIdandnonceare always returned as strings. - This endpoint signs EIP-712 typed data under the EIP-7702 domain.