cketh-js
A library for interfacing with ckETH on the Internet Computer.

Table of contents
Installation
You can use cketh-js
by installing it in your project.
npm i @dfinity/cketh
The bundle needs peer dependencies, be sure that following resources are available in your project as well.
npm i @dfinity/agent @dfinity/candid @dfinity/principal @dfinity/utils
Usage
The features are available through the class CkETHMinterCanister
. It has to be instantiated with a canister ID.
import { CkETHMinterCanister } from "@dfinity/cketh";
import { createAgent } from "@dfinity/utils";
const agent = await createAgent({
identity,
host: HOST,
});
const { getSmartContractAddress } = CkETHMinterCanister.create({
agent,
canisterId: MY_CKETH_MINTER_CANISTER_ID,
});
const address = await getSmartContractAddress({});
Features
cketh-js
implements following features:
:factory: CkETHMinterCanister
:link: Source
Static Methods
:gear: create
create | (options: CkETHMinterCanisterOptions<_SERVICE>) => CkETHMinterCanister |
:link: Source
Methods
:gear: getSmartContractAddress
The address of the helper smart contract may change in the future when the minter is upgraded. Please verify the address of the helper contract before any important transfer by querying the minter as follows.
getSmartContractAddress | ({ certified, }?: QueryParams) => Promise<string> |
Parameters:
params
: The parameters to resolve the ckETH smart contract address.
params.certified
: query or update call
Returns:
Address of the helper smart contract.
:link: Source
:gear: withdrawEth
Submits a request to convert ckETH to ETH after making an ICRC-2 approval.
Preconditions:
The caller allowed the minter's principal to spend its funds using
[icrc2_approve] on the ckETH ledger.
withdrawEth | ({ address, fromSubaccount, ...rest }: { address: string; amount: bigint; fromSubaccount?: Subaccount or undefined; }) => Promise<RetrieveEthRequest> |
Parameters:
params
: The parameters to withdrawal ckETH to ETH.
params.address
: The destination ETH address.
params.amount
: The ETH amount in wei.
params.fromSubaccount
: The optional subaccount to burn ckETH from.
Returns:
The successful result or the operation.
:link: Source
:gear: withdrawErc20
Submits a request to convert ckErc20 to Erc20 - e.g. ckUSDC to USDC - after making ICRC-2 approvals for the ckETH and related ckErc20 ledgers.
Preconditions:
The caller allowed the minter's principal to spend its funds using
[icrc2_approve] on the ckErc20 ledger and to burn some of the user’s ckETH tokens to pay for the transaction fees on the CkETH ledger.
withdrawErc20 | ({ address, ledgerCanisterId, fromCkEthSubaccount, fromCkErc20Subaccount, ...rest }: { address: string; amount: bigint; ledgerCanisterId: Principal; fromCkEthSubaccount?: Subaccount or undefined; fromCkErc20Subaccount?: Subaccount or undefined; }) => Promise<...> |
Parameters:
params
: The parameters to withdrawal ckErc20 to Erc20.
params.address
: The destination ETH address.
params.amount
: The ETH amount in wei.
params.fromCkEthSubaccount
: The optional subaccount to burn ckETH from to pay for the transaction fee.
params.fromCkEthSubaccount
: The optional subaccount to burn ckERC20 from.
Returns:
The successful result or the operation.
:link: Source
:gear: eip1559TransactionPrice
Estimate the price of a transaction issued by the minter when converting ckETH to ETH and ckER20 to ERC20.
eip1559TransactionPrice | ({ certified, ...rest }: Eip1559TransactionPriceParams) => Promise<Eip1559TransactionPrice> |
Parameters:
params
: - The parameters to get the minter info.
params.ckErc20LedgerId
: - The optional identifier for a particular ckERC20 ledger.
params.certified
: - Indicates whether this is a certified query or an update call.
Returns:
- The estimated gas fee and limit.
:link: Source
:gear: retrieveEthStatus
Retrieve the status of a withdrawal request.
retrieveEthStatus | (blockIndex: bigint) => Promise<RetrieveEthStatus> |
Returns:
The current status of an Ethereum transaction for a block index resulting from a withdrawal.
:link: Source
:gear: getMinterInfo
Returns internal minter parameters such as the minimal withdrawal amount, the last observed block number, etc.
getMinterInfo | ({ certified }: QueryParams) => Promise<MinterInfo> |
Parameters:
params
: The parameters to get the minter info.
params.certified
: query or update call
:link: Source
:factory: CkETHOrchestratorCanister
Class representing the CkETH Orchestrator Canister, which manages the Ledger and Index canisters of ckERC20 tokens.
References:
:link: Source
Static Methods
:gear: create
Creates an instance of CkETHOrchestratorCanister.
create | (options: CkETHOrchestratorCanisterOptions<_SERVICE>) => CkETHOrchestratorCanister |
Parameters:
options
: - Options for creating the canister.
Returns:
A new instance of CkETHOrchestratorCanister.
:link: Source
Methods
:gear: getOrchestratorInfo
Retrieves orchestrator information, which contains the list of existing ckERC20 Ledger and Index canisters.
getOrchestratorInfo | ({ certified, }?: QueryParams) => Promise<OrchestratorInfo> |
Parameters:
params
: - The query parameters.
params.certified
: - Whether to execute a certified (update) call.
Returns:
A promise that resolves to the orchestrator information.
:link: Source
Resources