is it possible to build data inside a smart contract? (func)
for example:
- i wana deploy nft collection from a smart contract.
- code is constant
- how can i build the data?
Jun 3, 2023, 4:11 PM
Yes, it's possible. The code will be very similar to JS/TS wrapper for the same collection.
cell data = beginCell()
.store...
.store...
.storeRef(...)
.endCell();
cell data = beginCell()
.store...
.store...
.storeRef(...)
.endCell();
Jun 3, 2023, 4:12 PM
gotcha
thanks!
Jun 3, 2023, 4:13 PM