How to get coin transfers by wallet(s)
Prerequisites
Before getting started, make sure you have the following ready:
- Node v.14+ or Python
- NPM/Yarn or Pip
Step 1: Setup Moralis
First register your Moralis account and get your Moralis API Key.
Once you have your Moralis API Key, install the Moralis SDK in your project.
- npm
- yarn
- pnpm
- pip
npm install moralis
yarn add moralis
pnpm add moralis
pip install moralis
Step 2: Get Coin Transfers By Wallet(s)
In order to get coin transfers by wallet(s), Moralis provides you a getCoinTransfersByOwnerAddresses endpoint to do so.
Here you'll need three parameters: limit
, ownerAddresses
and network
.
Once you have obtained the limit
, ownerAddresses
and network
, you can copy the following code:
- index.js (JavaScript)
- index.ts (TypeScript)
- index.py (Python)
const Moralis = require("moralis").default;
const runApp = async () => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const limit = 10;
const ownerAddresses = ["0x274c398a921b8e2ba345feac3039e1c8b196a7eb1395cdd3584af3a85eb9ec50"];
const network = "mainnet";
const response = Moralis.AptosApi.coins.getCoinTransfersByOwnerAddresses({
limit,
walletAddresses,
network
});
console.log(response.result);
};
runApp();
import Moralis from "moralis";
const runApp = async () => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const limit = 10;
const ownerAddresses = ["0x274c398a921b8e2ba345feac3039e1c8b196a7eb1395cdd3584af3a85eb9ec50"];
const network = "mainnet";
const response = Moralis.AptosApi.coins.getCoinTransfersByOwnerAddresses({
limit,
walletAddresses,
network
});
console.log(response.result);
};
runApp();
from moralis import aptos_api
api_key = "YOUR_API_KEY"
params = {
"limit": 10,
"owner_addresses": ["0x274c398a921b8e2ba345feac3039e1c8b196a7eb1395cdd3584af3a85eb9ec50"]
"network": "mainnet",
}
result = aptos_api.coins.get_coin_transfers_by_owner_addresses(
api_key=api_key,
params=params,
)
print(result)
Step 3: Run the script
To run the script, enter the following command:
- Shell (JavaScript)
- Shell (TypeScript)
- Shell (Python)
node index.js
ts-node index.ts
python index.py
In your terminal, you should see the following JSON response:
{
"cursor": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2IjoiMjAyMy0wMy0yMVQyMTo1NTo0MS4wMDBaIiwibyI6MiwiaWF0IjoxNjgyMDY3NTc2fQ.505lbLYPA4Vg4aUNbZIqv9CsgbcyaHeSgcySFwgOqpM",
"hasNextPage": true,
"result": [
{
"activity_type": "0x1::coin::WithdrawEvent",
"amount": "18620000",
"block_height": "42022697",
"coin_type": "0x1::aptos_coin::AptosCoin",
"event_account_address": "0x274c398a921b8e2ba345feac3039e1c8b196a7eb1395cdd3584af3a85eb9ec50",
"event_creation_number": "3",
"event_sequence_number": "11",
"is_gas_fee": false,
"entry_function_id_str": "0x1::aptos_account::transfer",
"is_transaction_success": true,
"owner_address": "0x274c398a921b8e2ba345feac3039e1c8b196a7eb1395cdd3584af3a85eb9ec50",
"transaction_timestamp": "2023-03-26T21:48:28.000Z",
"transaction_version": "108478684"
}
]
}
Congratulations 🥳 You just got the NFT transfers by wallet(s) with just a few lines of code using the Moralis Wallet API!
Youtube Video
API Reference
If you want to know more details on the endpoint and optional parameters, check out:
Support
If you face any trouble following the tutorial, feel free to reach out to our community engineers in our Discord or Forum to get 24/7 developer support.