Skip to content

Commit

Permalink
fix missing project name change
Browse files Browse the repository at this point in the history
  • Loading branch information
caglavol committed Jan 31, 2024
1 parent c51edb8 commit c142c6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/deployments/deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const getDeployments = async (): Promise<SubstrateDeployment[]> => {

for (const networkId of networks) {
for (const contractId of Object.values(ContractIds)) {
const abi = await import(`@inkathon/contracts/deployments/${contractId}/${contractId}.json`)
const abi = await import(`@fairpetuals/contracts/deployments/${contractId}/${contractId}.json`)
const { address } = await import(
`@inkathon/contracts/deployments/${contractId}/${networkId}.ts`
`@fairpetuals/contracts/deployments/${contractId}/${networkId}.ts`
)

deployments.push({ contractId, networkId, abi, address })
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c142c6e

Please sign in to comment.