Protected
clientReadonly
currentCurrent account data.
Protected
eip712Protected
listenersProtected
providerProtected
emitCreate Ethers.js Wallet instance from username and password. This method is used internally to create a wallet for the user. You can use this method to create a wallet if you need to sign transactions.
Sogni account username
Sogni account password
Refresh the balance of the current account.
Usually, you don't need to call this method manually. Balance is updated automatically through WebSocket events. But you can call this method to force a balance refresh.
Restore session with username and refresh token.
You can save access token that you get from the login method and restore the session with this method.
Refresh token, access token pair { refreshToken: string, token: string }
const { username, token, refreshToken } = await client.account.login('username', 'password');
localStorage.setItem('sogni-username', username);
localStorage.setItem('sogni-token', token);
localStorage.setItem('sogni-refresh-token', refreshToken);
const username = localStorage.getItem('sogni-username');
const token = localStorage.getItem('sogni-token');
const refreshToken = localStorage.getItem('sogni-refresh-token');
if (username && refreshToken) {
client.account.setToken(username, {token, refreshToken});
console.log('Session restored');
}
Switch between fast and relaxed networks. This will change default network used to process projects. After switching, client will receive list of AI models available for on selected network.
Network type to switch to
Get the transaction history of the current account.
Transaction history query parameters
Transaction history entries and next query parameters
Account API methods that let you interact with the user's account. Can be accessed via
client.account
. Look for more samples below.Example: Retrieve the current account balance