Axie Infinity - 봇으로 시장 개척
7050 단어 reactpythontutorialopensource
이 기사에서는 내 github repos 중 하나를 살펴보고 axie.zone(리더보드 정보를 제공하는 커뮤니티 웹 사이트)에서 데이터를 스크랩하도록 봇을 설정하는 방법과 axie infinity의 graphql API와 함께 사용하는 Axies를 찾는 방법을 알아봅니다. 마켓플레이스에서 상위 100명의 플레이어.
정확한 Axies(동일한 ID)를 찾을 수는 없지만 전투에서 실질적으로 동일하게 만드는 동일한 클래스와 부품을 가진 Axies를 찾을 수 있으므로 예산 내에서 최고의 팀을 다시 만들 수 있습니다.
이 프로젝트의 개발 및 향후 튜토리얼을 지원하려면 Ko-Fi를 사용하여 자유롭게 기부하십시오.
비디오 튜토리얼
지침
예시:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if (request.auth.uid != null);
}
}
}
pip3 install -r requirements.txt
JSON 예:
{
"player_rank": 44,
"image": "https://storage.googleapis.com/assets.axieinfinity.com/axies/7751721/axie/axie-full-transparent.png",
"time": {
"seconds": 1635428026,
"nanoseconds": 751095000
},
"axie": {
"class": "Bird",
"player_mmr": "3312",
"player_rank": 44,
"axie_zone_score": "Excellent",
"title": "",
"matching_player": "#44 youtube.com de-hi games 3312 0 0%",
"id": "7751721",
"__typename": "Axie",
"name": "Axie #7751721",
"breedCount": 3,
"battleInfo": {
"banned": false,
"__typename": "AxieBattleInfo"
},
"parts": [
{
"name": "Mavis",
"specialGenes": null,
"id": "eyes-mavis",
"class": "Bird",
"__typename": "AxiePart",
"type": "Eyes"
},
{
"type": "Ears",
"specialGenes": null,
"class": "Bird",
"id": "ears-peace-maker",
"__typename": "AxiePart",
"name": "Peace Maker"
},
{
"name": "Pigeon Post",
"__typename": "AxiePart",
"specialGenes": null,
"id": "back-pigeon-post",
"class": "Bird",
"type": "Back"
},
{
"specialGenes": null,
"type": "Mouth",
"__typename": "AxiePart",
"class": "Bug",
"id": "mouth-cute-bunny",
"name": "Cute Bunny"
},
{
"type": "Horn",
"specialGenes": null,
"class": "Bird",
"name": "Eggshell",
"id": "horn-eggshell",
"__typename": "AxiePart"
},
{
"id": "tail-post-fight",
"class": "Bird",
"specialGenes": null,
"type": "Tail",
"name": "Post Fight",
"__typename": "AxiePart"
}
],
"stage": 4,
"image": "https://storage.googleapis.com/assets.axieinfinity.com/axies/7751721/axie/axie-full-transparent.png",
"player_url": "https://axie.zone/profile?ron_addr=0x1b246e446336f55b4150294ccd39693fb4a8aa9b",
"matching_axie_name": "obasan",
"auction": {
"currentPrice": "40000000000000000",
"__typename": "Auction",
"currentPriceUSD": "165.82"
}
},
"currentPriceUSD": 165.82,
"id": "7751721",
"class": "Bird"
}
Reference
이 문제에 관하여(Axie Infinity - 봇으로 시장 개척), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mdichtler/axie-infinity-breaking-the-market-with-bots-19gp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)