Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
This section provides guidance on integrating different library connectors to facilitate wallet connectivity in your application. We support connectors for web3react/v6
, wagmi
, and react hooks
. Each connector has its own set of configurations/features and is designed to simplify the process of connecting to the Stargazer Wallet.
web3react/v6
is a framework that allows you to interact with Ethereum blockchain and smart contracts. It provides a simple and flexible way to connect to different wallets.
Installation
To install the web3react/v6
connector, run the following command:
If you're using NPM
If you're using NPM
Example Usage
wagmi
is a set of React Hooks for Ethereum, which simplifies the process of connecting to Ethereum networks and smart contracts.
Installation
To install the wagmi
connector, run the following command:
If you're using NPM
If you're using NPM
Example Usage
The react hooks
connector is a generic react hook that will enable your app to connect to the stargazer wallet on the constellation network, it will return a EIP-1193 compatible provider (among other properties), that will only connect to the constellation network (DAG) via RPC requests, the constellation RPC API reference can be found here.
Installation
To install the react hooks
connector, run the following command:
If you're using NPM
If you're using NPM
Example Usage
We are committed to expanding our support for library connectors to meet the evolving needs of our users. If you require a connector that is not currently supported, or have suggestions for new connectors, we are open to exploring these possibilities and integrating them into the wallet.
Requesting New Connectors
To request the addition of new library connectors or suggest improvements, please reach out to us through the following channels:
GitHub Issues: StardustCollective/stargazer-wallet-connector
Discord Channel: Constellation Discord
Communication with the wallet is sent via RPC requests. This guide will show you how to send an RPC request and how to interpret responses.
Obtain a chain provider
With the steps mentioned in Provider Activation, get a chain provider for the networks you want to interact with. In the following examples we will use both ethereum and constellation providers.
For listing the active accounts in the wallet you can send the following calls to dag_accounts
RPC method and eth_accounts
RPC method.
Read more about dag_accounts
RPC method and eth_accounts
RPC method.
For interaction with ethereum smart contracts you can use the eth_call
RPC method and the eth_sendTransaction
RPC method, respectively for read and write operations. In the following example we will be using the ethers package, and a demo contract from the Stargazer Demos. The ethers package will help us encode method parameters based on the contract's ABI. It is encouraged to use external libraries to encode contract call parameters.
In the next example we will use the greet
method from the StargazerGreeter contract. It reads a greet string saved in the network state. For interacting with the contract we will create an ethers Contract
instance, and therefore an ethers Web3Provider
. In the background the ethers package will call eth_call
for us.
In the next example we will use the setGreeting
method from the StargazerGreeter contract. It sets a greet string in the network state. For interacting with the contract we will create an ethers Contract
instance, and therefore an ethers Web3Provider
. In the background the ethers package will call eth_sendTransaction
for us.
As the ethereum chain reveals the eth_sendTransaction
RPC method you can send any kind of transaction you need (Token Transfer, Contract Interaction, ETH Transfers, etc.).
You can send ERC20 tokens using the transfer
method from any ERC20 contract. For interacting with the contract we will create an ethers Contract
instance, and therefore an ethers Web3Provider
. In the background the ethers package will call eth_sendTransaction
for us.
You can approve spend of ERC20 tokens to external contracts using the approve
method from any ERC20 contract. For interacting with the contract we will create an ethers Contract
instance, and therefore an ethers Web3Provider
. In the background the ethers package will call eth_sendTransaction
for us.
TypeScript
You can send ETH (The ethereum's native currency) sending a simple transaction to the network. For interacting with the network we will create an ethers Web3Provider
and an ethers Signer
. In the background the ethers package will call eth_sendTransaction
for us.
TypeScript
The following pages will cover various classes and interfaces found while using the Stargazer Wallet API in the browser.
A chain provider allows you to interact with any available network. In this guide, you will learn how to obtain a chain provider and activate it.
Tip
With the Stargazer Extension installed you can test the following examples in the browser console (devtools).
The Stargazer browser extension injects a WalletProvider
instance under window.stargazer
each time a page loads. You can check the existence of this property using the following snippet.
TypeScript
Copy
Once you've verified your app has access to a WalletProvider
instance you can obtain a ChainProvider
to interact with a network of your choice (Constellation or Ethereum).
TypeScript
Copy
Read more about the WalletProvider API and the ChainProvider API.
Activating the provider is required before it can be used to interact with the user's wallet. When activation is triggered, a popup is triggered for the user to allow your site access to their wallet. The user may choose a subset of their wallets to share if they have multiple. Activation can be achieved with one of the following methods.
Calling dag_requestAccounts
or eth_requestAccounts
RPC methods, depending on the provider being used, will send an activation request for the user to accept. If the user accepts the request, the RPC method will return available accounts for the provider; if not, it will throw an error.
TypeScript
Copy
Read more about the different RPC methods available both for Constellation and Ethereum.
Warning
This method of activation has been deprecated in favor of the EIP-1102 specification, in both Constellation and Ethereum providers.
You can send an activation request to the user using the provider's activate()
method. Once the user accepts the request you'll be able to use the provider's RPC interface and methods for the selected chain.
TypeScript
Copy
Read more about the different RPC methods available both for Constellation and Ethereum.
Activations are issued for the page origin and cover all chains available (currently Constellation and Ethereum) and on all providers given. If you have been granted activation in the past the user will not be asked to grant it again. If the user is logged out, they will be prompted to log in again.
All chain providers are instantiated once per page, and per chain with the following setup:
TypeScript
Copy
Two chain providers from the same network and page will share the same underlying reference:
Object.is(constellationProviderA, constellationProviderB)
will be true.
Object.is(ethereumProviderA, ethereumProviderB)
will be true.
Object.is(constellationProviderA, ethereumProviderB)
will be false.
Object.is(constellationProviderB, ethereumProviderA)
will be false.
The WalletProvider
allows access to different chain providers. The WalletProvider
is injected into every page you visit under window.stargazer
.
Contains the current wallet version.
Type
String
- Version string.
Example
TypeScript
Sending raw RPC requests can be error-prone and sometimes overwhelming. This guide will list some common external libraries for the Ethereum ecosystem that are compatible with the Stargazer ChainProvider.
The ethers.js package is a general purpose library for interacting with the ethereum ecosystem. It offers different features from contract interaction to EIP-712 message signing for wallets.
In ethers.js there are different types of providers, the Stargazer ChainProvider
is compatible with ethers.js Web3Provider
.
Once the ethers.js Web3Provider
is created you can start interacting with the network using this library.
The web3.js library offers a simple but powerful API to interact with the ethereum ecosystem using EIP-1193, HTTP, IPC or WebSocket providers.
The web3.js library reveals the Web3
class which is compatible with the Stargazer ChainProvider
.
Once the web3.js Web3
object is created you can start interacting with the network using this library.
Signing arbitrary data enables you to verify the user's possession of an account. This guide will walk you through the signing process and verification.
Obtain a chain provider
As covered in Provider Activation, obtain a chain provider for the networks you want to interact with. In the following examples, we will use both Ethereum and Constellation providers.
Constellation signatures for messages are done through a signature request object. The signature request object is sent for the user to accept. Uppon approval, a signature of the whole object is returned.
Requests need to be a Base64 < JSON
encoded string to sign. The wallet will then generate the signature from the same characters that compose this encoded request.
Once built and encoded, you can send the encoded signature request using the dag_signMessage
RPC method.
Important
When the signature request is sent, the wallet will verify compliance with the schema of the signature request object. If it does not comply, the wallet will throw an error.
The returned signature corresponds to the SHA512 hash of the encoded signature request and the private key of the user. ECDSA.sign(privateKey, sha512(signatureRequestEnconded))
.
Read more about Constellation signature verification
After you generate a signature from your encoded request, you need to retrieve the public key from the signer's account for future verification. This is due to the fact that Constellation signatures are not recoverable (i.e. do not contain the v
parameter like in Ethereum).
The Stargazer Ethereum RPC API implements both EIP-191 (personal_sign
) and EIP-712 (eth_signTypedData
) as arbitrary message signing methods.
The RPC API provided reveals the personal_sign
RPC method for message signing. In this case, the message signed is an arbitrary hex string prefixed by the "\x19Ethereum Signed Message:\n"
string and the length of the message in bytes from EIP-191.
The returned signature corresponds to the keccak256 hash of the prefix + message string and the private key of the user. ECDSA.sign(privateKey, keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))
.
Read more about Ethereum signature verification
The RPC API provided reveals the eth_signTypedData
RPC method for typed message signing. In this case, the message signed is the hash of the typed data according to EIP-712 prefixed by the "\x19\x01"
string according to EIP-191.
The returned signature corresponds to the keccak256 hash of the domainSeparator + hashStruct(message) and the private key of the user. ECDSA.sign(privateKey, keccak256("\x19\x01" + domainSeparator + hashStruct(message))
.
Read more about Ethereum signature verification
For signature verification, we will be using the @stardust-collective/dag4 package. The following snippet illustrates how you can verify an encoded request signature.
For signature verification, we will be using the ethers package. The following snippets illustrate how you can verify different message signatures.
eth_personalSign
eth_signTypedData
The ChainProvider
handles access to the chain RPC methods and underlying events. It complies with the EIP-1193 standard. Besides methods from the standard it adds a couple of utility methods related to provider activation.
Stargazer is a non-custodial multichain wallet with support for Constellation and Ethereum networks. The following documentation will guide you through integrating Stargazer Wallet into a Web3 site or app.
Stargazer is currently available in the following platforms:
You can interact with the Stargazer Extension via injected javascript API. Mobile interactions are not supported at the moment.
A pair of interactive demo sites with implementation code are available to get started quickly with common functionality such as connecting the wallet, interacting with DAG + ETH chains, sending transactions, signing messages, and more.
The demo sites use the two most common integration strategies for Web3 sites: Standalone or Web3 React integration.
Contains an object with different error classes commonly thrown.
Type
Object<ErrorTypes>
- Object with error classes.
ErrorTypes
Example
TypeScript
Contains the chain name of the provider.
Type
"constellation"
| "ethereum"
- Chain name.
Example
TypeScript
Contains the current wallet version.
Type
String
- Version string.
Example
TypeScript
Contains the status of activation.
Type
Boolean
- Indicating if the provider is activated for the current origin.
Example
TypeScript
Registers the listener function as callback of the selected RPC event.
Warning
Type
on(eventName, listener): void
Parameters
Return Type
void
Example
TypeScript
This method will always return, even if there are errors while adding the listener, for controlling errors generated during the registration process use .
Registers the listener function as callback of the selected RPC event.
Type
async onAsync(eventName, listener): void
Parameters
Return Type
void
Example
TypeScript
eventName
String
Event to listen. Depeding on the provider chain one of or an .
listener
()=>any
Callback function.
eventName
String
Event to listen. Depeding on the provider chain one of or an .
listener
()=>any
Callback function.
Sends an activation request for the user to accept. If the user has already given authorization for the current origin this method just configures the underlying communication channel.
Type
async activate(title?): boolean
Parameters
title?
String
App name.
Return Type
Boolean
- Indicating the result of the activation request.
Example
TypeScript
Returns a chain provider for the selected chain.
Info
Each provider instance is created once per network, thus 2 chain providers from the same network on the same page share the same underlying reference.
Type
getProvider(chain): ChainProvider
Parameters
chain
"constellation"
| "ethereum"
Chain name.
Return Type
ChainProvider
- The selected chain provider. An error is thrown if chain
is invalid.
Example
TypeScript
Removes the listener function as callback of the selected RPC event.
Type
async removeListenerAsync(eventName, listener): void
Parameters
Return Type
void
Example
TypeScript
eventName
String
Event listened. Depeding on the provider chain one of or an .
listener
()=>any
Callback function.
Following pages describe the different RPC methods available for the user. Some of this methods trigger a popup for the user to accept like .
Removes the listener function as callback of the selected RPC event.
Warning
This method will always return, even if there are errors while removing the listener, for controlling errors generated during the deregistration process use async removeListenerAsync(eventName, listener).
Type
removeListener(eventName, listener): void
Parameters
Return Type
void
Example
TypeScript
eventName
String
Event listened. Depeding on the provider chain one of or an .
listener
()=>any
Callback function.
Type
async request(request): any
Parameters
request
Request
Request method and parameters.
Request
Return Type
Any
- Data returned from the request, depends on the invoked RPC method.
Example
TypeScript
Invokes the selected RPC method. Depeding on the provider chain it will invoke a or an .
Retrieves the active account in the wallet for Constellation's provider.
Parameters
None
Return Type
DAGAddress[]
- User's active account.
Example
Returns the current network id.
Parameters
None
Return Type
ChainId
- The current network id.
ChainId
Example
Returns the current DAG balance.
Parameters
None
Return Type
String
- The amount of DAG.
Example
TypeScript
Returns the balance of the selected metagraph token.
Parameters
metagraphAddress
DAGAddress
The address of the metagraph token
Return Type
String
- Balance of the selected metagraph token
Example
Returns information about a pending transaction by hash in a specific metagraph.
TransactionParams
PendingTransaction
| null
- PendingTransaction object or null if not found.
PendingTransaction
Parameters
Return Type
Example
Data
Object<PendingTransactionParams>
Transaction info object
Returns the public key of the selected account.
Parameters
Return Type
HexString
- Public key of the selected account.
Example
address
DAGAddress
Account to get the public key from.
Sends a new transaction to the selected metagraph.
Parameters
Data
Object<Transaction>
The transaction object.
Transaction
Return Type
String<Hash>
- The hash of the sent transaction.
Example
Returns information about a transaction by hash. If the transaction object is returned, the transaction was included in a block and lives in the network.
Parameters
TransactionHash
String<Hash>
Hash of the selected transaction.
Return Type
Transaction
| null
- Transaction object or null if not found.
Transaction
Proof
Example
Sends a new transaction to the Constellation network.
Parameters
Data
Object<Transaction>
The transaction object.
Transaction
Return Type
String<Hash>
- The hash of the sent transaction.
Example
Parameters
None
Return Type
DAGAddress[]
- User accounts available.
Example
Creates a request to generate a safe signature of arbitrary data from the selected wallet. This method is intended to be used for interaction with custom data requests to metagraphs and other similar use cases.
This method adds a standard "\u0019Constellation Signed Data:\n" + len(message) + "\n"
prefix when calculating the signature hash. The addition of the prefix prevents users from being tricked into signing a valid token transaction with this method.
The final string looks like this: "\u0019Constellation Signed Data:\n" + len(message) + "\n" + message
Warning
Please be sure you use the correct prefix for the correct method when verifying signatures, dag_signData
uses "Constellation Signed Data:" while dag_signMessage
uses "Constellation Signed Message:"
HexString
- The prefixed ECDSA signature.
Base64
JSONEncoded
StringEncoded
In order to verify the signature you can use the verifyData()
method from dag4.js
:
This method will send a wallet activation request if the user hasn't activated their wallet in your dapp, you can read more about the Stargazer wallet activation process .
Request the user to grant access to their Constellation accounts. This method follows the specification.
Parameters
Return Type
Example
Verify
Account
Address
Account to sign from.
Request
Base64<JSONEncoded>
| Base64<StringEncoded>
Signature Request.
Returns information about a transaction by hash and metagraph address. If the transaction object is returned, the transaction was included in a block and lives in the metagraph.
Parameters
Data
Object<TransactionParams>
Transaction info object
TransactionParams
Return Type
Transaction
| null
- Transaction object or null if not found.
Transaction
Proof
Example
Following pages describe the different RPC methods available for the user. Some of this methods trigger a popup for the user to accept like or .
Executes a new message call immediately without creating a transaction on the blockchain.
Parameters
Data
Object<Transaction>
The transaction object.
Block
Number
| "latest"
| "earliest"
| "pending"
Block number to execute this call in.
Transaction
Return Type
HexString<Any>
- The returned data of the contract execution.
Example
Adds an L0 token to the Stargazer wallet.
Parameters
Data
Object<WatchAssetParameters>
The L0 token info object.
WatchAssetParameters
WatchAssetOptions
Return Type
String<Boolean>
- True if the token was added successfully.
Example
Returns the current network id.
Parameters
None
Return Type
ChainId
- The current network id. The full list of chain IDs is available at chainlist.org. Some of the common ones are noted bellow.
ChainId
Example
Creates a request to generate a safe signature of typed message data from the selected wallet. This method is intended to be used for general message signing use cases such as verifying the ownership of a wallet.
This method adds a standard "\u0019Constellation Signed Message:\n" + len(message) + "\n"
prefix when calculating the signature hash. The addition of the prefix prevents users from being tricked into signing a valid token transaction with this method.
The final string looks like this: "\u0019Constellation Signed Message:\n" + len(message) + "\n" + message
Warning
Please be sure you use the correct prefix for the correct method when verifying signatures, dag_signMessage
uses "Constellation Signed Message:" while dag_signData
uses "Constellation Signed Data:"
Parameters
Account
Address
Account to sign from.
Request
Base64<JSONEncoded<SignatureRequest>>
Signature Request.
Return Type
HexString
- The constellation ecdsa signature.
Base64
JSONEncoded
JSONScalarValue
SignatureRequest
Example
Verify
In order to verify the signature you can use the verify()
method from dag4.js
:
Retrieves the active account in the wallet for Ethereum's provider.
Parameters
None
Return Type
Address[]
- User's active account.
Example
Returns information about a block by hash.
Parameters
BlockHash
HexString<Hash>
Hash of the selected block.
ShowTransactionDetails
Boolean
If true returns the full transaction objects, otherwise the hashes of the transactions.
Return Type
Block
| null
- The block data or null if not found.
Block
Transaction
Example
Returns information about a block by number.
Parameters
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
ShowTransactionDetails
Boolean
If true returns the full transaction objects, otherwise the hashes of the transactions.
Return Type
Block
| null
- The block data or null if not found.
Block
Transaction
Example
Generates an estimate of how much gas will be necessary to process a transaction on the blockchain. Generally the estimate is significantly greater than the actual gas used. The transaction will not be added to the blockchain.
Parameters
Data
Object<Transaction>
The transaction object.
Transaction
Return Type
HexString<Integer>
- Estimate in gas units.
Example
TypeScript
Returns the number of transactions included in a block by number.
Parameters
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
Return Type
HexString<Number>
| null
- Number of transactions included in the block or null if not found.
Example
Returns associated logs or block hashes for the given filter id since the last poll. Filter ids must be created using eth_newFilter
or eth_newBlockFilter
.
Parameters
FilterId
HexString<FilterId>
Return Type
Log[]
| HexString<Hash>[]
- Array of log objects found or for filters created using eth_newBlockFilter
an array of hashes.
Log
Example
Returns associated logs of the given filter id. Node filters are created using eth_newFilter
.
Parameters
FilterId
HexString<FilterId>
Return Type
Log[]
- Array of log objects found.
Log
Example
Filter id created using or .
Filter id created using .
Returns information about a transaction by block number and transaction index position.
Parameters
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
Index
HexString<Number>
Transaction index.
Return Type
Transaction
| null
- Transaction object or null if not found.
Transaction
Example
Returns the value from a storage slot position at a given address.
Parameters
Address
Address
Address to retrieve data from.
Position
HexString
Hex code of the position in storage.
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
Return Type
HexString
- Hex code of the integer indicating the value of the storage position at the provided address.
Example
Returns the number of transactions sent from address.
Parameters
Address
Address
Address to fetch count for.
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
Return Type
HexString<Number>
- Number of transactions sent from address.
Example
Returns the receipt for a transaction by hash.
Important
The transaction receipt is only available for mined transactions.
Parameters
TransactionHash
HexString<Hash>
Hash of the selected transaction.
Return Type
TransactionReceipt
| null
- Transaction receipt object or null if not found.
TransactionReceipt
Log
Example
Returns information about a block's uncle by number and uncle index.
Parameters
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
UncleIndex
HexString<Number>
Uncle's index position.
Return Type
UncleBlock
| null
- The block data or null if not found.
UncleBlock
Example
Creates a new filter in the node. Used to notify when a new block arrived. To check for state changes call eth_getFilterChanges
.
Parameters
None
Return Type
HexString<FilterId>
- The new associated filter id.
Example
Returns the number of uncles in a block by number.
HexString<Number>
| null
- Number of uncles in the block or null if not found.
Parameters
Return Type
Example
BlockNumber
HexString<Number>
| "latest"
| "earliest"
| "pending"
Hexadecimal block number, or the string "latest", "earliest" or "pending".
Creates a new filter in the node, based on filter options. Used to notify state changes (logs). To check for state changes call eth_getFilterChanges
.
Parameters
Filter
Filter
Filter logs based on this filter.
Filter
Return Type
HexString<FilterId>
- The new associated filter id.
Example
Important
None
Address[]
- User accounts available.
Important
The account at index 0 will always be the active account in Stargazer.
This method will send a wallet activation request if the user hasn't activated their wallet in your dapp, you can read more about the Stargazer wallet activation process .
Request the user to grant access to their Ethereum (EVM) accounts. This method follows the specification.
Parameters
Return Type
Example
Sends a new transaction to the network. If the transaction has no recipient and contains data, it creates a new contract. If the transaction has a recipient and data it executes a write contract call.
Parameters
Data
Object<Transaction>
The transaction object.
Transaction
Return Type
HexString<Hash>
- The keccak-256 digest of the sent transaction.
Example
Calculates an ethereum signature of the given typed structured data from the selected account.
Important
This method complies with the latest specification of EIP-712.
The document version used is commit 9e393a7.
Parameters
Account
Address
Account to sign from.
Data
MessagePayload
| JSONString<MessagePayload>
Structured data to sign.
MessagePayload
Return Type
HexString<Signature>
- The ethereum ecdsa signature.
Example
Calculates an ethereum signature of the given typed structured data from the selected account.
Important
Alias of eth_signTypedData
Boolean
- True if the filter was uninstalled successfully.
Uninstalls a filter with given ID. Should always be called when watching is no longer needed. Additionally filters time out when they aren't requested with for a period of time.
Parameters
Return Type
Example
FilterId
HexString
Filter to uninstall by id.
Returns the current network id.
Parameters
None
Return Type
ChainId
- The current network id. The full list of chain IDs is available at chainlist.org. Some of the common ones are noted bellow.
ChainId
Example
Calculates an ethereum signature of the given data from the selected account.
Warning
This method adds the standard "\x19Ethereum Signed Message:\n" + len(message)
prefix when calculating the signature hash.
ecdsa(keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))
Parameters
Data
HexString
| String
Data to sign.
Account
Address
Account to sign from.
Return Type
HexString<Signature>
- The ethereum ecdsa signature.
Example