Sztergbaum Roman
                                            Sztergbaum Roman
                                        
                                    @probonopd This is really strange, your message complain about libstdc++, but usually I got the problem with `GLIBC` not `GLIBCXX` For sure the program have been compiled on Linux WSL...
https://stackoverflow.com/questions/52663287/glibcxx-3-4-26-not-found
One solution would be to compile with the clang C++ library instead of the gcc one
@qiujiangkun Hey ! We support only clang, but every platform are supported. clang-8 minimum clang-cl is also supported. MSVC is supported only for debugging. C++ 17 is fully compliant with...
@qiujiangkun VCPKG is optionnaly supported in the SDK ! ```CMake set(ANTARA_USE_VCPKG ON) ``` https://github.com/microsoft/vcpkg
You will need to install: ```bash vcpkg install entt vcpkg install nlohmann-json vcpkg install sol2 vcpkg install fmt ``` (and so on)
You have 2 solutions for using the SDK - Not using VCPKG (require a good connection, but easier to use) - Using VCPKG (install packages once, and precise cmake toolchain...
Openning another issue for aptos staking
> **Is your feature request related to a problem? Please describe.** Support for a new EVM-clone chain has been simplified (see #2214), but still requires code change and new release...
> I think we might only need to change KeyStore, allow adding unknown `CoinType` Yes, but then we can't use the enum `TWCoinType` since it's scoped and undefined behaviour to...