You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the error Address has mismatched network type.
Here is the sample code:
var bitcore = require('bitcore-lib-cash');
// This will fail. Livenet legacy address:
new bitcore.Address("161p4i14KBcTB8q368q4NeUr61nFJcWUDo");
// This will succeed. Same livenet new address:
new bitcore.Address("bitcoincash:qqm0l6ncpckl6ksrt4gja6rngp2x5kmcavkkwzfpfs");
// This will succeed. A testnet legacy address:
new bitcore.Address("mxQLmrBQsj9trMGg5kTwVbmeGetMA6gzhb");
I get the error
Address has mismatched network type.Here is the sample code: