Andrey Kovalev

Results 2 comments of Andrey Kovalev

I managed to do it with this code, I hope it helps somehow: ```Go package main import ( "crypto/ed25519" "crypto/hmac" "crypto/sha512" "fmt" "github.com/gagliardetto/solana-go" "github.com/mr-tron/base58" "golang.org/x/crypto/pbkdf2" "math/big" ) func derive(key []byte,...

Hello, I had the same issue. Fixed it by adding `@daochild/tronweb-typescript` to the `types` section in `tsconfig.json` as following: ```Json "types": [ "@daochild/tronweb-typescript" ], ``` My `package.json`: ```Json { "devDependencies":...