Coder Social home page Coder Social logo

Comments (3)

FerranMarin avatar FerranMarin commented on July 3, 2024

Mind providing more information?

What caused this? Just poetry install? Which environment? What python version?

from axie-scholar-utilities.

dacelee avatar dacelee commented on July 3, 2024

Thank you for your answer, I re-use docker, but the following problems appeared in transfer_axies;

`CRITICAL: Transfers file failed validation. Please review it. Error given: '4820443' is not of type 'number'. For attribute in: [0, 'Transfers', 0, 'AxieId']

transfers.json

`[
    {
        "AccountAddress": "ronin:86c73b7022B2F83425a22556858a58cFD3E95D32", 
        "Transfers": [
            {
                "AxieId": "4820443",
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            },
            {
                "AxieId": "4648936",
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            },
            {
                "AxieId": "4588415",
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            }
        ]
    }
]

from axie-scholar-utilities.

FerranMarin avatar FerranMarin commented on July 3, 2024

The error is clear, the AxieID needs to be a number, not a text, so your file needs to look like:

[
    {
        "AccountAddress": "ronin:86c73b7022B2F83425a22556858a58cFD3E95D32", 
        "Transfers": [
            {
                "AxieId": 4820443,
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            },
            {
                "AxieId": 4648936,
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            },
            {
                "AxieId": 4588415,
                "ReceiverAddress": "ronin:816c6bfa36f3fb56aa617cb3fb16c675a624e584"
            }
        ]
    }
]

from axie-scholar-utilities.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.