@cryptodevops/n8n-nodes-blockchain-explorer
Version:
n8n node for accessing multiple blockchain networks (Ethereum, BSC, Polygon, Fantom, Avalanche, Arbitrum, Optimism, etc.) with comprehensive analytics and data retrieval capabilities
12 lines (11 loc) • 504 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class BlockchainExplorerApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
static getBaseUrl(network: string, environment: string): string;
static convertFromEtherscanApi(etherscanCredentials: any): any;
}