Back to packages list

Vals using viem

Description from the NPM package:
TypeScript Interface for Ethereum
git avatar
git
unionTypeScriptSDK
Script
Union TypeScript SDK Example Usage import { http } from "viem"; import { privateKeyToAccount } from "viem/accounts"; import { createUnionClient, hexStringToUint8Array } from "@union/client"; const PRIVATE_KEY = process.env.PRIVATE_KEY; const account = privateKeyToAccount(`0x${PRIVATE_KEY}`); const client = createUnionClient({ account, chainId: "80084", transport: http("https://bartio.rpc.berachain.com"), }); const transfer = await client.transferAsset({ amount: 1n, autoApprove: true, destinationChainId: "stride-internal-1", recipient: "stride14qemq0vw6y3gc3u3e0aty2e764u4gs5l66hpe3", denomAddress: "0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03", // HONEY }); if (transfer.isErr()) { console.error("Transfer failed", transfer.error); } console.info("Transfer successful", transfer.value);
0
git avatar
git
checksum
HTTP
An interactive, runnable TypeScript val by git
0
tmm avatar
tmm
foo
Script
An interactive, runnable TypeScript val by tmm
0
1
Next