@myria/airdrop-js
Version:
Airdrop in L1 with claim based approach
16 lines (15 loc) • 621 B
TypeScript
import { IThirdwebClient } from '../type/ClientType';
/**
* Initialize Thirdweb client from clientId. Use for testing local if you want to keep session
*
* @param {string} clientId - API client id
* @returns {IThirdwebClient} - ThirdwebClient
*/
export declare const createThirdwebClientWithClientId: (clientId: string) => IThirdwebClient;
/**
* Initialize Thirdweb client from secretKey. Use for the BE to bypass login
*
* @param {string} secretKey - API secret key
* @returns {IThirdwebClient} - ThirdwebClient
*/
export declare function createThirdwebClientWithSecretKey(secretKey: string): IThirdwebClient;