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

@triton-one/yellowstone-grpc

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@triton-one/yellowstone-grpc - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

11

dist/index.js

@@ -93,2 +93,11 @@ "use strict";

var endpointURL = new URL(endpoint);
var port = endpointURL.port;
if (port == "") {
switch (endpointURL.protocol) {
case "https:":
port = "443";
case "http:":
port = "80";
}
}
// Check if we need to use TLS.

@@ -110,3 +119,3 @@ if (endpointURL.protocol === "https:") {

}
this._client = new geyser_1.GeyserClient(endpointURL.host, creds, channelOptions);
this._client = new geyser_1.GeyserClient("".concat(endpointURL.host, ":").concat(port), creds, channelOptions);
}

@@ -113,0 +122,0 @@ Client.prototype._getInsecureMetadata = function () {

2

package.json
{
"name": "@triton-one/yellowstone-grpc",
"version": "1.3.0",
"version": "1.3.1",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "author": "Triton One",

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