Skip to content

Commit

Permalink
fix fire deployment script (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Aug 27, 2024
1 parent b5367b3 commit e26e5ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/deploy_fire_components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ export async function deployFireComponentContracts(libraries: LibraryAddresses,
await instance.getRegistry(),
instanceNftId,
fireProductName,
fireUsdAddress,
fireProductAuthAddress,
],
{
Expand All @@ -149,7 +148,7 @@ export async function deployFireComponentContracts(libraries: LibraryAddresses,

logger.info(`registering FireProduct on Instance`);
await executeTx(async () =>
await instance.registerProduct(fireProductAddress, getTxOpts()),
await instance.registerProduct(fireProductAddress, fireUsdAddress, getTxOpts()),
"fire ex - registerProduct",
[IInstance__factory.createInterface()]
);
Expand Down Expand Up @@ -179,7 +178,6 @@ export async function deployFireComponentContracts(libraries: LibraryAddresses,
await instance.getRegistry(),
fireProductNftId,
firePoolName,
fireUsdAddress,
firePoolAuthAddress,
],
{
Expand Down

0 comments on commit e26e5ad

Please sign in to comment.