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
Jade scans in blocks of 500 the usual/standard receive address space.
Yes, you can tweak that a bit - ie. you could add the /1/ if you wanted to scan for a change address instead.
You're suggesting scanning /0/* (receive) and /1/* by default ?
ofc this is not difficult, it just makes scanning take twice as long to get to eg. index 500 (as you'd have to check 1000 addresses rather than 500).
Perfectly doable though.
To expand on my previous message about address validation optimization - I propose this streamlined approach for the next update:
function checkAddress(address, index) {
// 1. Check against receive addresses first
if (isValidReceiveAddress(address, index)) {
return true; // or return address object if needed
}
// 2. Fallback to change address check
if (isValidChangeAddress(address, index)) {
return true; // or return address object if needed
}
// 3. No matches found
return false;
}
Hey while scanning by default it scans for 500 address, it only scans receiving address.
While we can verify change address by edit root option, my suggestion is that it should be automatically checked as well.
The text was updated successfully, but these errors were encountered: