DAML integration with Blockchain App
App Development3 posts255 views1 likesLast activity Oct 2022
PR
prajwalhegde3OP
Oct 2022Hi 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!
GA
Gary_Verhaegen
Oct 2022I think your best bet here is to write a ledger client application that listens to the transaction stream and writes to your custom blockchain.
PR
prajwalhegde3
Oct 2022Thank you @Gary_Verhaegen