import { BlockchainStorageService, CancelablePromise } from '@tatumio/api-client' import { Blockchain } from '@tatumio/shared-core' export const egldRecord = () => { return { /** * Get log record *

1 credit per API call.


Gets log data from blockchain.

* @param chain The blockchain to get the log record from * @param id ID of the log record / transaction on the blockchain * @returns any OK * @throws ApiError */ getLog(id: string): CancelablePromise<{ /** * Data stored in the record. */ data: string }> { return BlockchainStorageService.getLog(Blockchain.EGLD as any, id) }, } }