From 633436fa39c38cdaf12bdd3676d78d836b7b802e Mon Sep 17 00:00:00 2001 From: Pierre Jeanjacquot <26487010+PierreJeanjacquot@users.noreply.github.com> Date: Thu, 30 Apr 2026 15:14:40 +0200 Subject: [PATCH] fix: cleanup jsdoc --- src/utils/getWeb3Provider.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/utils/getWeb3Provider.ts b/src/utils/getWeb3Provider.ts index 25ab55d9..b11284e2 100644 --- a/src/utils/getWeb3Provider.ts +++ b/src/utils/getWeb3Provider.ts @@ -1,15 +1,6 @@ import { getSignerFromPrivateKey } from 'iexec/utils'; import { Web3SignerProvider } from '../web3mail/types.js'; -/** - * Build an ethers signer for Node.js from a private key and an explicit chain. - * - * `host` must be provided (chain id or iExec chain host string). There is no default - * chain: omitting it used to fall back to Arbitrum Sepolia and could migrate users - * silently when defaults change. - * - * @see https://github.com/iExecBlockchainComputing/dataprotector-sdk/blob/dataprotector-v2.0.0-beta.27/packages/sdk/src/utils/getWeb3Provider.ts - */ export const getWeb3Provider = ( privateKey: string, host: number | string,