From cd632a290e85e9ffd7cbeb3d83e1b3c7b56e7a7e Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Tue, 2 Jun 2020 14:57:52 +0200 Subject: [PATCH] Adapt deployment scrips --- scripts/wasmd/deploy_erc20.js | 3 ++- scripts/wasmd/deploy_nameservice.js | 3 ++- scripts/wasmd/deploy_staking.js | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/wasmd/deploy_erc20.js b/scripts/wasmd/deploy_erc20.js index 95b2db50..8fc612a9 100755 --- a/scripts/wasmd/deploy_erc20.js +++ b/scripts/wasmd/deploy_erc20.js @@ -1,7 +1,8 @@ #!/usr/bin/env node /* eslint-disable @typescript-eslint/camelcase */ -const { SigningCosmWasmClient, Secp256k1Pen } = require("@cosmwasm/sdk"); +const { SigningCosmWasmClient } = require("@cosmwasm/cosmwasm"); +const { Secp256k1Pen } = require("@cosmwasm/sdk38"); const fs = require("fs"); const httpUrl = "http://localhost:1317"; diff --git a/scripts/wasmd/deploy_nameservice.js b/scripts/wasmd/deploy_nameservice.js index ca9de2ef..d2e3c196 100755 --- a/scripts/wasmd/deploy_nameservice.js +++ b/scripts/wasmd/deploy_nameservice.js @@ -1,7 +1,8 @@ #!/usr/bin/env node /* eslint-disable @typescript-eslint/camelcase */ -const { SigningCosmWasmClient, Secp256k1Pen } = require("@cosmwasm/sdk"); +const { SigningCosmWasmClient } = require("@cosmwasm/cosmwasm"); +const { Secp256k1Pen } = require("@cosmwasm/sdk38"); const fs = require("fs"); const httpUrl = "http://localhost:1317"; diff --git a/scripts/wasmd/deploy_staking.js b/scripts/wasmd/deploy_staking.js index 1369fddf..56341cbc 100755 --- a/scripts/wasmd/deploy_staking.js +++ b/scripts/wasmd/deploy_staking.js @@ -1,7 +1,8 @@ #!/usr/bin/env node /* eslint-disable @typescript-eslint/camelcase */ -const { SigningCosmWasmClient, Secp256k1Pen } = require("@cosmwasm/sdk"); +const { SigningCosmWasmClient } = require("@cosmwasm/cosmwasm"); +const { Secp256k1Pen } = require("@cosmwasm/sdk38"); const fs = require("fs"); const httpUrl = "http://localhost:1317";