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

@onflow/transport-grpc

Package Overview
Dependencies
Maintainers
12
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@onflow/transport-grpc - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

29

CHANGELOG.md
# @onflow/transport-grpc
## 1.3.1
### Patch Changes
- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug
- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]:
- @onflow/protobuf@1.2.2
- @onflow/rlp@1.2.1
- @onflow/util-address@1.2.1
- @onflow/util-invariant@1.2.1
- @onflow/util-template@1.2.1
## 1.3.0

@@ -7,7 +20,7 @@

- [#1728](https://github.com/onflow/fcl-js/pull/1728) [`a4f8c00c`](https://github.com/onflow/fcl-js/commit/a4f8c00c4cf292d3a4afac610dedbc89ff3affea) Thanks [@nialexsan](https://github.com/nialexsan)! - TS build
- [#1801](https://github.com/onflow/fcl-js/pull/1801) [`8881394b`](https://github.com/onflow/fcl-js/commit/8881394bc11fea507e330a4c507ef304fe456c42) Thanks [@nialexsan](https://github.com/nialexsan)! - TS build
### Patch Changes
- Updated dependencies [[`a4f8c00c`](https://github.com/onflow/fcl-js/commit/a4f8c00c4cf292d3a4afac610dedbc89ff3affea), [`845ffa75`](https://github.com/onflow/fcl-js/commit/845ffa756e07188557d150cdb9ff7af59019a477)]:
- Updated dependencies [[`8881394b`](https://github.com/onflow/fcl-js/commit/8881394bc11fea507e330a4c507ef304fe456c42), [`8881394b`](https://github.com/onflow/fcl-js/commit/8881394bc11fea507e330a4c507ef304fe456c42)]:
- @onflow/util-invariant@1.2.0

@@ -18,15 +31,7 @@ - @onflow/util-template@1.2.0

## 1.3.0-alpha.0
## 1.2.2
### Minor Changes
- TS build
### Patch Changes
- Updated dependencies []:
- @onflow/util-invariant@1.2.0-alpha.0
- @onflow/util-template@1.2.0-alpha.0
- @onflow/util-address@1.2.0-alpha.0
- @onflow/rlp@1.2.0-alpha.0
- [#1532](https://github.com/onflow/fcl-js/pull/1532) [`06846f8e`](https://github.com/onflow/fcl-js/commit/06846f8e9c1e2cdf10aa8dfdff6e6c5b31af81e5) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Fixed duplicate signatures when sending transaction

@@ -33,0 +38,0 @@ ## 1.2.1

@@ -500,3 +500,6 @@ 'use strict';

sig.setSignature(hexBuffer(acct.signature, context));
tx.addPayloadSignatures(sig);
const isSignatureExist = tx.getPayloadSignaturesList().some(existingSignature => existingSignature.getAddress().toString() === sig.getAddress().toString() && existingSignature.getKeyId() === sig.getKeyId() && existingSignature.getSignature().toString() === sig.getSignature().toString());
if (!isSignatureExist) {
tx.addPayloadSignatures(sig);
}
}

@@ -503,0 +506,0 @@ } catch (error) {

@@ -496,3 +496,6 @@ import { invariant } from '@onflow/util-invariant';

sig.setSignature(hexBuffer(acct.signature, context));
tx.addPayloadSignatures(sig);
const isSignatureExist = tx.getPayloadSignaturesList().some(existingSignature => existingSignature.getAddress().toString() === sig.getAddress().toString() && existingSignature.getKeyId() === sig.getKeyId() && existingSignature.getSignature().toString() === sig.getSignature().toString());
if (!isSignatureExist) {
tx.addPayloadSignatures(sig);
}
}

@@ -499,0 +502,0 @@ } catch (error) {

@@ -496,3 +496,6 @@ (function (global, factory) {

sig.setSignature(hexBuffer(acct.signature, context));
tx.addPayloadSignatures(sig);
const isSignatureExist = tx.getPayloadSignaturesList().some(existingSignature => existingSignature.getAddress().toString() === sig.getAddress().toString() && existingSignature.getKeyId() === sig.getKeyId() && existingSignature.getSignature().toString() === sig.getSignature().toString());
if (!isSignatureExist) {
tx.addPayloadSignatures(sig);
}
}

@@ -499,0 +502,0 @@ } catch (error) {

{
"name": "@onflow/transport-grpc",
"version": "1.3.0",
"version": "1.3.1",
"description": "Flow SDK GRPC Transport Module",

@@ -16,4 +16,4 @@ "license": "Apache-2.0",

"devDependencies": {
"@onflow/fcl-bundle": "^1.4.0",
"@onflow/sdk": "^1.3.1-typescript.0",
"@onflow/fcl-bundle": "^1.4.1",
"@onflow/sdk": "^1.3.1",
"jest": "^29.5.0"

@@ -37,8 +37,8 @@ },

"@improbable-eng/grpc-web-node-http-transport": "^0.14.0",
"@onflow/protobuf": "^1.2.1",
"@onflow/rlp": "^1.2.0",
"@onflow/util-address": "^1.2.0",
"@onflow/util-invariant": "^1.2.0",
"@onflow/util-template": "^1.2.0"
"@onflow/protobuf": "^1.2.2",
"@onflow/rlp": "^1.2.1",
"@onflow/util-address": "^1.2.1",
"@onflow/util-invariant": "^1.2.1",
"@onflow/util-template": "^1.2.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