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

@cardano-ogmios/client

Package Overview
Dependencies
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cardano-ogmios/client - npm Package Compare versions

Comparing version 6.0.0-rc5 to 6.0.0-rc6

7

dist/Connection.js

@@ -93,5 +93,10 @@ "use strict";

return new Promise((resolve, reject) => {
function onUnexpectedClose(code, reason) {
reject(new JSONRPCError(-32000, 'Connection closed', { code, reason }));
}
socket.once('close', onUnexpectedClose);
send(socket)
.then(resolve)
.catch(error => reject(JSONRPCError.tryFrom(error) || error));
.catch(error => reject(JSONRPCError.tryFrom(error) || error))
.finally(() => socket.removeListener('close', onUnexpectedClose));
});

@@ -98,0 +103,0 @@ };

4

package.json
{
"name": "@cardano-ogmios/client",
"version": "6.0.0-rc5",
"version": "6.0.0-rc6",
"description": "TypeScript client library for Cardano Ogmios",

@@ -50,3 +50,3 @@ "engines": {

"dependencies": {
"@cardano-ogmios/schema": "6.0.0-rc5",
"@cardano-ogmios/schema": "6.0.0-rc6",
"@cardanosolutions/json-bigint": "^1.0.1",

@@ -53,0 +53,0 @@ "@types/json-bigint": "^1.0.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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