Ethers.js
In order to provide easy access to all the features of COTI, the coti-ethers JavaScript SDK was created, which is made in a way that has an interface very similar to that of Ethers.js. In fact, ethers is a peer dependency of our library and all of the objects exported by coti-ethers (e.g. Wallet, BrowserProvider, etc.) inherit from the corresponding ethers objects and extend their functionality where needed.
While most of the existing SDKs should work out of the box, using unique COTI features like encrypting transaction inputs, requires executing the onboarding procedure and encrypting using the defined protocol.
The library is made in such a way that after replacing ethers with coti-ethers most client apps will work out of box.
Clone, Build & Test
Full instructions for building and testing the package locally are available in the coti-ethers GitHub repository
Installation
npm install @coti-io/coti-ethersUsage
See the coti-typescript-examples repository for code examples.
Classes
BrowserProvider
The BrowserProvider class extends the JsonRpcApiPollingProvider and provides an interface for interacting with an EIP-1193 compatible browser provider (such as MetaMask). This class enables the sending of JSON-RPC requests to Ethereum nodes via browser extensions and handles account management and signer creation.
Parameters:
ethereum: AnEip1193Provider(typically a browser extension like MetaMask) that implements therequestmethod for sending JSON-RPC requests.network?: Optional. ANetworkishobject representing the network configuration (e.g., mainnet, testnet)._options?: Optional.BrowserProviderOptionsthat are merged into theJsonRpcApiProviderOptionsfor additional configuration.
Description: Initializes the
BrowserProviderby setting up the underlying provider and validating theethereumobject. It sets the default configuration for handling JSON-RPC requests and provides error handling and debugging features.Throws:
An error if the provided
ethereumobject is not a valid EIP-1193 provider.
Parameters:
method: A string representing the JSON-RPC method (e.g.,eth_accounts,eth_sendTransaction).params: An array or object containing the parameters for the JSON-RPC method.
Returns: A
Promise<any>resolving to the result of the JSON-RPC method.Description: Sends a JSON-RPC request to the Ethereum provider using the inherited
sendmethod after initializing the provider via_start().
Parameters:
payload: AJsonRpcPayloadobject or an array of such objects representing the JSON-RPC request(s).
Returns: A
Promise<Array<JsonRpcResult | JsonRpcError>>, resolving to an array containing the results or errors from the JSON-RPC request.Description: Sends a single JSON-RPC request using the EIP-1193 protocol. This method does not support batch requests as EIP-1193 does not allow them. If an error occurs, the method returns the error details including the code, message, and data.
Throws: Throws an error if batch requests are attempted.
Parameters:
payload: The original JSON-RPC payload that triggered the error.error: AJsonRpcErrorobject containing error details such as the error code, message, and data.
Returns: An
Errorobject with additional information based on the error code.Description: Enhances the error message based on known EIP-1193 error codes. For example, it rewrites the error message for:
4001: User denied the request.4200: Unsupported request.
Example:
4001becomesethers-user-denied: {message}4200becomesethers-unsupported: {message}
Parameters:
address: Anumber(account index) orstring(Ethereum address).
Returns: A
Promise<boolean>, resolving totrueif the provider manages the given address.Description: Checks if the provider manages the given account. If an account index is passed, it checks if the account exists at that index. If an address is passed, it verifies whether the address is managed by the provider.
Parameters:
address?: An optionalnumberorstringrepresenting the account index or Ethereum address. Defaults to the first account if not provided.userOnboardInfo?: OptionalOnboardInfoobject containing user-specific data such as AES keys and RSA key pairs for the signer.
Returns: A
Promise<JsonRpcSigner>, resolving to a customJsonRpcSignerinstance associated with the given address.Description: Retrieves the
JsonRpcSignerfor the specified account. If the provider doesn't manage the specified account, it triggers a request to the Ethereum provider to access accounts (e.g., MetaMask'seth_requestAccountsmethod). After confirming account access, it returns the signer.
JsonRpcApiProvider
The JsonRpcApiProvider class extends the base JsonRpcApiProvider from the ethers.js library. It adds custom functionality for interacting with JSON-RPC APIs and provides an implementation for retrieving a JsonRpcSigner, which includes onboarding user information in the COTI network.
Parameters:
network?: An optionalNetworkishobject that specifies the network to connect to.options?: Optional configuration options for the JSON-RPC provider (of typeJsonRpcApiProviderOptions).
Description: Initializes a new instance of the
JsonRpcApiProviderclass. It extends the base provider fromethers.js, allowing additional functionality for managing signers and user-specific onboarding.
Parameters:
address?: An optionalnumberorstringthat specifies which account to use. If not provided, defaults to the first account (0).If a
numberis provided, it refers to the account index.If a
stringis provided, it refers to an Ethereum address.
userOnboardInfo?: OptionalOnboardInfoobject that contains user-specific information, such as AES keys, RSA keys, and transaction hashes.
Returns: A
Promise<JsonRpcSigner>, resolving to a customJsonRpcSignerinstance associated with the given account.Description: This method retrieves a
JsonRpcSignerinstance for the specified account. The method handles two cases:Account Index: If the
addressis a number, the method fetches the list of accounts and returns the signer for the account at that index.Account Address: If the
addressis a string, it checks the list of accounts for the corresponding address and returns the signer for that address.
Account Resolution:
The function makes a call to the JSON-RPC API method
eth_accountsto retrieve the available accounts.The
resolvePropertiesutility is used to ensure that both the network and accounts are resolved before the account matching begins.
Error Handling:
Throws an error if the specified account index is out of range.
Throws an error if the provided address is invalid or not found in the list of accounts.
JsonRpcSigner
The JsonRpcSigner class extends the base JsonRpcSigner from ethers.js and adds additional functionality for onboarding users and managing encryption using AES keys within the Coti Network. It includes methods for securely encrypting and decrypting data, generating/recovering AES keys, and handling onboarding procedures.
Parameters:
provider: An instance ofJsonRpcApiProviderfor interacting with the blockchain.address: A string representing the Ethereum address for this signer.userOnboardInfo?: OptionalOnboardInfoobject containing user-specific data such as AES keys, RSA keys, and transaction hashes.
Description: Initializes a new instance of the
JsonRpcSignerclass, optionally including user-specific onboarding information. It extends the functionality of the baseJsonRpcSignerfromethersby incorporating encryption-related operations and user onboarding data.
Parameters:
plaintextValue: The value to encrypt, which can be of typebigint,number, orstring.contractAddress: The smart contract address to which the encryption is related.functionSelector: The function identifier for the contract interaction.
Returns: A
Promise<itUint | itString>, depending on the type of the plaintext value.Description: Encrypts the provided plaintext using the user’s AES key. If the AES key is not available, it attempts to generate or recover it via onboarding. The function handles both integer and string values and returns the encrypted result accordingly.
Parameters:
ciphertext: The encrypted value, which can either be of typectUint(for integers) orctString(for strings).
Returns: A
Promise<bigint | string>, depending on the ciphertext type.Description: Decrypts the provided ciphertext using the AES key stored in the user’s onboarding information. If the AES key is missing, it attempts to onboard the user or recover the key. The method supports decryption for both integers and strings.
Parameters:
onboardContractAddress: The contract address used for onboarding purposes. Defaults toONBOARD_CONTRACT_ADDRESS.
Returns: A
Promise<void>.Description: This function attempts to generate or recover the user's AES key. If the AES key already exists in the onboarding information, it returns immediately. If the user’s RSA key and transaction hash are available, the AES key is recovered from the blockchain using the
recoverAesFromTxfunction. If no onboarding info exists, it checks the user's account balance and initiates the onboarding process if the balance is sufficient.Error Handling:
Throws an error if the user's account balance is
0, preventing onboarding.
Wallet
The Wallet class extends the base Wallet from the ethers library, adding features specific to the COTI network. It handles user onboarding, key management, and encryption/decryption of values using AES and RSA keys. The class also supports the process of automatically onboarding users if needed.
Parameters:
privateKey: AstringorSigningKeyused to initialize the wallet.provider?: An optionalProviderobject ornull. Defaults tonullif not provided.userOnboardInfo?: An optionalOnboardInfoobject that contains the user's onboarding data (e.g., AES key, RSA key).
Description: Initializes a new
Walletinstance with a given private key, provider, and optional user onboarding information. This class extends theBaseWalletfrom theetherslibrary, inheriting its functionality.
Returns:
booleanDescription: Returns the current state of the
_autoOnboardflag, which indicates whether automatic onboarding is enabled.
Returns:
OnboardInfo | undefinedDescription: Retrieves the user's onboarding information, or
undefinedif no onboarding info is present.
Parameters:
onboardInfo: An optional object of typePartial<OnboardInfo>to update or modify the existing onboarding information.
Description: Updates the current user's onboarding info by merging the new
onboardInfovalues with the existing ones.
Parameters:
key: The AES encryption key to set in the user's onboarding information.
Description: Assigns the AES key to the user’s onboarding information. If onboarding info doesn’t exist, it creates a new onboarding object with the provided key.
Parameters:
hash: The transaction hash associated with the user's onboarding process.
Description: Sets the transaction hash in the user’s onboarding info. If onboarding info is absent, it creates a new one with the hash.
Parameters:
rsa: The RSA key pair for encryption/decryption.
Description: Stores the provided RSA key pair in the user’s onboarding info. If the onboarding object is not present, it initializes a new one with the given RSA key.
Parameters:
plaintextValue: The value to encrypt, which can be of typebigint,number, orstring.contractAddress: The address of the smart contract involved in the encryption.functionSelector: A string that identifies the specific contract function to which this encryption pertains.
Returns: A promise that resolves to either
itUintoritString, depending on the type of the value.Description: Encrypts the provided
plaintextValueusing the user’s AES key. If the AES key is missing, it attempts to generate or recover it. It handles bothbigintandstringvalues.
Parameters:
ciphertext: The encrypted value, either actUint(for integers) or actString(for strings).
Returns: A promise that resolves to either a
stringorbigint, depending on the ciphertext type.Description: Decrypts the given ciphertext using the user’s AES key. If the AES key is not available, it attempts to generate or recover it. Handles both integer and string decryption.
Description: Enables automatic onboarding by setting the
_autoOnboardflag totrue.
Description: Disables automatic onboarding by setting the
_autoOnboardflag tofalse.
Description: Clears the stored user onboarding information by setting
_userOnboardInfotoundefined.
Parameters:
onboardContractAddress: The contract address for onboarding purposes. Defaults toDEVNET_ONBOARD_CONTRACT_ADDRESS.
Description: Attempts to generate or recover the user’s AES key:
If the AES key exists in the user’s onboarding info, it returns immediately.
If the user’s RSA key and transaction hash are available, the AES key is recovered from the blockchain transaction using
recoverAesFromTx.If neither AES nor RSA keys are available, it attempts to onboard the user by checking their account balance and invoking the onboarding process.
Throws: Throws an error if the account balance is 0, preventing the user from being onboarded.
Modules
Account
This module provides utility functions for managing and interacting with accounts in an Ethereum-compatible blockchain using ethers.js. It includes functions for retrieving account details, checking balances, validating addresses, handling nonces, and transferring native tokens between accounts.
Parameters:
provider: An instance ofProviderto interact with the blockchain.address: A string representing the account’s address.
Returns: A
Promise<void>that resolves once the account details are printed.Description: This function prints the details of a given account to the console, including:
The account's address.
The account's balance in both wei and ether.
The account's transaction nonce.
Error Handling:
Throws an error if the provider is not connected or the address is invalid.
Parameters:
address: A string representing the account’s address.
Returns: An object containing:
valid: A boolean indicating if the address is valid.safe: A checksummed version of the address (a safer, standardized format).
Description: This function validates the format of a given Ethereum address and returns both a boolean (
valid) and a safe, checksummed version (safe) of the address.
Parameters:
provider: An instance ofProviderto interact with the blockchain.address: A string representing the account’s address.
Returns: A
Promise<number>that resolves to the account's nonce, which represents the number of transactions sent from the address.Description: This function retrieves the current transaction nonce for the given account, which is essential for ensuring the correct order of transactions on the blockchain.
Error Handling:
Throws an error if the provider is not connected or the address is invalid.
Parameters:
address: A string representing the account’s address.
Returns: A boolean indicating whether the address is valid.
Description: This function validates an Ethereum address by returning a boolean (
trueif valid,falseotherwise).
Parameters:
provider: An instance ofProviderto interact with the blockchain.address: A string representing the account’s address.
Returns: A
Promise<string>that resolves to the account balance in ether (as a formatted string).Description: This function retrieves the account’s balance in ether (instead of wei) by formatting the balance using
formatEther.Error Handling:
Throws an error if the provider is not connected or the address is invalid.
Parameters:
accountPrivateKey: A string representing the private key of the account.
Returns: A
Promise<string>that resolves to the Ethereum address generated from the private key.Description: This function generates an Ethereum address (EOA) from the given private key and returns it.
Error Handling:
Throws an error if the generated address is invalid.
Parameters:
provider: An instance ofProviderto interact with the blockchain.wallet: An instance ofWalletthat represents the sender's account.recipientAddress: A string representing the recipient's Ethereum address.amountToTransferInWei: The amount of native tokens to transfer, in wei.nativeGasUnit: The gas limit for the transaction.
Returns: A
Promise<void>.Description: This function transfers native tokens (e.g., ETH) from the sender's wallet to a recipient. It constructs a transaction, validates the gas estimation, and sends the transaction using the sender’s wallet.
Error Handling:
Throws an error if the transaction fails.
Logs the transaction hash on success or error details if it fails.
Transaction Details:
The transaction includes details like
to(recipient address),from(sender address),value(amount in wei),nonce,gasLimit, andgasPrice.
Network
This module provides utility functions for interacting with the COTI network through ethers providers. It includes functions to fetch the default provider, check if a provider is connected, print network details, and retrieve the latest block number.
Parameters:
cotiNetwork: An instance ofCotiNetworkthat specifies the network (Devnet, Testnet, Mainnet, etc.) the provider should connect to.
Returns: An instance of
JsonRpcProvider.Description: This function returns a
JsonRpcProviderconfigured to connect to the specifiedCotiNetwork. It uses thecotiNetworkURL to set up the provider for the specified environment.
Parameters:
provider: An instance ofProviderthat is connected to the Coti network.
Returns: A
Promise<void>, which resolves after network details are printed to the console.Description: This function prints the details of the network to which the provider is connected, including:
The provider's connection URL (if using a
JsonRpcProvider).The
chainIdof the network.The number of the latest block on the blockchain.
Error Handling:
Throws an error if the provider is not connected.
Usage: This function logs the following details:
Provider URL (
url)Chain ID (
chainId)Latest block number
Parameters:
provider: An instance ofProviderthat is connected to the Coti network.
Returns: A
Promise<number>, which resolves to the block number of the latest block in the network.Description: This function retrieves the block number of the most recent block on the blockchain. It first checks if the provider is connected, then queries the provider for the latest block.
Error Handling:
Throws an error if the provider is not connected or if the provider’s address is invalid.
Parameters:
provider: An instance ofProvider.
Returns: A
Promise<boolean>, which resolves totrueif the provider is connected to a network, orfalseif the connection is unsuccessful.Description: This function checks if a given provider is connected to a valid network by querying the network information. If the provider's network cannot be fetched, it returns
false. This function also throws an error if the provider is undefined.Error Handling:
Throws an error if the
providerobject is undefined.
\
Last updated
Was this helpful?