Skip to content

Commit

Permalink
fix: compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aaitor committed Apr 8, 2024
1 parent ec0957c commit e674f95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/keeper/contracts/Nft1155Contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class Nft1155Contract extends NFTContractsBase {

// We don't have a subgraph for NFT1155 so we can only use ContractEvent
const eventEmitter = new EventHandler()
nft.events = ContractEvent.getInstance(nft, eventEmitter) //, config.nevermined, nft.client)
nft.events = ContractEvent.getInstance(nft, eventEmitter, config.nevermined, nft.client)

nft.contract = await getContractInstance(address, solidityABI.abi, nft.client)
nft.address = await nft.contract.getAddress()
Expand Down
2 changes: 1 addition & 1 deletion src/keeper/contracts/Nft721Contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Nft721Contract extends NFTContractsBase {

// We don't have a subgraph for NFT721 so we can only use ContractEvent
const eventEmitter = new EventHandler()
nft.events = ContractEvent.getInstance(nft, eventEmitter) //, config.nevermined, nft.client)
nft.events = ContractEvent.getInstance(nft, eventEmitter, config.nevermined, nft.client)

nft.contract = await getContractInstance(address, solidityABI.abi, nft.client)
nft.address = await nft.contract.getAddress()
Expand Down
1 change: 1 addition & 0 deletions src/nevermined/utils/ServiceAgreement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export class ServiceAgreement extends Instantiable {
throw new Error('TemplateId not found in DDO.')
}

console.log(`Signing service agreement`)
const serviceAgreementHashSignature = await this.createHashSignature(
service.templateId,
serviceAgreementId,
Expand Down

0 comments on commit e674f95

Please sign in to comment.