avalanche-rosetta
avalanche-rosetta copied to clipboard
Can we get all information for 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E USDC token like balance’s, transactions etc. from avalanche-rosetta node?
Hello Team, I want to extract all information for 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E USDC token like balance’s, transactions etc. I had setup avalanche-rosetta node using docker, currently it is syncing. Once its full sync. Will it fulfill my requirement? Here is the steps to setup node
- pull repository sudo git clone https://github.com/ava-labs/avalanche-rosetta.git 2. Create docker image sudo docker build --no-cache --build-arg AVALANCHE_VERSION=${AVALANCHE_VERSION} --build-arg ROSETTA_VERSION=${GIT_COMMIT} -t avaplatform/avalanche-rosetta:v1.7.13est .
- build docker container sudo docker run -d --name avalanche-mainnet-3332 --rm -v $PWD/data:/data -v $PWD/logs:/root/.avalanchego -e AVALANCHE_NETWORK=Mainnet -e AVALANCHE_CHAIN=43114 -e AVALANCHE_MODE=online -e token_whitelist="0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" -e validate_erc20_whitelist=true -p 3332:8080 -p 9650:9650 -p 9651:9651 avalanche-rosetta:v1.7.13