Sfoglia il codice sorgente

fix: aptos imports

Daniel Chew 6 mesi fa
parent
commit
d87c246a73
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      target_chains/aptos/cli/src/commands/aptos.ts

+ 2 - 2
target_chains/aptos/cli/src/commands/aptos.ts

@@ -4,9 +4,9 @@ import { AptosAccount, AptosClient, BCS, TxnBuilderTypes } from "aptos";
 import fs from "fs";
 import sha3 from "js-sha3";
 import { ethers } from "ethers";
-import { AptosChain } from "../../../../../contract_manager/lib/core/chains";
 import { DefaultStore } from "@pythnetwork/contract-manager/node/store";
-import { getDefaultDeploymentConfig } from "../../../../../contract_manager/lib/core/base";
+import { AptosChain } from "@pythnetwork/contract-manager/core/chains";
+import { getDefaultDeploymentConfig } from "@pythnetwork/contract-manager/core/base";
 
 const NETWORK_CHOICES = Object.entries(DefaultStore.chains)
   .filter(([chain, config]) => {