Skip to content

Commit ef92222

Browse files
authored
chore(contract_manager): Rename package to @pythnetwork/contract-manager (#1507)
This change renames the contract manager package name to @pythnetwork/contract-manager to be consistent with our package names.
1 parent 6da2e1b commit ef92222

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

contract_manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "contract_manager",
2+
"name": "@pythnetwork/contract-manager",
33
"version": "1.0.0",
44
"description": "Set of tools to manage pyth contracts",
55
"private": true,

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target_chains/aptos/cli/src/commands/aptos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
AptosChain,
99
DefaultStore,
1010
getDefaultDeploymentConfig,
11-
} from "contract_manager";
11+
} from "@pythnetwork/contract-manager";
1212

1313
const NETWORK_CHOICES = Object.entries(DefaultStore.chains)
1414
.filter(([chain, config]) => {

target_chains/cosmwasm/deploy-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"license": "Apache-2.0",
1414
"dependencies": {
1515
"@pythnetwork/cosmwasm-deploy-tools": "*",
16-
"contract_manager": "*",
16+
"@pythnetwork/contract-manager": "*",
1717
"rimraf": "^5.0.0",
1818
"typescript": "^5.3.3",
1919
"yargs": "^17.0.1"

target_chains/cosmwasm/deploy-scripts/src/configs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getDefaultDeploymentConfig } from "contract_manager";
1+
import { getDefaultDeploymentConfig } from "@pythnetwork/contract-manager";
22
import { DeploymentType } from "./helper";
33

44
function getPythSources(deploymentType: DeploymentType) {

target_chains/cosmwasm/deploy-scripts/src/instantiate-pyth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
DefaultStore,
99
Store,
1010
toPrivateKey,
11-
} from "contract_manager";
11+
} from "@pythnetwork/contract-manager";
1212
import { CHAINS } from "xc_admin_common";
1313
import { DeploymentType, getContractBytesDict } from "./helper";
1414

target_chains/cosmwasm/deploy-scripts/src/instantiate-wormhole.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
DefaultStore,
88
toPrivateKey,
99
CosmWasmWormholeContract,
10-
} from "contract_manager";
10+
} from "@pythnetwork/contract-manager";
1111
import { CHAINS } from "xc_admin_common";
1212
import { DeploymentType } from "./helper";
1313

target_chains/ethereum/contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@pythnetwork/pyth-multisig-wh-message-builder": "*",
3838
"@pythnetwork/pyth-sdk-solidity": "^3.0.0",
3939
"@pythnetwork/entropy-sdk-solidity": "*",
40-
"contract_manager": "*",
40+
"@pythnetwork/contract-manager": "*",
4141
"dotenv": "^10.0.0",
4242
"elliptic": "^6.5.2",
4343
"ethers": "^5.7.2",

target_chains/ethereum/contracts/scripts/batchDeployReceivers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
EvmChain,
1111
loadHotWallet,
1212
EvmWormholeContract,
13-
} from "contract_manager";
13+
} from "@pythnetwork/contract-manager";
1414
import Web3 from "web3";
1515
import { CHAINS } from "xc_admin_common";
1616
import * as fs from "fs";

target_chains/sui/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@pythnetwork/client": "^2.17.0",
1616
"@pythnetwork/price-service-client": "^1.4.0",
1717
"@pythnetwork/price-service-sdk": "^1.2.0",
18-
"contract_manager": "*",
18+
"@pythnetwork/contract-manager": "*",
1919
"prettier": "^2.8.7",
2020
"typescript": "^5.0.4",
2121
"xc_admin_common": "*"

0 commit comments

Comments
 (0)