Socket
Socket
Sign inDemoInstall

ethers-gcp-kms-signer

Package Overview
Dependencies
226
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.5 to 1.1.6

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [1.1.6](https://github.com/openlawteam/ethers-gcp-kms-signer/compare/v1.1.5...v1.1.6) (2022-11-17)
### fix
* parse line break for gcp env var ([721accf](https://github.com/openlawteam/ethers-gcp-kms-signer/commit/721accf412fdcb271f1e4e559820a6e0071e52d6))
## [1.1.5](https://github.com/openlawteam/ethers-gcp-kms-signer/compare/v1.1.4...v1.1.5) (2022-11-15)

@@ -2,0 +9,0 @@

2

dist/util/gcp-kms-utils.js

@@ -46,3 +46,3 @@ "use strict";

client_email: process.env.GOOGLE_APPLICATION_CREDENTIAL_EMAIL,
private_key: process.env.GOOGLE_APPLICATION_CREDENTIAL_PRIVATE_KEY
private_key: process.env.GOOGLE_APPLICATION_CREDENTIAL_PRIVATE_KEY.replace(/\\n/gm, "\n")
}

@@ -49,0 +49,0 @@ } : {};

{
"name": "ethers-gcp-kms-signer",
"version": "1.1.5",
"version": "1.1.6",
"description": "An Ethers.js compatible signer that connects to GCP KMS",

@@ -5,0 +5,0 @@ "main": "dist/signer.js",

@@ -29,3 +29,3 @@ import { ethers } from "ethers";

client_email: process.env.GOOGLE_APPLICATION_CREDENTIAL_EMAIL,
private_key: process.env.GOOGLE_APPLICATION_CREDENTIAL_PRIVATE_KEY,
private_key: process.env.GOOGLE_APPLICATION_CREDENTIAL_PRIVATE_KEY.replace(/\\n/gm, "\n"),
},

@@ -32,0 +32,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc