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

ton

Package Overview
Dependencies
Maintainers
3
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ton - npm Package Compare versions

Comparing version 11.9.0 to 11.10.0

4

dist/client/TonClient4.d.ts

@@ -0,1 +1,2 @@

/// <reference types="node" />
import { AxiosAdapter } from "axios";

@@ -156,2 +157,5 @@ import BN from "bn.js";

}>;
sendMessage(message: Buffer): Promise<{
status: number;
}>;
}

@@ -116,2 +116,9 @@ "use strict";

}
async sendMessage(message) {
let res = await axios_1.default.post(__classPrivateFieldGet(this, _TonClient4_endpoint, "f") + '/send', { boc: message.toString('base64') }, { adapter: __classPrivateFieldGet(this, _TonClient4_adapter, "f"), timeout: __classPrivateFieldGet(this, _TonClient4_timeout, "f") });
if (!sendCodec.is(res.data)) {
throw Error('Mailformed response');
}
return { status: res.data.status };
}
}

@@ -251,1 +258,4 @@ exports.TonClient4 = TonClient4;

});
const sendCodec = t.type({
status: t.number
});

2

package.json
{
"name": "ton",
"version": "11.9.0",
"version": "11.10.0",
"repository": "https://github.com/tonwhales/ton.git",

@@ -5,0 +5,0 @@ "author": "Steve Korshakov <steve@korshakov.com>",

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