From 1cf8aa66133fcf119e0e8d2bed0893502646c59a Mon Sep 17 00:00:00 2001 From: bgodlin <37313677+bgodlin@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:11:31 +0100 Subject: [PATCH] Readme fixed (#61) --- .../kava-evm-cosmos-multi-chain/README.md | 29 +++++++++---------- 1 file changed, 13 insertions(+), 16 deletions(-) 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 } } }