I was trying to build a NEP141 token with assemblyscript and to deploy it on the Near Network, but, after the deployment, I'm not able to see it on the wallet. I checked my work with the one in this video from the Near YouTube channel and our projects looks similar.
After looking how NEP141 are made with Rust I have 3 questions:
In the Rust SDK, we have a module to define some contract standards (link to near-sdk-rs standars). Do we have something like that for the as-sdk?
In the NEP141 documentation, the types of the variables returned by some methods are not aligned with the types returned in the near-sdk-rs standard. For example, the method ft_balance_of in the Near documentation should return a string variable (documentation link), but in the Rust SDK it returns a U128 (near-rs-sdk link to standards). Which one is the right one? (I guess is the rust one)
Is the near-sdk-as still supported? There are some pull requests open from 2020 and they are still not merged. In particular, I had a problem trying to compile the source code in the Near Youtube Video. The problem would be fixed if this pull request would be merged.
thanks!