From 279131602a8e82aaadd0323031c7006f93a4cfb0 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Mon, 1 Jul 2024 17:50:58 +0200 Subject: [PATCH] feat: expose candid type RetrieveErc20Request (#670) # Motivation Randomly noticed another type, `RetrieveErc20Request`, which is used since quite some time in Oisy but, is actually not directly exposed by the ckETH library module. # Changes - Expose `RetrieveErc20Request` in `@dfinity/cketh` # Notes Searched for other potential not exposed types in Oisy, there weren't. Signed-off-by: David Dal Busco --- packages/cketh/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cketh/src/index.ts b/packages/cketh/src/index.ts index dfd26ee1..46e36d17 100644 --- a/packages/cketh/src/index.ts +++ b/packages/cketh/src/index.ts @@ -2,6 +2,7 @@ export type { Eip1559TransactionPrice, EthTransaction, MinterInfo, + RetrieveErc20Request, RetrieveEthRequest, RetrieveEthStatus, TxFinalizedStatus,