New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aresrpg/aresrpg-sdk

Package Overview
Dependencies
Maintainers
3
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aresrpg/aresrpg-sdk - npm Package Compare versions

Comparing version 2.2.1 to 2.2.2

2

package.json
{
"name": "@aresrpg/aresrpg-sdk",
"version": "2.2.1",
"version": "2.2.2",
"description": "General SDK to interract with AresRPG",

@@ -5,0 +5,0 @@ "type": "module",

@@ -48,2 +48,3 @@ import { KioskClient, Network } from '@mysten/kiosk'

network = Network.TESTNET,
websocket_constructor = undefined,
}) {

@@ -53,2 +54,5 @@ const sui_client = new SuiClient({

url: rpc_url,
...(websocket_constructor && {
WebSocketConstructor: websocket_constructor,
}),
websocket: {

@@ -55,0 +59,0 @@ reconnectTimeout: 1000,

@@ -1,5 +0,6 @@

export function SDK({ rpc_url, wss_url, network, }: {
export function SDK({ rpc_url, wss_url, network, websocket_constructor, }: {
rpc_url?: "https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000";
wss_url?: string;
network?: Network;
websocket_constructor?: any;
}): Promise<{

@@ -6,0 +7,0 @@ get_locked_characters: (address: string) => Promise<import("./types.js").SuiCharacter[]>;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc