Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eversdk/core

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eversdk/core - npm Package Compare versions

Comparing version 1.38.1 to 1.39.0

2

dist/bin.d.ts
import { ClientConfig } from "./modules";
export declare type ResponseHandler = (params: any, responseType: number) => void;
export type ResponseHandler = (params: any, responseType: number) => void;
export interface BinaryLibraryBase {

@@ -4,0 +4,0 @@ createContext(configJson: string): Promise<string>;

@@ -29,2 +29,17 @@ "use strict";

class TonClient {
static set default(client) {
this._default = client;
}
static get default() {
if (this._default === null) {
this._default = new TonClient(this._defaultConfig);
}
return this._default;
}
static set defaultConfig(config) {
this._defaultConfig = config;
}
static get defaultConfig() {
return this._defaultConfig;
}
constructor(config) {

@@ -45,17 +60,2 @@ this.context = undefined;

}
static set default(client) {
this._default = client;
}
static get default() {
if (this._default === null) {
this._default = new TonClient(this._defaultConfig);
}
return this._default;
}
static set defaultConfig(config) {
this._defaultConfig = config;
}
static get defaultConfig() {
return this._defaultConfig;
}
static useBinaryLibrary(loader) {

@@ -62,0 +62,0 @@ (0, bin_1.useLibrary)(loader);

{
"name": "@eversdk/core",
"version": "1.38.1",
"version": "1.39.0",
"description": "TON Client for Java Script",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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