import { TatumEthSDK } from '@tatumio/eth' import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing-common' const ethSDK = TatumEthSDK({ apiKey: REPLACE_ME_WITH_TATUM_API_KEY }) export async function ethLogRecordExample() { const { txId } = await ethSDK.record.storeLog({ data: 'record', fromPrivateKey: 'PRIVATE KEY', }) // @TODO OPENAPI BUG - only ETH const { data } = await ethSDK.record.getLog(txId) }