diff --git a/Multi-Chain/kava-evm-cosmos-multi-chain/README.md b/Multi-Chain/kava-evm-cosmos-multi-chain/README.md index ca2a59801..dbbafd08e 100644 --- a/Multi-Chain/kava-evm-cosmos-multi-chain/README.md +++ b/Multi-Chain/kava-evm-cosmos-multi-chain/README.md @@ -40,33 +40,30 @@ For this project, you can try to query with the following GraphQL code to get a ```graphql query { - transactions { + cosmosTransfers(first: 1) { nodes { id - value - to - from - contractAddress + blockHeight + txHash + fromAddressId + toAddressId + amount + denomination } } - approvals { + eVMTransfers(first: 1) { nodes { id value - owner - spender - contractAddress + fromId + contractAddressId } } - transfers { + addresses(first: 1) { nodes { id - blockHeight - txHash - fromAddress - toAddress - amount - denomination + cosmosAddress + evmAddress } } }