From 60d5d3e218e4179e69a2c2ac27338fa0d65ee4b7 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Thu, 11 Nov 2021 09:35:50 +0000 Subject: [PATCH] Update application-gateway-typescript (#531) The fabric-gateway node module has been renamed to @hyperledger/fabric-gateway Signed-off-by: James Taylor --- .../application-gateway-typescript/package.json | 2 +- asset-transfer-basic/application-gateway-typescript/src/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/asset-transfer-basic/application-gateway-typescript/package.json b/asset-transfer-basic/application-gateway-typescript/package.json index d633b8af..d5b8eaeb 100644 --- a/asset-transfer-basic/application-gateway-typescript/package.json +++ b/asset-transfer-basic/application-gateway-typescript/package.json @@ -20,7 +20,7 @@ "author": "Hyperledger", "license": "Apache-2.0", "dependencies": { - "fabric-gateway": "0.1.0-dev.20211006.12" + "@hyperledger/fabric-gateway": "^0.1.0" }, "devDependencies": { "@tsconfig/node12": "^1.0.9", diff --git a/asset-transfer-basic/application-gateway-typescript/src/app.ts b/asset-transfer-basic/application-gateway-typescript/src/app.ts index 0664ee42..31751e33 100644 --- a/asset-transfer-basic/application-gateway-typescript/src/app.ts +++ b/asset-transfer-basic/application-gateway-typescript/src/app.ts @@ -6,7 +6,7 @@ import * as grpc from '@grpc/grpc-js'; import * as crypto from 'crypto'; -import { connect, Identity, Signer, signers ,Contract} from 'fabric-gateway'; +import { connect, Identity, Signer, signers ,Contract} from '@hyperledger/fabric-gateway'; import { promises as fs } from 'fs'; import * as path from 'path';