지갑 잔액 조회하기
Moralis Wallet API를 사용하여 Chiliz Chain에서 지갑의 CHZ 및 토큰 잔액을 조회합니다. 단일 및 다중 자산 조회 코드 샘플 포함.
지갑의 CHZ 잔액이란?
Moralis로 조회하는 방법
import Moralis from "moralis";
const runApp = async() => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const address = "0xYourWalletAddress";
const chain = "0x15b38", // Chiliz Chain Mainnet용.
// Spicy Testnet은 "0x15b32"를 사용합니다.
const response = await Moralis.EvmApi.balance.getNativeBalance({
address,
chain,
});
console.log(response.toJSON());
};
runApp();Tatum으로 조회하는 방법
thirdweb으로 조회하는 방법
Nodit으로 조회하는 방법
마지막 업데이트
도움이 되었나요?