Hey DAMLer’s!
I was working through the digital-asset/ ex-bond-issuance without automations to get more familiar with the new-to-me @DAML/react
libraries.
I was able to perform issuance as expected following the Create a New Bond Issuance directions.
It looks to me like a step is missing (or I am missing something) in the Creating a New Bond Auction portion and in the front end.
The issuer is able to complete the first step to request an auction by executing the IssuerRole_CommissionAuction
choice (by entering the auction start/end date, minimum price, security name, etc.).
But the README
, and the front-end neglects the CommissionBotTrigger_InviteAgent
step. Here is a snippet of code from the FullScenario.daml
file.
Could this be where automation is being used so that the Issuer only has to complete 1 step (IssuerRole_CommissionAuction
) instead of completing (IssuerRole_CommissionAuction
--> CommissionBotTrigger_InviteAgent
? If so, where in the repo could I find more information about it.
Or is this step missing and need to be added? The Auction Request never shows up in the AuctionAgent’s Auction Requests
tab.
Thanks!