Skip to content

Commit

Permalink
fix(evm-contracts): use different abi export syntax for webpack confi…
Browse files Browse the repository at this point in the history
…guration (#782)

* use assert syntax

* Empty commit
  • Loading branch information
oXtxNt9U authored Nov 28, 2024
1 parent 78f9bef commit 8304bda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/evm-contracts/source/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { default as ConsensusAbi } from "./abis/ConsensusV1.json" with { type: "json" };
export { default as ERC1967ProxyAbi } from "./abis/ERC1967Proxy.json" with { type: "json" };
export { default as MultiPaymentAbi } from "./abis/MultiPayment.json" with { type: "json" };
export { default as UsernamesAbi } from "./abis/UsernamesV1.json" with { type: "json" };
export { default as ConsensusAbi } from "./abis/ConsensusV1.json" assert { type: "json" };
export { default as ERC1967ProxyAbi } from "./abis/ERC1967Proxy.json" assert { type: "json" };
export { default as MultiPaymentAbi } from "./abis/MultiPayment.json" assert { type: "json" };
export { default as UsernamesAbi } from "./abis/UsernamesV1.json" assert { type: "json" };
export * from "./function-sigs.js";

0 comments on commit 8304bda

Please sign in to comment.