Tao Xu

Results 76 comments of Tao Xu

could you please try load and test ec recovery in this site? https://js-eth-sign.surge.sh/ and to see if any error occurs

Currently we're using Embind `enum_("CoinType")` to export enum types to Javascript ``` EMSCRIPTEN_BINDINGS(Wasm_TWCoinType) { enum_("CoinType") ... } ``` It's not very intuitive to add properties / methods support, so it...

After some testing, we'd better to generate extra `Enum` class for each enum ```c++ class CoinTypeEnum { CoinTypeEnum(TWCoinType value) : value(value) {} TWCoinType getValue() const { return value; } void...

@catenocrypt can you give an estimation for this? how long and what we need to do?

@AyushBherwani1998 we're refactoring to support any evm chain without changing code: https://github.com/trustwallet/wallet-core/issues/2214, this issue is on hold

@Milerius can you update your finding here?

@BearCooder Yes, low priority

C / assembly library: https://github.com/supranational/blst

This is a good chance to discuss with AR team? to see if we have other options