mirror of
https://github.com/ChanX21/Sigillum
synced 2026-04-21 15:47:55 +00:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import { getFullnodeUrl, SuiClient } from "@mysten/sui/client";
|
|
|
|
const rpcUrl = "https://rpc-testnet.suiscan.xyz"; //getFullnodeUrl("testnet");
|
|
|
|
// SUI CLIENT
|
|
export const client = new SuiClient({ url: rpcUrl });
|