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

@cardano-sdk/cardano-graphql-db-sync

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cardano-sdk/cardano-graphql-db-sync - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

package.json
{
"name": "@cardano-sdk/cardano-graphql-db-sync",
"version": "0.1.3",
"version": "0.1.4",
"description": "Cardano Graphql (cardano-db-sync) integration",

@@ -5,0 +5,0 @@ "engines": {

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

import { CardanoProvider } from '@cardano-sdk/core';
import { CardanoProvider, ProviderError, ProviderFailure } from '@cardano-sdk/core';
import { gql, GraphQLClient } from 'graphql-request';

@@ -227,5 +227,7 @@ import { TransactionSubmitResponse } from '@cardano-graphql/client-ts';

return !!response.hash;
} catch {
return false;
if (!response.hash) {
throw new Error('No "hash" in graphql response');
}
} catch (error) {
throw new ProviderError(ProviderFailure.Unknown, error);
}

@@ -232,0 +234,0 @@ };

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