saepenatus
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
13 lines (8 loc) • 317 B
text/typescript
import { arrayify, BytesLike } from "@ethersproject/bytes";
export function decode(textData: string): Uint8Array {
return arrayify(new Uint8Array(Buffer.from(textData, "base64")));
};
export function encode(data: BytesLike): string {
return Buffer.from(arrayify(data)).toString("base64");
}
;