👨💻Smart Contract Interface
To support post backs for successful Blockchain transaction, the following endpoints should be implemented:
🔹Buy transaction complete
async postBuyExecuted(body: {
nftAddress: string;
tokenId: string;
daoAddress: string;
payload?: any;
}): Promise<bool> {
<YOUR IMPLEMENTATION GOES HERE>
}🔹List for sale transaction complete
async postListedForSellExecuted(body: {
nftAddress: string;
tokenId: string;
daoAddress: string;
payload?: any;
}): Promise<bool> {
<YOUR IMPLEMENTATION GOES HERE>
}🔹Cancel listing transaction complete
✉️ Talk to us!
Last updated