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
ethers js library can be use to both encode and send transactions eliminating need for python and Foundry/cast
encoding
// Define the data type and value
const types = ['string'];
const values = ['hello, world!'];
// ABI encode the data
const abiEncoded = ethers.utils.defaultAbiCoder.encode(types, values);
// Compute the Keccak-256 hash of the ABI encoded data
const keccakHash = ethers.utils.keccak256(abiEncoded);
The text was updated successfully, but these errors were encountered:
ethers js library can be use to both encode and send transactions eliminating need for python and Foundry/cast
encoding
The text was updated successfully, but these errors were encountered: