Taquito Utils
Description
The @taquito/utils
package provides developers with utility functions in Taquito.
You can find a full list of available utility functions in Taquito here
Usage Example
To use the functions, simply import the function you need as such:
import { getPkhfromPk, b58cencode, b58cdecode } from '@taquito/utils';const publicKeyHash = getPkhfromPk('replace_with_publickey');const encoded = b58cencode('replace_with_publickey');