I have a situation where a set of two contracts is deployed to two addresses, for example:
share.ysn-1_0_0.ysn.testnet
market.share.ysn-1_0_0.ysn.testnet
In this case, share is an NFT contract while market is an open bids system plugged into it.
Different projects are deployed under ysn.testnet with the same pattern, and an FT contract is deployed at ysn-1_0_0.ysn.testnet.
I'm trying to figure out the best way to handle this from one front-end without too many redirects, preferably one.
A thing that came to mind is to have a proxy contract that distributes the Promise requests to the set of contracts above; is that feasible, or might it have drawbacks?
nftprojects (each with theirmarket) and, for example, if you want to build a feed that pulls tokens from all of thenftcontracts (without having a back-end) you would be redirected. Thanks for the support; I'll do some more reading tomorrow and see if it's a design issue on my side.