Skip to content

Commit

Permalink
fix: change @starkbank/ecdsa dependency v0.0.3 to updated starkbank-e…
Browse files Browse the repository at this point in the history
…cdsa v1.1.1 (#1189)
  • Loading branch information
cdottori-stark committed Sep 3, 2020
1 parent 63c18ce commit 1fcfb83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/eventwebhook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"node": "6.* || 8.* || >=10.*"
},
"dependencies": {
"@starkbank/ecdsa": "^0.0.3"
"starkbank-ecdsa": "^1.1.1"
},
"tags": [
"sendgrid"
Expand Down
2 changes: 1 addition & 1 deletion packages/eventwebhook/src/eventwebhook.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {PublicKey} from "@starkbank/ecdsa";
import {PublicKey} from "starkbank-ecdsa";

declare class EventWebhook {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/eventwebhook/src/eventwebhook.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const ecdsa = require('@starkbank/ecdsa');
const ecdsa = require('starkbank-ecdsa');
const Ecdsa = ecdsa.Ecdsa;
const Signature = ecdsa.Signature;
const PublicKey = ecdsa.PublicKey;
Expand Down

0 comments on commit 1fcfb83

Please sign in to comment.