/* Copyright 2021 The caver-js Authors This file is part of the caver-js library. The caver-js library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The caver-js library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the caver-js. If not, see . */ import Caver, { LegacyTransaction, ValueTransfer, FeeDelegatedValueTransfer, FeeDelegatedValueTransferWithRatio, ValueTransferMemo, FeeDelegatedValueTransferMemo, FeeDelegatedValueTransferMemoWithRatio, AccountUpdate, FeeDelegatedAccountUpdate, FeeDelegatedAccountUpdateWithRatio, SmartContractDeploy, FeeDelegatedSmartContractDeploy, FeeDelegatedSmartContractDeployWithRatio, SmartContractExecution, FeeDelegatedSmartContractExecution, FeeDelegatedSmartContractExecutionWithRatio, Cancel, FeeDelegatedCancel, FeeDelegatedCancelWithRatio, ChainDataAnchoring, FeeDelegatedChainDataAnchoring, FeeDelegatedChainDataAnchoringWithRatio, SingleKeyring, MultipleKeyring, RoleBasedKeyring, SignatureData, AbstractTransaction, AbstractFeeDelegatedTransaction, EthereumAccessList, EthereumDynamicFee, LegacyTransactionWrapper, ValueTransferWrapper, FeeDelegatedValueTransferWrapper, FeeDelegatedValueTransferWithRatioWrapper, ValueTransferMemoWrapper, FeeDelegatedValueTransferMemoWrapper, FeeDelegatedValueTransferMemoWithRatioWrapper, AccountUpdateWrapper, FeeDelegatedAccountUpdateWrapper, FeeDelegatedAccountUpdateWithRatioWrapper, SmartContractDeployWrapper, FeeDelegatedSmartContractDeployWrapper, FeeDelegatedSmartContractDeployWithRatioWrapper, SmartContractExecutionWrapper, FeeDelegatedSmartContractExecutionWrapper, FeeDelegatedSmartContractExecutionWithRatioWrapper, CancelWrapper, FeeDelegatedCancelWrapper, FeeDelegatedCancelWithRatioWrapper, ChainDataAnchoringWrapper, FeeDelegatedChainDataAnchoringWrapper, FeeDelegatedChainDataAnchoringWithRatioWrapper, EthereumAccessListWrapper, EthereumDynamicFeeWrapper, } from 'caver-js' const caver = new Caver() // $ExpectType TransactionModule caver.transaction // $ExpectType Transaction caver.transaction.decode('string') // $ExpectType Promise caver.transaction.getTransactionByHash('hash') // $ExpectType string[] caver.transaction.recoverPublicKeys('rawTx') // $ExpectType string[] caver.transaction.recoverFeePayerPublicKeys('rawTx') // $ExpectType typeof AccessList caver.transaction.utils.accessList // $ExpectType AccessList caver.transaction.utils.accessList.create([]) // $ExpectType AccessList caver.transaction.utils.accessList.decode('string') // $ExpectType EncodedAccessTuple[] caver.transaction.utils.accessList.create([]).encodeToBytes() // $ExpectType typeof AccessTuple caver.transaction.utils.accessTuple // $ExpectType AccessTuple caver.transaction.utils.accessTuple.create('address', ['storageKey1', 'storageKey2']) // $ExpectType EncodedAccessTuple caver.transaction.utils.accessTuple.create('address', ['storageKey1', 'storageKey2']).encodeToByte() // $ExpectType LegacyTransactionWrapper caver.transaction.legacyTransaction // $ExpectType ValueTransferWrapper caver.transaction.valueTransfer // $ExpectType ValueTransferMemoWrapper caver.transaction.valueTransferMemo // $ExpectType AccountUpdateWrapper caver.transaction.accountUpdate // $ExpectType SmartContractDeployWrapper caver.transaction.smartContractDeploy // $ExpectType SmartContractExecutionWrapper caver.transaction.smartContractExecution // $ExpectType CancelWrapper caver.transaction.cancel // $ExpectType ChainDataAnchoringWrapper caver.transaction.chainDataAnchoring // $ExpectType FeeDelegatedValueTransferWrapper caver.transaction.feeDelegatedValueTransfer // $ExpectType FeeDelegatedValueTransferMemoWrapper caver.transaction.feeDelegatedValueTransferMemo // $ExpectType FeeDelegatedAccountUpdateWrapper caver.transaction.feeDelegatedAccountUpdate // $ExpectType FeeDelegatedSmartContractDeployWrapper caver.transaction.feeDelegatedSmartContractDeploy // $ExpectType FeeDelegatedSmartContractExecutionWrapper caver.transaction.feeDelegatedSmartContractExecution // $ExpectType FeeDelegatedCancelWrapper caver.transaction.feeDelegatedCancel // $ExpectType FeeDelegatedChainDataAnchoringWrapper caver.transaction.feeDelegatedChainDataAnchoring // $ExpectType FeeDelegatedValueTransferWithRatioWrapper caver.transaction.feeDelegatedValueTransferWithRatio // $ExpectType FeeDelegatedValueTransferMemoWithRatioWrapper caver.transaction.feeDelegatedValueTransferMemoWithRatio // $ExpectType FeeDelegatedAccountUpdateWithRatioWrapper caver.transaction.feeDelegatedAccountUpdateWithRatio // $ExpectType FeeDelegatedSmartContractDeployWithRatioWrapper caver.transaction.feeDelegatedSmartContractDeployWithRatio // $ExpectType FeeDelegatedSmartContractExecutionWithRatioWrapper caver.transaction.feeDelegatedSmartContractExecutionWithRatio // $ExpectType FeeDelegatedCancelWithRatioWrapper caver.transaction.feeDelegatedCancelWithRatio // $ExpectType FeeDelegatedChainDataAnchoringWithRatioWrapper caver.transaction.feeDelegatedChainDataAnchoringWithRatio // $ExpectType EthereumAccessListWrapper caver.transaction.ethereumAccessList // $ExpectType EthereumDynamicFeeWrapper caver.transaction.ethereumDynamicFee // $ExpectType string caver.transaction.type.valueTransfer // $ExpectType string caver.transaction.type['valueTransfer'] // $ExpectType string caver.transaction.tag.valueTransfer // $ExpectType string caver.transaction.tag['valueTransfer'] // $ExpectType LegacyTransaction new LegacyTransaction({}) // $ExpectType LegacyTransaction LegacyTransaction.create({}) // $ExpectType LegacyTransaction LegacyTransaction.create({}, caver.rpc.klay.klaytnCall) // $ExpectType LegacyTransaction caver.transaction.legacyTransaction.create({}) // $ExpectType LegacyTransaction LegacyTransaction.decode('string') // $ExpectType LegacyTransaction LegacyTransaction.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType LegacyTransaction caver.transaction.legacyTransaction.decode('string') // $ExpectType ValueTransfer new ValueTransfer({}) // $ExpectType ValueTransfer ValueTransfer.create({}) // $ExpectType ValueTransfer ValueTransfer.create({}, caver.rpc.klay.klaytnCall) // $ExpectType ValueTransfer caver.transaction.valueTransfer.create({}) // $ExpectType ValueTransfer ValueTransfer.create('string') // $ExpectType ValueTransfer ValueTransfer.decode('string') // $ExpectType ValueTransfer ValueTransfer.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType ValueTransfer caver.transaction.valueTransfer.decode('string') // $ExpectType FeeDelegatedValueTransfer new FeeDelegatedValueTransfer({}) // $ExpectType FeeDelegatedValueTransfer FeeDelegatedValueTransfer.create({}) // $ExpectType FeeDelegatedValueTransfer FeeDelegatedValueTransfer.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransfer caver.transaction.feeDelegatedValueTransfer.create({}) // $ExpectType FeeDelegatedValueTransfer FeeDelegatedValueTransfer.create('string') // $ExpectType FeeDelegatedValueTransfer FeeDelegatedValueTransfer.decode('string') // $ExpectType FeeDelegatedValueTransfer FeeDelegatedValueTransfer.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransfer caver.transaction.feeDelegatedValueTransfer.decode('string') // $ExpectType FeeDelegatedValueTransferWithRatio new FeeDelegatedValueTransferWithRatio({}) // $ExpectType FeeDelegatedValueTransferWithRatio FeeDelegatedValueTransferWithRatio.create({}) // $ExpectType FeeDelegatedValueTransferWithRatio FeeDelegatedValueTransferWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferWithRatio caver.transaction.feeDelegatedValueTransferWithRatio.create({}) // $ExpectType FeeDelegatedValueTransferWithRatio FeeDelegatedValueTransferWithRatio.create('string') // $ExpectType FeeDelegatedValueTransferWithRatio FeeDelegatedValueTransferWithRatio.decode('string') // $ExpectType FeeDelegatedValueTransferWithRatio FeeDelegatedValueTransferWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferWithRatio caver.transaction.feeDelegatedValueTransferWithRatio.decode('string') // $ExpectType ValueTransferMemo new ValueTransferMemo({}) // $ExpectType ValueTransferMemo ValueTransferMemo.create({}) // $ExpectType ValueTransferMemo ValueTransferMemo.create({}, caver.rpc.klay.klaytnCall) // $ExpectType ValueTransferMemo caver.transaction.valueTransferMemo.create({}) // $ExpectType ValueTransferMemo ValueTransferMemo.create('string') // $ExpectType ValueTransferMemo ValueTransferMemo.decode('string') // $ExpectType ValueTransferMemo ValueTransferMemo.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType ValueTransferMemo caver.transaction.valueTransferMemo.decode('string') // $ExpectType FeeDelegatedValueTransferMemo new FeeDelegatedValueTransferMemo({}) // $ExpectType FeeDelegatedValueTransferMemo FeeDelegatedValueTransferMemo.create({}) // $ExpectType FeeDelegatedValueTransferMemo FeeDelegatedValueTransferMemo.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferMemo caver.transaction.feeDelegatedValueTransferMemo.create({}) // $ExpectType FeeDelegatedValueTransferMemo FeeDelegatedValueTransferMemo.create('string') // $ExpectType FeeDelegatedValueTransferMemo FeeDelegatedValueTransferMemo.decode('string') // $ExpectType FeeDelegatedValueTransferMemo FeeDelegatedValueTransferMemo.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferMemo caver.transaction.feeDelegatedValueTransferMemo.decode('string') // $ExpectType FeeDelegatedValueTransferMemoWithRatio new FeeDelegatedValueTransferMemoWithRatio({}) // $ExpectType FeeDelegatedValueTransferMemoWithRatio FeeDelegatedValueTransferMemoWithRatio.create({}) // $ExpectType FeeDelegatedValueTransferMemoWithRatio FeeDelegatedValueTransferMemoWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferMemoWithRatio caver.transaction.feeDelegatedValueTransferMemoWithRatio.create({}) // $ExpectType FeeDelegatedValueTransferMemoWithRatio FeeDelegatedValueTransferMemoWithRatio.create('string') // $ExpectType FeeDelegatedValueTransferMemoWithRatio FeeDelegatedValueTransferMemoWithRatio.decode('string') // $ExpectType FeeDelegatedValueTransferMemoWithRatio FeeDelegatedValueTransferMemoWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedValueTransferMemoWithRatio caver.transaction.feeDelegatedValueTransferMemoWithRatio.decode('string') // $ExpectType AccountUpdate new AccountUpdate({}) // $ExpectType AccountUpdate AccountUpdate.create({}) // $ExpectType AccountUpdate AccountUpdate.create({}, caver.rpc.klay.klaytnCall) // $ExpectType AccountUpdate caver.transaction.accountUpdate.create({}) // $ExpectType AccountUpdate AccountUpdate.create('string') // $ExpectType AccountUpdate AccountUpdate.decode('string') // $ExpectType AccountUpdate AccountUpdate.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType AccountUpdate caver.transaction.accountUpdate.decode('string') // $ExpectType FeeDelegatedAccountUpdate new FeeDelegatedAccountUpdate({}) // $ExpectType FeeDelegatedAccountUpdate FeeDelegatedAccountUpdate.create({}) // $ExpectType FeeDelegatedAccountUpdate FeeDelegatedAccountUpdate.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedAccountUpdate caver.transaction.feeDelegatedAccountUpdate.create({}) // $ExpectType FeeDelegatedAccountUpdate FeeDelegatedAccountUpdate.create('string') // $ExpectType FeeDelegatedAccountUpdate FeeDelegatedAccountUpdate.decode('string') // $ExpectType FeeDelegatedAccountUpdate FeeDelegatedAccountUpdate.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedAccountUpdate caver.transaction.feeDelegatedAccountUpdate.decode('string') // $ExpectType FeeDelegatedAccountUpdateWithRatio new FeeDelegatedAccountUpdateWithRatio({}) // $ExpectType FeeDelegatedAccountUpdateWithRatio FeeDelegatedAccountUpdateWithRatio.create({}) // $ExpectType FeeDelegatedAccountUpdateWithRatio FeeDelegatedAccountUpdateWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedAccountUpdateWithRatio caver.transaction.feeDelegatedAccountUpdateWithRatio.create({}) // $ExpectType FeeDelegatedAccountUpdateWithRatio FeeDelegatedAccountUpdateWithRatio.create('string') // $ExpectType FeeDelegatedAccountUpdateWithRatio FeeDelegatedAccountUpdateWithRatio.decode('string') // $ExpectType FeeDelegatedAccountUpdateWithRatio FeeDelegatedAccountUpdateWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedAccountUpdateWithRatio caver.transaction.feeDelegatedAccountUpdateWithRatio.decode('string') // $ExpectType SmartContractDeploy new SmartContractDeploy({}) // $ExpectType SmartContractDeploy SmartContractDeploy.create({}) // $ExpectType SmartContractDeploy SmartContractDeploy.create({}, caver.rpc.klay.klaytnCall) // $ExpectType SmartContractDeploy caver.transaction.smartContractDeploy.create({}) // $ExpectType SmartContractDeploy SmartContractDeploy.create('string') // $ExpectType SmartContractDeploy SmartContractDeploy.decode('string') // $ExpectType SmartContractDeploy SmartContractDeploy.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType SmartContractDeploy caver.transaction.smartContractDeploy.decode('string') // $ExpectType FeeDelegatedSmartContractDeploy new FeeDelegatedSmartContractDeploy({}) // $ExpectType FeeDelegatedSmartContractDeploy FeeDelegatedSmartContractDeploy.create({}) // $ExpectType FeeDelegatedSmartContractDeploy FeeDelegatedSmartContractDeploy.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractDeploy caver.transaction.feeDelegatedSmartContractDeploy.create({}) // $ExpectType FeeDelegatedSmartContractDeploy FeeDelegatedSmartContractDeploy.create('string') // $ExpectType FeeDelegatedSmartContractDeploy FeeDelegatedSmartContractDeploy.decode('string') // $ExpectType FeeDelegatedSmartContractDeploy FeeDelegatedSmartContractDeploy.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractDeploy caver.transaction.feeDelegatedSmartContractDeploy.decode('string') // $ExpectType FeeDelegatedSmartContractDeployWithRatio new FeeDelegatedSmartContractDeployWithRatio({}) // $ExpectType FeeDelegatedSmartContractDeployWithRatio FeeDelegatedSmartContractDeployWithRatio.create({}) // $ExpectType FeeDelegatedSmartContractDeployWithRatio FeeDelegatedSmartContractDeployWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractDeployWithRatio caver.transaction.feeDelegatedSmartContractDeployWithRatio.create({}) // $ExpectType FeeDelegatedSmartContractDeployWithRatio FeeDelegatedSmartContractDeployWithRatio.create('string') // $ExpectType FeeDelegatedSmartContractDeployWithRatio FeeDelegatedSmartContractDeployWithRatio.decode('string') // $ExpectType FeeDelegatedSmartContractDeployWithRatio FeeDelegatedSmartContractDeployWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractDeployWithRatio caver.transaction.feeDelegatedSmartContractDeployWithRatio.decode('string') // $ExpectType SmartContractExecution new SmartContractExecution({}) // $ExpectType SmartContractExecution SmartContractExecution.create({}) // $ExpectType SmartContractExecution SmartContractExecution.create({}, caver.rpc.klay.klaytnCall) // $ExpectType SmartContractExecution caver.transaction.smartContractExecution.create({}) // $ExpectType SmartContractExecution SmartContractExecution.create('string') // $ExpectType SmartContractExecution SmartContractExecution.decode('string') // $ExpectType SmartContractExecution SmartContractExecution.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType SmartContractExecution caver.transaction.smartContractExecution.decode('string') // $ExpectType FeeDelegatedSmartContractExecution new FeeDelegatedSmartContractExecution({}) // $ExpectType FeeDelegatedSmartContractExecution FeeDelegatedSmartContractExecution.create({}) // $ExpectType FeeDelegatedSmartContractExecution FeeDelegatedSmartContractExecution.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractExecution caver.transaction.feeDelegatedSmartContractExecution.create({}) // $ExpectType FeeDelegatedSmartContractExecution FeeDelegatedSmartContractExecution.create('string') // $ExpectType FeeDelegatedSmartContractExecution FeeDelegatedSmartContractExecution.decode('string') // $ExpectType FeeDelegatedSmartContractExecution FeeDelegatedSmartContractExecution.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractExecution caver.transaction.feeDelegatedSmartContractExecution.decode('string') // $ExpectType FeeDelegatedSmartContractExecutionWithRatio new FeeDelegatedSmartContractExecutionWithRatio({}) // $ExpectType FeeDelegatedSmartContractExecutionWithRatio FeeDelegatedSmartContractExecutionWithRatio.create({}) // $ExpectType FeeDelegatedSmartContractExecutionWithRatio FeeDelegatedSmartContractExecutionWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractExecutionWithRatio caver.transaction.feeDelegatedSmartContractExecutionWithRatio.create({}) // $ExpectType FeeDelegatedSmartContractExecutionWithRatio FeeDelegatedSmartContractExecutionWithRatio.create('string') // $ExpectType FeeDelegatedSmartContractExecutionWithRatio FeeDelegatedSmartContractExecutionWithRatio.decode('string') // $ExpectType FeeDelegatedSmartContractExecutionWithRatio FeeDelegatedSmartContractExecutionWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedSmartContractExecutionWithRatio caver.transaction.feeDelegatedSmartContractExecutionWithRatio.decode('string') // $ExpectType Cancel new Cancel({}) // $ExpectType Cancel Cancel.create({}) // $ExpectType Cancel Cancel.create({}, caver.rpc.klay.klaytnCall) // $ExpectType Cancel caver.transaction.cancel.create({}) // $ExpectType Cancel Cancel.create('string') // $ExpectType Cancel Cancel.decode('string') // $ExpectType Cancel Cancel.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType Cancel caver.transaction.cancel.decode('string') // $ExpectType FeeDelegatedCancel new FeeDelegatedCancel({}) // $ExpectType FeeDelegatedCancel FeeDelegatedCancel.create({}) // $ExpectType FeeDelegatedCancel FeeDelegatedCancel.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedCancel caver.transaction.feeDelegatedCancel.create({}) // $ExpectType FeeDelegatedCancel FeeDelegatedCancel.create('string') // $ExpectType FeeDelegatedCancel FeeDelegatedCancel.decode('string') // $ExpectType FeeDelegatedCancel FeeDelegatedCancel.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedCancel caver.transaction.feeDelegatedCancel.decode('string') // $ExpectType FeeDelegatedCancelWithRatio new FeeDelegatedCancelWithRatio({}) // $ExpectType FeeDelegatedCancelWithRatio FeeDelegatedCancelWithRatio.create({}) // $ExpectType FeeDelegatedCancelWithRatio FeeDelegatedCancelWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedCancelWithRatio caver.transaction.feeDelegatedCancelWithRatio.create({}) // $ExpectType FeeDelegatedCancelWithRatio FeeDelegatedCancelWithRatio.create('string') // $ExpectType FeeDelegatedCancelWithRatio FeeDelegatedCancelWithRatio.decode('string') // $ExpectType FeeDelegatedCancelWithRatio FeeDelegatedCancelWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedCancelWithRatio caver.transaction.feeDelegatedCancelWithRatio.decode('string') // $ExpectType ChainDataAnchoring new ChainDataAnchoring({}) // $ExpectType ChainDataAnchoring ChainDataAnchoring.create({}) // $ExpectType ChainDataAnchoring ChainDataAnchoring.create({}, caver.rpc.klay.klaytnCall) // $ExpectType ChainDataAnchoring caver.transaction.chainDataAnchoring.create({}) // $ExpectType ChainDataAnchoring ChainDataAnchoring.create('string') // $ExpectType ChainDataAnchoring ChainDataAnchoring.decode('string') // $ExpectType ChainDataAnchoring ChainDataAnchoring.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType ChainDataAnchoring caver.transaction.chainDataAnchoring.decode('string') // $ExpectType FeeDelegatedChainDataAnchoring new FeeDelegatedChainDataAnchoring({}) // $ExpectType FeeDelegatedChainDataAnchoring FeeDelegatedChainDataAnchoring.create({}) // $ExpectType FeeDelegatedChainDataAnchoring FeeDelegatedChainDataAnchoring.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedChainDataAnchoring caver.transaction.feeDelegatedChainDataAnchoring.create({}) // $ExpectType FeeDelegatedChainDataAnchoring FeeDelegatedChainDataAnchoring.create('string') // $ExpectType FeeDelegatedChainDataAnchoring FeeDelegatedChainDataAnchoring.decode('string') // $ExpectType FeeDelegatedChainDataAnchoring FeeDelegatedChainDataAnchoring.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedChainDataAnchoring caver.transaction.feeDelegatedChainDataAnchoring.decode('string') // $ExpectType FeeDelegatedChainDataAnchoringWithRatio new FeeDelegatedChainDataAnchoringWithRatio({}) // $ExpectType FeeDelegatedChainDataAnchoringWithRatio FeeDelegatedChainDataAnchoringWithRatio.create({}) // $ExpectType FeeDelegatedChainDataAnchoringWithRatio FeeDelegatedChainDataAnchoringWithRatio.create({}, caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedChainDataAnchoringWithRatio caver.transaction.feeDelegatedChainDataAnchoringWithRatio.create({}) // $ExpectType FeeDelegatedChainDataAnchoringWithRatio FeeDelegatedChainDataAnchoringWithRatio.create('string') // $ExpectType FeeDelegatedChainDataAnchoringWithRatio FeeDelegatedChainDataAnchoringWithRatio.decode('string') // $ExpectType FeeDelegatedChainDataAnchoringWithRatio FeeDelegatedChainDataAnchoringWithRatio.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType FeeDelegatedChainDataAnchoringWithRatio caver.transaction.feeDelegatedChainDataAnchoringWithRatio.decode('string') // $ExpectType EthereumAccessList new EthereumAccessList({}) // $ExpectType EthereumAccessList EthereumAccessList.create({}) // $ExpectType EthereumAccessList EthereumAccessList.create({}, caver.rpc.klay.klaytnCall) // $ExpectType EthereumAccessList caver.transaction.ethereumAccessList.create({}) // $ExpectType EthereumAccessList EthereumAccessList.create('string') // $ExpectType EthereumAccessList EthereumAccessList.decode('string') // $ExpectType EthereumAccessList EthereumAccessList.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType EthereumAccessList caver.transaction.ethereumAccessList.decode('string') // $ExpectType EthereumDynamicFee new EthereumDynamicFee({}) // $ExpectType EthereumDynamicFee EthereumDynamicFee.create({}) // $ExpectType EthereumDynamicFee EthereumDynamicFee.create({}, caver.rpc.klay.klaytnCall) // $ExpectType EthereumDynamicFee caver.transaction.ethereumDynamicFee.create({}) // $ExpectType EthereumDynamicFee EthereumDynamicFee.create('string') // $ExpectType EthereumDynamicFee EthereumDynamicFee.decode('string') // $ExpectType EthereumDynamicFee EthereumDynamicFee.decode('string', caver.rpc.klay.klaytnCall) // $ExpectType EthereumDynamicFee caver.transaction.ethereumDynamicFee.decode('string') const address = '0xde39030c0b51c01a83fc819fb79d47c90d6a3a60' const prvKeys = [ '0x99305a113c6182985e1ee6ec636ee5e8d0b93fcf3af7f72f8177938afca688f1', '0x97f2c7da1471122b0d0aa54d1ec6b0cc171c81d97e13d27c204d838f76c98310', ] const keyrings = { single: new SingleKeyring(address, prvKeys[0]), multiple: new MultipleKeyring(address, prvKeys), roleBased: new RoleBasedKeyring(address, [prvKeys, prvKeys, prvKeys]), } const sig = new SignatureData(['0x01', '0x', '0x']) const legacyTransaction = new LegacyTransaction({}) // $ExpectType string legacyTransaction.getRLPEncoding() // $ExpectType string legacyTransaction.getCommonRLPEncodingForSignature() // $ExpectType Promise legacyTransaction.sign('string') // $ExpectType Promise legacyTransaction.sign(keyrings.single) // $ExpectType Promise legacyTransaction.sign(keyrings.multiple) // $ExpectType Promise legacyTransaction.sign(keyrings.roleBased) // $ExpectType Promise legacyTransaction.sign('string', 0) // $ExpectType Promise legacyTransaction.sign(keyrings.single, 0) // $ExpectType Promise legacyTransaction.sign(keyrings.multiple, 0) // $ExpectType Promise legacyTransaction.sign(keyrings.roleBased, 0) // $ExpectType Promise legacyTransaction.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise legacyTransaction.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void legacyTransaction.appendSignatures(sig) // $ExpectType void legacyTransaction.appendSignatures([sig, sig]) // $ExpectType void legacyTransaction.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void legacyTransaction.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string legacyTransaction.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string legacyTransaction.getRawTransaction() // $ExpectType string legacyTransaction.getTransactionHash() // $ExpectType string legacyTransaction.getSenderTxHash() // $ExpectType string legacyTransaction.getRLPEncodingForSignature() // $ExpectType string[] legacyTransaction.recoverPublicKeys() // $ExpectType Promise legacyTransaction.fillTransaction() // $ExpectType void legacyTransaction.validateOptionalValues() // $ExpectType string legacyTransaction.type // $ExpectType string legacyTransaction.from // $ExpectType string legacyTransaction.nonce // $ExpectType string legacyTransaction.gas // $ExpectType string legacyTransaction.gasPrice // $ExpectType string legacyTransaction.chainId // $ExpectType SignatureData | SignatureData[] legacyTransaction.signatures // $ExpectType string legacyTransaction.to // $ExpectType string legacyTransaction.value // $ExpectType string legacyTransaction.input // $ExpectType string legacyTransaction.data // $ExpectType KlaytnCall legacyTransaction.klaytnCall const valueTransfer = new ValueTransfer({}) // $ExpectType string valueTransfer.getRLPEncoding() // $ExpectType string valueTransfer.getCommonRLPEncodingForSignature() // $ExpectType Promise valueTransfer.sign('string') // $ExpectType Promise valueTransfer.sign(keyrings.single) // $ExpectType Promise valueTransfer.sign(keyrings.multiple) // $ExpectType Promise valueTransfer.sign(keyrings.roleBased) // $ExpectType Promise valueTransfer.sign('string', 0) // $ExpectType Promise valueTransfer.sign(keyrings.single, 0) // $ExpectType Promise valueTransfer.sign(keyrings.multiple, 0) // $ExpectType Promise valueTransfer.sign(keyrings.roleBased, 0) // $ExpectType Promise valueTransfer.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransfer.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void valueTransfer.appendSignatures(sig) // $ExpectType void valueTransfer.appendSignatures([sig, sig]) // $ExpectType void valueTransfer.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void valueTransfer.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string valueTransfer.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string valueTransfer.getRawTransaction() // $ExpectType string valueTransfer.getTransactionHash() // $ExpectType string valueTransfer.getSenderTxHash() // $ExpectType string valueTransfer.getRLPEncodingForSignature() // $ExpectType string[] valueTransfer.recoverPublicKeys() // $ExpectType Promise valueTransfer.fillTransaction() // $ExpectType void valueTransfer.validateOptionalValues() // $ExpectType string valueTransfer.type // $ExpectType string valueTransfer.from // $ExpectType string valueTransfer.nonce // $ExpectType string valueTransfer.gas // $ExpectType string valueTransfer.gasPrice // $ExpectType string valueTransfer.chainId // $ExpectType SignatureData | SignatureData[] valueTransfer.signatures // $ExpectType string valueTransfer.to // $ExpectType string valueTransfer.value // $ExpectType KlaytnCall valueTransfer.klaytnCall const valueTransferMemo = new ValueTransferMemo({}) // $ExpectType string valueTransferMemo.getRLPEncoding() // $ExpectType string valueTransferMemo.getCommonRLPEncodingForSignature() // $ExpectType Promise valueTransferMemo.sign('string') // $ExpectType Promise valueTransferMemo.sign(keyrings.single) // $ExpectType Promise valueTransferMemo.sign(keyrings.multiple) // $ExpectType Promise valueTransferMemo.sign(keyrings.roleBased) // $ExpectType Promise valueTransferMemo.sign('string', 0) // $ExpectType Promise valueTransferMemo.sign(keyrings.single, 0) // $ExpectType Promise valueTransferMemo.sign(keyrings.multiple, 0) // $ExpectType Promise valueTransferMemo.sign(keyrings.roleBased, 0) // $ExpectType Promise valueTransferMemo.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise valueTransferMemo.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void valueTransferMemo.appendSignatures(sig) // $ExpectType void valueTransferMemo.appendSignatures([sig, sig]) // $ExpectType void valueTransferMemo.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void valueTransferMemo.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string valueTransferMemo.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string valueTransferMemo.getRawTransaction() // $ExpectType string valueTransferMemo.getTransactionHash() // $ExpectType string valueTransferMemo.getSenderTxHash() // $ExpectType string valueTransferMemo.getRLPEncodingForSignature() // $ExpectType string[] valueTransferMemo.recoverPublicKeys() // $ExpectType Promise valueTransferMemo.fillTransaction() // $ExpectType void valueTransferMemo.validateOptionalValues() // $ExpectType string valueTransferMemo.type // $ExpectType string valueTransferMemo.from // $ExpectType string valueTransferMemo.nonce // $ExpectType string valueTransferMemo.gas // $ExpectType string valueTransferMemo.gasPrice // $ExpectType string valueTransferMemo.chainId // $ExpectType SignatureData | SignatureData[] valueTransferMemo.signatures // $ExpectType string valueTransferMemo.to // $ExpectType string valueTransferMemo.value // $ExpectType string valueTransferMemo.input // $ExpectType string valueTransferMemo.data // $ExpectType KlaytnCall valueTransferMemo.klaytnCall const accountUpdate = new AccountUpdate({}) // $ExpectType string accountUpdate.getRLPEncoding() // $ExpectType string accountUpdate.getCommonRLPEncodingForSignature() // $ExpectType Promise accountUpdate.sign('string') // $ExpectType Promise accountUpdate.sign(keyrings.single) // $ExpectType Promise accountUpdate.sign(keyrings.multiple) // $ExpectType Promise accountUpdate.sign(keyrings.roleBased) // $ExpectType Promise accountUpdate.sign('string', 0) // $ExpectType Promise accountUpdate.sign(keyrings.single, 0) // $ExpectType Promise accountUpdate.sign(keyrings.multiple, 0) // $ExpectType Promise accountUpdate.sign(keyrings.roleBased, 0) // $ExpectType Promise accountUpdate.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise accountUpdate.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void accountUpdate.appendSignatures(sig) // $ExpectType void accountUpdate.appendSignatures([sig, sig]) // $ExpectType void accountUpdate.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void accountUpdate.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string accountUpdate.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string accountUpdate.getRawTransaction() // $ExpectType string accountUpdate.getTransactionHash() // $ExpectType string accountUpdate.getSenderTxHash() // $ExpectType string accountUpdate.getRLPEncodingForSignature() // $ExpectType string[] accountUpdate.recoverPublicKeys() // $ExpectType Promise accountUpdate.fillTransaction() // $ExpectType void accountUpdate.validateOptionalValues() // $ExpectType string accountUpdate.type // $ExpectType string accountUpdate.from // $ExpectType string accountUpdate.nonce // $ExpectType string accountUpdate.gas // $ExpectType string accountUpdate.gasPrice // $ExpectType string accountUpdate.chainId // $ExpectType SignatureData | SignatureData[] accountUpdate.signatures // $ExpectType Account accountUpdate.account // $ExpectType KlaytnCall accountUpdate.klaytnCall const smartContractDeploy = new SmartContractDeploy({}) // $ExpectType string smartContractDeploy.getRLPEncoding() // $ExpectType string smartContractDeploy.getCommonRLPEncodingForSignature() // $ExpectType Promise smartContractDeploy.sign('string') // $ExpectType Promise smartContractDeploy.sign(keyrings.single) // $ExpectType Promise smartContractDeploy.sign(keyrings.multiple) // $ExpectType Promise smartContractDeploy.sign(keyrings.roleBased) // $ExpectType Promise smartContractDeploy.sign('string', 0) // $ExpectType Promise smartContractDeploy.sign(keyrings.single, 0) // $ExpectType Promise smartContractDeploy.sign(keyrings.multiple, 0) // $ExpectType Promise smartContractDeploy.sign(keyrings.roleBased, 0) // $ExpectType Promise smartContractDeploy.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractDeploy.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void smartContractDeploy.appendSignatures(sig) // $ExpectType void smartContractDeploy.appendSignatures([sig, sig]) // $ExpectType void smartContractDeploy.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void smartContractDeploy.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string smartContractDeploy.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string smartContractDeploy.getRawTransaction() // $ExpectType string smartContractDeploy.getTransactionHash() // $ExpectType string smartContractDeploy.getSenderTxHash() // $ExpectType string smartContractDeploy.getRLPEncodingForSignature() // $ExpectType string[] smartContractDeploy.recoverPublicKeys() // $ExpectType Promise smartContractDeploy.fillTransaction() // $ExpectType void smartContractDeploy.validateOptionalValues() // $ExpectType string smartContractDeploy.type // $ExpectType string smartContractDeploy.from // $ExpectType string smartContractDeploy.nonce // $ExpectType string smartContractDeploy.gas // $ExpectType string smartContractDeploy.gasPrice // $ExpectType string smartContractDeploy.chainId // $ExpectType SignatureData | SignatureData[] smartContractDeploy.signatures // $ExpectType string smartContractDeploy.to // $ExpectType string smartContractDeploy.value // $ExpectType string smartContractDeploy.input // $ExpectType string smartContractDeploy.data // $ExpectType boolean smartContractDeploy.humanReadable // $ExpectType string smartContractDeploy.codeFormat // $ExpectType KlaytnCall smartContractDeploy.klaytnCall const smartContractExecution = new SmartContractExecution({}) // $ExpectType string smartContractExecution.getRLPEncoding() // $ExpectType string smartContractExecution.getCommonRLPEncodingForSignature() // $ExpectType Promise smartContractExecution.sign('string') // $ExpectType Promise smartContractExecution.sign(keyrings.single) // $ExpectType Promise smartContractExecution.sign(keyrings.multiple) // $ExpectType Promise smartContractExecution.sign(keyrings.roleBased) // $ExpectType Promise smartContractExecution.sign('string', 0) // $ExpectType Promise smartContractExecution.sign(keyrings.single, 0) // $ExpectType Promise smartContractExecution.sign(keyrings.multiple, 0) // $ExpectType Promise smartContractExecution.sign(keyrings.roleBased, 0) // $ExpectType Promise smartContractExecution.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise smartContractExecution.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void smartContractExecution.appendSignatures(sig) // $ExpectType void smartContractExecution.appendSignatures([sig, sig]) // $ExpectType void smartContractExecution.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void smartContractExecution.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string smartContractExecution.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string smartContractExecution.getRawTransaction() // $ExpectType string smartContractExecution.getTransactionHash() // $ExpectType string smartContractExecution.getSenderTxHash() // $ExpectType string smartContractExecution.getRLPEncodingForSignature() // $ExpectType string[] smartContractExecution.recoverPublicKeys() // $ExpectType Promise smartContractExecution.fillTransaction() // $ExpectType void smartContractExecution.validateOptionalValues() // $ExpectType string smartContractExecution.type // $ExpectType string smartContractExecution.from // $ExpectType string smartContractExecution.nonce // $ExpectType string smartContractExecution.gas // $ExpectType string smartContractExecution.gasPrice // $ExpectType string smartContractExecution.chainId // $ExpectType SignatureData | SignatureData[] smartContractExecution.signatures // $ExpectType string smartContractExecution.to // $ExpectType string smartContractExecution.value // $ExpectType string smartContractExecution.input // $ExpectType string smartContractExecution.data // $ExpectType KlaytnCall smartContractExecution.klaytnCall const cancel = new Cancel({}) // $ExpectType string cancel.getRLPEncoding() // $ExpectType string cancel.getCommonRLPEncodingForSignature() // $ExpectType Promise cancel.sign('string') // $ExpectType Promise cancel.sign(keyrings.single) // $ExpectType Promise cancel.sign(keyrings.multiple) // $ExpectType Promise cancel.sign(keyrings.roleBased) // $ExpectType Promise cancel.sign('string', 0) // $ExpectType Promise cancel.sign(keyrings.single, 0) // $ExpectType Promise cancel.sign(keyrings.multiple, 0) // $ExpectType Promise cancel.sign(keyrings.roleBased, 0) // $ExpectType Promise cancel.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise cancel.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void cancel.appendSignatures(sig) // $ExpectType void cancel.appendSignatures([sig, sig]) // $ExpectType void cancel.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void cancel.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string cancel.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string cancel.getRawTransaction() // $ExpectType string cancel.getTransactionHash() // $ExpectType string cancel.getSenderTxHash() // $ExpectType string cancel.getRLPEncodingForSignature() // $ExpectType string[] cancel.recoverPublicKeys() // $ExpectType Promise cancel.fillTransaction() // $ExpectType void cancel.validateOptionalValues() // $ExpectType string cancel.type // $ExpectType string cancel.from // $ExpectType string cancel.nonce // $ExpectType string cancel.gas // $ExpectType string cancel.gasPrice // $ExpectType string cancel.chainId // $ExpectType SignatureData | SignatureData[] cancel.signatures // $ExpectType KlaytnCall cancel.klaytnCall const chainDataAnchoring = new ChainDataAnchoring({}) // $ExpectType string chainDataAnchoring.getRLPEncoding() // $ExpectType string chainDataAnchoring.getCommonRLPEncodingForSignature() // $ExpectType Promise chainDataAnchoring.sign('string') // $ExpectType Promise chainDataAnchoring.sign(keyrings.single) // $ExpectType Promise chainDataAnchoring.sign(keyrings.multiple) // $ExpectType Promise chainDataAnchoring.sign(keyrings.roleBased) // $ExpectType Promise chainDataAnchoring.sign('string', 0) // $ExpectType Promise chainDataAnchoring.sign(keyrings.single, 0) // $ExpectType Promise chainDataAnchoring.sign(keyrings.multiple, 0) // $ExpectType Promise chainDataAnchoring.sign(keyrings.roleBased, 0) // $ExpectType Promise chainDataAnchoring.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise chainDataAnchoring.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void chainDataAnchoring.appendSignatures(sig) // $ExpectType void chainDataAnchoring.appendSignatures([sig, sig]) // $ExpectType void chainDataAnchoring.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void chainDataAnchoring.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string chainDataAnchoring.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string chainDataAnchoring.getRawTransaction() // $ExpectType string chainDataAnchoring.getTransactionHash() // $ExpectType string chainDataAnchoring.getSenderTxHash() // $ExpectType string chainDataAnchoring.getRLPEncodingForSignature() // $ExpectType string[] chainDataAnchoring.recoverPublicKeys() // $ExpectType Promise chainDataAnchoring.fillTransaction() // $ExpectType void chainDataAnchoring.validateOptionalValues() // $ExpectType string chainDataAnchoring.type // $ExpectType string chainDataAnchoring.from // $ExpectType string chainDataAnchoring.nonce // $ExpectType string chainDataAnchoring.gas // $ExpectType string chainDataAnchoring.gasPrice // $ExpectType string chainDataAnchoring.chainId // $ExpectType SignatureData | SignatureData[] chainDataAnchoring.signatures // $ExpectType string chainDataAnchoring.input // $ExpectType KlaytnCall chainDataAnchoring.klaytnCall const feeDelegatedValueTransfer = new FeeDelegatedValueTransfer({}) // $ExpectType string feeDelegatedValueTransfer.getRLPEncoding() // $ExpectType string feeDelegatedValueTransfer.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedValueTransfer.sign('string') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.single) // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransfer.sign('string', 0) // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransfer.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer('string') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransfer.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedValueTransfer.appendSignatures(sig) // $ExpectType void feeDelegatedValueTransfer.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransfer.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransfer.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedValueTransfer.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedValueTransfer.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransfer.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransfer.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedValueTransfer.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedValueTransfer.getRawTransaction() // $ExpectType string feeDelegatedValueTransfer.getTransactionHash() // $ExpectType string feeDelegatedValueTransfer.getSenderTxHash() // $ExpectType string feeDelegatedValueTransfer.getRLPEncodingForSignature() // $ExpectType string feeDelegatedValueTransfer.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedValueTransfer.recoverPublicKeys() // $ExpectType string[] feeDelegatedValueTransfer.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedValueTransfer.fillTransaction() // $ExpectType void feeDelegatedValueTransfer.validateOptionalValues() // $ExpectType string feeDelegatedValueTransfer.type // $ExpectType string feeDelegatedValueTransfer.from // $ExpectType string feeDelegatedValueTransfer.nonce // $ExpectType string feeDelegatedValueTransfer.gas // $ExpectType string feeDelegatedValueTransfer.gasPrice // $ExpectType string feeDelegatedValueTransfer.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedValueTransfer.signatures // $ExpectType string feeDelegatedValueTransfer.to // $ExpectType string feeDelegatedValueTransfer.value // $ExpectType string feeDelegatedValueTransfer.feePayer // $ExpectType SignatureData[] feeDelegatedValueTransfer.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedValueTransfer.klaytnCall const feeDelegatedValueTransferMemo = new FeeDelegatedValueTransferMemo({}) // $ExpectType string feeDelegatedValueTransferMemo.getRLPEncoding() // $ExpectType string feeDelegatedValueTransferMemo.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedValueTransferMemo.sign('string') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferMemo.sign('string', 0) // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer('string') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemo.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedValueTransferMemo.appendSignatures(sig) // $ExpectType void feeDelegatedValueTransferMemo.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferMemo.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferMemo.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedValueTransferMemo.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedValueTransferMemo.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferMemo.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferMemo.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedValueTransferMemo.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedValueTransferMemo.getRawTransaction() // $ExpectType string feeDelegatedValueTransferMemo.getTransactionHash() // $ExpectType string feeDelegatedValueTransferMemo.getSenderTxHash() // $ExpectType string feeDelegatedValueTransferMemo.getRLPEncodingForSignature() // $ExpectType string feeDelegatedValueTransferMemo.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedValueTransferMemo.recoverPublicKeys() // $ExpectType string[] feeDelegatedValueTransferMemo.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedValueTransferMemo.fillTransaction() // $ExpectType void feeDelegatedValueTransferMemo.validateOptionalValues() // $ExpectType string feeDelegatedValueTransferMemo.type // $ExpectType string feeDelegatedValueTransferMemo.from // $ExpectType string feeDelegatedValueTransferMemo.nonce // $ExpectType string feeDelegatedValueTransferMemo.gas // $ExpectType string feeDelegatedValueTransferMemo.gasPrice // $ExpectType string feeDelegatedValueTransferMemo.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedValueTransferMemo.signatures // $ExpectType string feeDelegatedValueTransferMemo.to // $ExpectType string feeDelegatedValueTransferMemo.value // $ExpectType string feeDelegatedValueTransferMemo.input // $ExpectType string feeDelegatedValueTransferMemo.data // $ExpectType string feeDelegatedValueTransferMemo.feePayer // $ExpectType SignatureData[] feeDelegatedValueTransferMemo.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedValueTransferMemo.klaytnCall const feeDelegatedAccountUpdate = new FeeDelegatedAccountUpdate({}) // $ExpectType string feeDelegatedAccountUpdate.getRLPEncoding() // $ExpectType string feeDelegatedAccountUpdate.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedAccountUpdate.sign('string') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.single) // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedAccountUpdate.sign('string', 0) // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedAccountUpdate.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer('string') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdate.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedAccountUpdate.appendSignatures(sig) // $ExpectType void feeDelegatedAccountUpdate.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedAccountUpdate.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedAccountUpdate.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedAccountUpdate.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedAccountUpdate.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedAccountUpdate.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedAccountUpdate.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedAccountUpdate.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedAccountUpdate.getRawTransaction() // $ExpectType string feeDelegatedAccountUpdate.getTransactionHash() // $ExpectType string feeDelegatedAccountUpdate.getSenderTxHash() // $ExpectType string feeDelegatedAccountUpdate.getRLPEncodingForSignature() // $ExpectType string feeDelegatedAccountUpdate.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedAccountUpdate.recoverPublicKeys() // $ExpectType string[] feeDelegatedAccountUpdate.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedAccountUpdate.fillTransaction() // $ExpectType void feeDelegatedAccountUpdate.validateOptionalValues() // $ExpectType string feeDelegatedAccountUpdate.type // $ExpectType string feeDelegatedAccountUpdate.from // $ExpectType string feeDelegatedAccountUpdate.nonce // $ExpectType string feeDelegatedAccountUpdate.gas // $ExpectType string feeDelegatedAccountUpdate.gasPrice // $ExpectType string feeDelegatedAccountUpdate.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedAccountUpdate.signatures // $ExpectType Account feeDelegatedAccountUpdate.account // $ExpectType string feeDelegatedAccountUpdate.feePayer // $ExpectType SignatureData[] feeDelegatedAccountUpdate.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedAccountUpdate.klaytnCall const feeDelegatedSmartContractDeploy = new FeeDelegatedSmartContractDeploy({}) // $ExpectType string feeDelegatedSmartContractDeploy.getRLPEncoding() // $ExpectType string feeDelegatedSmartContractDeploy.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedSmartContractDeploy.sign('string') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign('string', 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer('string') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeploy.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedSmartContractDeploy.appendSignatures(sig) // $ExpectType void feeDelegatedSmartContractDeploy.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractDeploy.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractDeploy.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedSmartContractDeploy.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedSmartContractDeploy.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractDeploy.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractDeploy.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedSmartContractDeploy.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedSmartContractDeploy.getRawTransaction() // $ExpectType string feeDelegatedSmartContractDeploy.getTransactionHash() // $ExpectType string feeDelegatedSmartContractDeploy.getSenderTxHash() // $ExpectType string feeDelegatedSmartContractDeploy.getRLPEncodingForSignature() // $ExpectType string feeDelegatedSmartContractDeploy.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedSmartContractDeploy.recoverPublicKeys() // $ExpectType string[] feeDelegatedSmartContractDeploy.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedSmartContractDeploy.fillTransaction() // $ExpectType void feeDelegatedSmartContractDeploy.validateOptionalValues() // $ExpectType string feeDelegatedSmartContractDeploy.type // $ExpectType string feeDelegatedSmartContractDeploy.from // $ExpectType string feeDelegatedSmartContractDeploy.nonce // $ExpectType string feeDelegatedSmartContractDeploy.gas // $ExpectType string feeDelegatedSmartContractDeploy.gasPrice // $ExpectType string feeDelegatedSmartContractDeploy.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedSmartContractDeploy.signatures // $ExpectType string feeDelegatedSmartContractDeploy.to // $ExpectType string feeDelegatedSmartContractDeploy.value // $ExpectType string feeDelegatedSmartContractDeploy.input // $ExpectType string feeDelegatedSmartContractDeploy.data // $ExpectType boolean feeDelegatedSmartContractDeploy.humanReadable // $ExpectType string feeDelegatedSmartContractDeploy.codeFormat // $ExpectType string feeDelegatedSmartContractDeploy.feePayer // $ExpectType SignatureData[] feeDelegatedSmartContractDeploy.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedSmartContractDeploy.klaytnCall const feeDelegatedSmartContractExecution = new FeeDelegatedSmartContractExecution({}) // $ExpectType string feeDelegatedSmartContractExecution.getRLPEncoding() // $ExpectType string feeDelegatedSmartContractExecution.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedSmartContractExecution.sign('string') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractExecution.sign('string', 0) // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer('string') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecution.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedSmartContractExecution.appendSignatures(sig) // $ExpectType void feeDelegatedSmartContractExecution.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractExecution.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractExecution.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedSmartContractExecution.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedSmartContractExecution.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractExecution.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractExecution.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedSmartContractExecution.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedSmartContractExecution.getRawTransaction() // $ExpectType string feeDelegatedSmartContractExecution.getTransactionHash() // $ExpectType string feeDelegatedSmartContractExecution.getSenderTxHash() // $ExpectType string feeDelegatedSmartContractExecution.getRLPEncodingForSignature() // $ExpectType string feeDelegatedSmartContractExecution.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedSmartContractExecution.recoverPublicKeys() // $ExpectType string[] feeDelegatedSmartContractExecution.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedSmartContractExecution.fillTransaction() // $ExpectType void feeDelegatedSmartContractExecution.validateOptionalValues() // $ExpectType string feeDelegatedSmartContractExecution.type // $ExpectType string feeDelegatedSmartContractExecution.from // $ExpectType string feeDelegatedSmartContractExecution.nonce // $ExpectType string feeDelegatedSmartContractExecution.gas // $ExpectType string feeDelegatedSmartContractExecution.gasPrice // $ExpectType string feeDelegatedSmartContractExecution.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedSmartContractExecution.signatures // $ExpectType string feeDelegatedSmartContractExecution.to // $ExpectType string feeDelegatedSmartContractExecution.value // $ExpectType string feeDelegatedSmartContractExecution.input // $ExpectType string feeDelegatedSmartContractExecution.data // $ExpectType string feeDelegatedSmartContractExecution.feePayer // $ExpectType SignatureData[] feeDelegatedSmartContractExecution.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedSmartContractExecution.klaytnCall const feeDelegatedCancel = new FeeDelegatedCancel({}) // $ExpectType string feeDelegatedCancel.getRLPEncoding() // $ExpectType string feeDelegatedCancel.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedCancel.sign('string') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.single) // $ExpectType Promise feeDelegatedCancel.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedCancel.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedCancel.sign('string', 0) // $ExpectType Promise feeDelegatedCancel.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedCancel.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedCancel.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedCancel.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer('string') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedCancel.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancel.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedCancel.appendSignatures(sig) // $ExpectType void feeDelegatedCancel.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedCancel.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedCancel.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedCancel.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedCancel.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedCancel.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedCancel.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedCancel.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedCancel.getRawTransaction() // $ExpectType string feeDelegatedCancel.getTransactionHash() // $ExpectType string feeDelegatedCancel.getSenderTxHash() // $ExpectType string feeDelegatedCancel.getRLPEncodingForSignature() // $ExpectType string feeDelegatedCancel.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedCancel.recoverPublicKeys() // $ExpectType string[] feeDelegatedCancel.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedCancel.fillTransaction() // $ExpectType void feeDelegatedCancel.validateOptionalValues() // $ExpectType string feeDelegatedCancel.type // $ExpectType string feeDelegatedCancel.from // $ExpectType string feeDelegatedCancel.nonce // $ExpectType string feeDelegatedCancel.gas // $ExpectType string feeDelegatedCancel.gasPrice // $ExpectType string feeDelegatedCancel.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedCancel.signatures // $ExpectType string feeDelegatedCancel.feePayer // $ExpectType SignatureData[] feeDelegatedCancel.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedCancel.klaytnCall const feeDelegatedChainDataAnchoring = new FeeDelegatedChainDataAnchoring({}) // $ExpectType string feeDelegatedChainDataAnchoring.getRLPEncoding() // $ExpectType string feeDelegatedChainDataAnchoring.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedChainDataAnchoring.sign('string') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.single) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign('string', 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer('string') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoring.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedChainDataAnchoring.appendSignatures(sig) // $ExpectType void feeDelegatedChainDataAnchoring.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedChainDataAnchoring.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedChainDataAnchoring.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedChainDataAnchoring.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedChainDataAnchoring.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedChainDataAnchoring.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedChainDataAnchoring.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedChainDataAnchoring.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedChainDataAnchoring.getRawTransaction() // $ExpectType string feeDelegatedChainDataAnchoring.getTransactionHash() // $ExpectType string feeDelegatedChainDataAnchoring.getSenderTxHash() // $ExpectType string feeDelegatedChainDataAnchoring.getRLPEncodingForSignature() // $ExpectType string feeDelegatedChainDataAnchoring.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedChainDataAnchoring.recoverPublicKeys() // $ExpectType string[] feeDelegatedChainDataAnchoring.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedChainDataAnchoring.fillTransaction() // $ExpectType void feeDelegatedChainDataAnchoring.validateOptionalValues() // $ExpectType string feeDelegatedChainDataAnchoring.type // $ExpectType string feeDelegatedChainDataAnchoring.from // $ExpectType string feeDelegatedChainDataAnchoring.nonce // $ExpectType string feeDelegatedChainDataAnchoring.gas // $ExpectType string feeDelegatedChainDataAnchoring.gasPrice // $ExpectType string feeDelegatedChainDataAnchoring.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedChainDataAnchoring.signatures // $ExpectType string feeDelegatedChainDataAnchoring.input // $ExpectType string feeDelegatedChainDataAnchoring.feePayer // $ExpectType SignatureData[] feeDelegatedChainDataAnchoring.feePayerSignatures // $ExpectType KlaytnCall feeDelegatedChainDataAnchoring.klaytnCall const feeDelegatedValueTransferWithRatio = new FeeDelegatedValueTransferWithRatio({}) // $ExpectType string feeDelegatedValueTransferWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedValueTransferWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign('string') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedValueTransferWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedValueTransferWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedValueTransferWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedValueTransferWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedValueTransferWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedValueTransferWithRatio.getRawTransaction() // $ExpectType string feeDelegatedValueTransferWithRatio.getTransactionHash() // $ExpectType string feeDelegatedValueTransferWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedValueTransferWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedValueTransferWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedValueTransferWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedValueTransferWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedValueTransferWithRatio.fillTransaction() // $ExpectType void feeDelegatedValueTransferWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedValueTransferWithRatio.type // $ExpectType string feeDelegatedValueTransferWithRatio.from // $ExpectType string feeDelegatedValueTransferWithRatio.nonce // $ExpectType string feeDelegatedValueTransferWithRatio.gas // $ExpectType string feeDelegatedValueTransferWithRatio.gasPrice // $ExpectType string feeDelegatedValueTransferWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedValueTransferWithRatio.signatures // $ExpectType string feeDelegatedValueTransferWithRatio.to // $ExpectType string feeDelegatedValueTransferWithRatio.value // $ExpectType string feeDelegatedValueTransferWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedValueTransferWithRatio.feePayerSignatures // $ExpectType string feeDelegatedValueTransferWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedValueTransferWithRatio.klaytnCall const feeDelegatedValueTransferMemoWithRatio = new FeeDelegatedValueTransferMemoWithRatio({}) // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign('string') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedValueTransferMemoWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedValueTransferMemoWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getRawTransaction() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getTransactionHash() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedValueTransferMemoWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedValueTransferMemoWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedValueTransferMemoWithRatio.fillTransaction() // $ExpectType void feeDelegatedValueTransferMemoWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedValueTransferMemoWithRatio.type // $ExpectType string feeDelegatedValueTransferMemoWithRatio.from // $ExpectType string feeDelegatedValueTransferMemoWithRatio.nonce // $ExpectType string feeDelegatedValueTransferMemoWithRatio.gas // $ExpectType string feeDelegatedValueTransferMemoWithRatio.gasPrice // $ExpectType string feeDelegatedValueTransferMemoWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedValueTransferMemoWithRatio.signatures // $ExpectType string feeDelegatedValueTransferMemoWithRatio.to // $ExpectType string feeDelegatedValueTransferMemoWithRatio.value // $ExpectType string feeDelegatedValueTransferMemoWithRatio.input // $ExpectType string feeDelegatedValueTransferMemoWithRatio.data // $ExpectType string feeDelegatedValueTransferMemoWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedValueTransferMemoWithRatio.feePayerSignatures // $ExpectType string feeDelegatedValueTransferMemoWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedValueTransferMemoWithRatio.klaytnCall const feeDelegatedAccountUpdateWithRatio = new FeeDelegatedAccountUpdateWithRatio({}) // $ExpectType string feeDelegatedAccountUpdateWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedAccountUpdateWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign('string') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedAccountUpdateWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedAccountUpdateWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedAccountUpdateWithRatio.getRawTransaction() // $ExpectType string feeDelegatedAccountUpdateWithRatio.getTransactionHash() // $ExpectType string feeDelegatedAccountUpdateWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedAccountUpdateWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedAccountUpdateWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedAccountUpdateWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedAccountUpdateWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedAccountUpdateWithRatio.fillTransaction() // $ExpectType void feeDelegatedAccountUpdateWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedAccountUpdateWithRatio.type // $ExpectType string feeDelegatedAccountUpdateWithRatio.from // $ExpectType string feeDelegatedAccountUpdateWithRatio.nonce // $ExpectType string feeDelegatedAccountUpdateWithRatio.gas // $ExpectType string feeDelegatedAccountUpdateWithRatio.gasPrice // $ExpectType string feeDelegatedAccountUpdateWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedAccountUpdateWithRatio.signatures // $ExpectType Account feeDelegatedAccountUpdateWithRatio.account // $ExpectType string feeDelegatedAccountUpdateWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedAccountUpdateWithRatio.feePayerSignatures // $ExpectType string feeDelegatedAccountUpdateWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedAccountUpdateWithRatio.klaytnCall const feeDelegatedSmartContractDeployWithRatio = new FeeDelegatedSmartContractDeployWithRatio({}) // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign('string') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractDeployWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedSmartContractDeployWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getRawTransaction() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getTransactionHash() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedSmartContractDeployWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedSmartContractDeployWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedSmartContractDeployWithRatio.fillTransaction() // $ExpectType void feeDelegatedSmartContractDeployWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedSmartContractDeployWithRatio.type // $ExpectType string feeDelegatedSmartContractDeployWithRatio.from // $ExpectType string feeDelegatedSmartContractDeployWithRatio.nonce // $ExpectType string feeDelegatedSmartContractDeployWithRatio.gas // $ExpectType string feeDelegatedSmartContractDeployWithRatio.gasPrice // $ExpectType string feeDelegatedSmartContractDeployWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedSmartContractDeployWithRatio.signatures // $ExpectType string feeDelegatedSmartContractDeployWithRatio.to // $ExpectType string feeDelegatedSmartContractDeployWithRatio.value // $ExpectType string feeDelegatedSmartContractDeployWithRatio.input // $ExpectType string feeDelegatedSmartContractDeployWithRatio.data // $ExpectType boolean feeDelegatedSmartContractDeployWithRatio.humanReadable // $ExpectType string feeDelegatedSmartContractDeployWithRatio.codeFormat // $ExpectType string feeDelegatedSmartContractDeployWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedSmartContractDeployWithRatio.feePayerSignatures // $ExpectType string feeDelegatedSmartContractDeployWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedSmartContractDeployWithRatio.klaytnCall const feeDelegatedSmartContractExecutionWithRatio = new FeeDelegatedSmartContractExecutionWithRatio({}) // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign('string') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getRawTransaction() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getTransactionHash() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedSmartContractExecutionWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedSmartContractExecutionWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedSmartContractExecutionWithRatio.fillTransaction() // $ExpectType void feeDelegatedSmartContractExecutionWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.type // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.from // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.nonce // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.gas // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.gasPrice // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedSmartContractExecutionWithRatio.signatures // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.to // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.value // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.input // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.data // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedSmartContractExecutionWithRatio.feePayerSignatures // $ExpectType string feeDelegatedSmartContractExecutionWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedSmartContractExecutionWithRatio.klaytnCall const feeDelegatedCancelWithRatio = new FeeDelegatedCancelWithRatio({}) // $ExpectType string feeDelegatedCancelWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedCancelWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedCancelWithRatio.sign('string') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedCancelWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedCancelWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedCancelWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedCancelWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedCancelWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedCancelWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedCancelWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedCancelWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedCancelWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedCancelWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedCancelWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedCancelWithRatio.getRawTransaction() // $ExpectType string feeDelegatedCancelWithRatio.getTransactionHash() // $ExpectType string feeDelegatedCancelWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedCancelWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedCancelWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedCancelWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedCancelWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedCancelWithRatio.fillTransaction() // $ExpectType void feeDelegatedCancelWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedCancelWithRatio.type // $ExpectType string feeDelegatedCancelWithRatio.from // $ExpectType string feeDelegatedCancelWithRatio.nonce // $ExpectType string feeDelegatedCancelWithRatio.gas // $ExpectType string feeDelegatedCancelWithRatio.gasPrice // $ExpectType string feeDelegatedCancelWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedCancelWithRatio.signatures // $ExpectType string feeDelegatedCancelWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedCancelWithRatio.feePayerSignatures // $ExpectType string feeDelegatedCancelWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedCancelWithRatio.klaytnCall const feeDelegatedChainDataAnchoringWithRatio = new FeeDelegatedChainDataAnchoringWithRatio({}) // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getRLPEncoding() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getCommonRLPEncodingForSignature() // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign('string') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.single) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.multiple) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.roleBased) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign('string', 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.single, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer('string') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.single) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.multiple) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.roleBased) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer('string', 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.single, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.multiple, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.roleBased, 0) // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer('string', (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.single, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.multiple, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.roleBased, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer('string', 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.single, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.multiple, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.signAsFeePayer(keyrings.roleBased, 0, (tx: AbstractFeeDelegatedTransaction) => '') // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendSignatures(sig) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendSignatures([sig, sig]) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendFeePayerSignatures(sig) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendFeePayerSignatures([sig, sig]) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendFeePayerSignatures(['0x01', '0x', '0x']) // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.appendFeePayerSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getRawTransaction() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getTransactionHash() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getSenderTxHash() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getRLPEncodingForSignature() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.getRLPEncodingForFeePayerSignature() // $ExpectType string[] feeDelegatedChainDataAnchoringWithRatio.recoverPublicKeys() // $ExpectType string[] feeDelegatedChainDataAnchoringWithRatio.recoverFeePayerPublicKeys() // $ExpectType Promise feeDelegatedChainDataAnchoringWithRatio.fillTransaction() // $ExpectType void feeDelegatedChainDataAnchoringWithRatio.validateOptionalValues() // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.type // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.from // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.nonce // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.gas // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.gasPrice // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.chainId // $ExpectType SignatureData | SignatureData[] feeDelegatedChainDataAnchoringWithRatio.signatures // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.input // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.feePayer // $ExpectType SignatureData[] feeDelegatedChainDataAnchoringWithRatio.feePayerSignatures // $ExpectType string feeDelegatedChainDataAnchoringWithRatio.feeRatio // $ExpectType KlaytnCall feeDelegatedChainDataAnchoringWithRatio.klaytnCall const ethereumAccessList = new EthereumAccessList({}) // $ExpectType string ethereumAccessList.getRLPEncoding() // $ExpectType string ethereumAccessList.getCommonRLPEncodingForSignature() // $ExpectType Promise ethereumAccessList.sign('string') // $ExpectType Promise ethereumAccessList.sign(keyrings.single) // $ExpectType Promise ethereumAccessList.sign(keyrings.multiple) // $ExpectType Promise ethereumAccessList.sign(keyrings.roleBased) // $ExpectType Promise ethereumAccessList.sign('string', 0) // $ExpectType Promise ethereumAccessList.sign(keyrings.single, 0) // $ExpectType Promise ethereumAccessList.sign(keyrings.multiple, 0) // $ExpectType Promise ethereumAccessList.sign(keyrings.roleBased, 0) // $ExpectType Promise ethereumAccessList.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumAccessList.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void ethereumAccessList.appendSignatures(sig) // $ExpectType void ethereumAccessList.appendSignatures([sig, sig]) // $ExpectType void ethereumAccessList.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void ethereumAccessList.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string ethereumAccessList.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string ethereumAccessList.getRawTransaction() // $ExpectType string ethereumAccessList.getTransactionHash() // $ExpectType string ethereumAccessList.getSenderTxHash() // $ExpectType string ethereumAccessList.getRLPEncodingForSignature() // $ExpectType string[] ethereumAccessList.recoverPublicKeys() // $ExpectType Promise ethereumAccessList.fillTransaction() // $ExpectType void ethereumAccessList.validateOptionalValues() // $ExpectType string ethereumAccessList.type // $ExpectType string ethereumAccessList.from // $ExpectType string ethereumAccessList.nonce // $ExpectType string ethereumAccessList.gas // $ExpectType string ethereumAccessList.gasPrice // $ExpectType string ethereumAccessList.chainId // $ExpectType SignatureData | SignatureData[] ethereumAccessList.signatures // $ExpectType string ethereumAccessList.to // $ExpectType string ethereumAccessList.value // $ExpectType string ethereumAccessList.input // $ExpectType string ethereumAccessList.data // $ExpectType AccessList ethereumAccessList.accessList // $ExpectType KlaytnCall ethereumAccessList.klaytnCall const ethereumDynamicFee = new EthereumDynamicFee({}) // $ExpectType string ethereumDynamicFee.getRLPEncoding() // $ExpectType string ethereumDynamicFee.getCommonRLPEncodingForSignature() // $ExpectType Promise ethereumDynamicFee.sign('string') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.single) // $ExpectType Promise ethereumDynamicFee.sign(keyrings.multiple) // $ExpectType Promise ethereumDynamicFee.sign(keyrings.roleBased) // $ExpectType Promise ethereumDynamicFee.sign('string', 0) // $ExpectType Promise ethereumDynamicFee.sign(keyrings.single, 0) // $ExpectType Promise ethereumDynamicFee.sign(keyrings.multiple, 0) // $ExpectType Promise ethereumDynamicFee.sign(keyrings.roleBased, 0) // $ExpectType Promise ethereumDynamicFee.sign('string', (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.single, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.multiple, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.roleBased, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign('string', 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.single, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.multiple, 0, (tx: AbstractTransaction) => '') // $ExpectType Promise ethereumDynamicFee.sign(keyrings.roleBased, 0, (tx: AbstractTransaction) => '') // $ExpectType void ethereumDynamicFee.appendSignatures(sig) // $ExpectType void ethereumDynamicFee.appendSignatures([sig, sig]) // $ExpectType void ethereumDynamicFee.appendSignatures(['0x01', '0x', '0x']) // $ExpectType void ethereumDynamicFee.appendSignatures([['0x01', '0x', '0x'], ['0x01', '0x', '0x']]) // $ExpectType string ethereumDynamicFee.combineSignedRawTransactions(['rlpEncoded1', 'rlpEncoded2']) // $ExpectType string ethereumDynamicFee.getRawTransaction() // $ExpectType string ethereumDynamicFee.getTransactionHash() // $ExpectType string ethereumDynamicFee.getSenderTxHash() // $ExpectType string ethereumDynamicFee.getRLPEncodingForSignature() // $ExpectType string[] ethereumDynamicFee.recoverPublicKeys() // $ExpectType Promise ethereumDynamicFee.fillTransaction() // $ExpectType void ethereumDynamicFee.validateOptionalValues() // $ExpectType string ethereumDynamicFee.type // $ExpectType string ethereumDynamicFee.from // $ExpectType string ethereumDynamicFee.nonce // $ExpectType string ethereumDynamicFee.gas // $ExpectType string ethereumDynamicFee.gasPrice // $ExpectType string ethereumDynamicFee.chainId // $ExpectType SignatureData | SignatureData[] ethereumDynamicFee.signatures // $ExpectType string ethereumDynamicFee.to // $ExpectType string ethereumDynamicFee.value // $ExpectType string ethereumDynamicFee.input // $ExpectType string ethereumDynamicFee.data // $ExpectType AccessList ethereumDynamicFee.accessList // $ExpectType string ethereumDynamicFee.maxFeePerGas // $ExpectType string ethereumDynamicFee.maxPriorityFeePerGas // $ExpectType KlaytnCall ethereumDynamicFee.klaytnCall