DAML integration with Blockchain App

Hi Team,

We have created a blockchain application using Node.js. In this application, we have a transaction pool which captures all the transactions like ‘Bob sending 100$ to Alice’ and once this transactions are mined a new block is created/added to the chain.

And for the smart contract part we have DAML, and canton is configured on one or more participant node using Postgres for database.

Is there a way to configure canton, where this transactions are directly sent to the blockchain transaction pool instead of saving it in the database.

Thank you!

I think your best bet here is to write a ledger client application that listens to the transaction stream and writes to your custom blockchain.

1 Like

Thank you @Gary_Verhaegen