/****************************************************************************** * * (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 KlaytnUtil: { coverInitialTxValue: (tx: any) => any; serializeKlayTx: (unsignedTx: any) => any; createRawTx: ({ txParams, v, r, s }: { txParams: any; v: any; r: any; s: any; }) => Promise; createTxHash: (txParams: any) => any; }; export default KlaytnUtil;