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 was trying to use the etereum -js repl to send data to a contract. However, it does not contain the expanded String object as mentioned in PoC 5 Javascript
I should be able to do
("1".pad(32) + "65".pad(52)).unbin()
to get the data string
however:
> ("1".pad(32) + "65".pad(32)).unbin()
TypeError: undefined is not a function
> String.pad
undefined