Replies: 1 comment
-
It pretty much means that the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Ive been trying to customize this arbitrage bot for Uniswap Sushiswap but I keep getting this :
"TypeError: Cannot read property ‘hexString’ of undefined’
I ve been stuck on how to solve this issue for weeks now.Heres the screenshot of the code below .Thanks.
function isHexable(value) {
return (value.toHexString);
}
function addSlice(array) {
if (array.slice) {
return array;
}
array.slice = function () {
var args = Array.prototype.slice.call(arguments);
return addSlice(new Uint8Array(Array.prototype.slice.apply(array, args)));
};
return array;
}
Beta Was this translation helpful? Give feedback.
All reactions