/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ declare const _default: { getFuncSignature: (hash: any) => Promise; addAutoconfirm: (dto: { contractAddress?: string; funcName?: string; funcHash?: string; domainName?: string; chainId?: number; }) => Promise; deleteAutoconfirm: (dto: { autoConfirmId?: string; }) => Promise; addFavorite: (dto: { chainId?: number; nickname?: string; address?: string; }, accToken: string) => Promise; updateFavorite: (dto: { nickname?: string; favoriteId?: string; address?: string; chainId?: number; }, accessToken: string) => Promise; deleteFavorite: (dto: { favoriteId?: string; }, accessToken: string) => Promise; }; export default _default;