1/ Enter the Hypercastle.
Our E30D #4 exhibition and digital poster is now open for live view and collection in Marfa, TX and https://t.co/AJUYHFiWpJ.
Collection: Terraforms
Artist: @Mathcastles (@0x113d, @xaltgeist)
Collector: @HEEEEEEEEEEE_
Month: August 2023
[E30D No. #4]
These Solidity "stack too deep" compiler errors are bittersweet because I think other people would be more insane by them than I am
I'm like David Blaine doing "magic tricks" by just being willing to actually stick a sword through his arm
𝗖𝗿𝗶𝘁𝗶𝗰𝗶𝘀𝗺 | 𝗧𝗛𝗘 𝗠𝗔𝗣 𝗜𝗦 𝗧𝗛𝗘 𝗧𝗘𝗥𝗥𝗜𝗧𝗢𝗥𝗬
"Terraforms is a reminder that the best virtual worlds are imagined, not simulated."
Today in the 📰, @KevinBuist writes on @mathcastles's 2021 #ASCIIart series.
🗞️: https://t.co/bREjNttFkN
#terraformsNFT
Terraforms by @mathcastles has been one of the most inspiring pieces of art for me. I wrote a long-form essay discussing both the technical and artistic vision as well as how it pushes the medium forward. Hope it can inspire others as well!
Full essay: https://t.co/yRf2c9ks1y
The Hypercastle Explorer application from @hypercastle_exp allows you to explore the Terraforms by @mathcastles hyperstructure in 3d.
@HEEEEEEEEEEE_ just posted this clip of it running on the Steam Deck by Valve.
Explore the 20 levels of the hypercastle where ever you go 🏯🏰
With fresh attention on Terraforms, it’s a good time to remind you that you can explore the hypercastle in 2d and 3d for free via the @hypercastle_exp Explorer app, downloadable for free below.
Super happy to see the @mathcastles team getting the recognition they deserve. By far one of the coolest and more interesting generative land/art projects in the space. Respekt to @0x113d and @xaltgeist for building something magical 🪄✨ Long live the Hyper Cone.
realistically the only project ive seen that is pure crypto art from a technology standpoint is mathcastles by @0x113d. that being said it doesn't stop us from using chains like ethereums as layer of consensus for art ownership
There are likely additional ways of optimizing or organizing this (@dhof has a really nice file compression technique, for example). At the moment we just wanted to put these out for early experiments and to get the conversation started.
We just put p5.js and three.js onchain, as composable libraries.
I designed a system for deploying and reading very large files to the EVM, which makes them available for anyone to incorporate into their works.
https://t.co/z3zradJ2U5
@stargeistt Yes, it works for storing data of any kind. The SSTORE2 piece of this was used by @ETHTerrestrials to store SVGs on chain, for example. The memory manipulation in assembly just allows for much larger files
Thoughts on this technique for serving large files onchain: The main issue is to avoid gas limitations when concatenating huge strings. My solution is to manually copy chunks of data into memory, and then directly manipulate the memory location that stores the string length
He's too modest so I'll splash:
@xaltgeist (who you should follow)
coded contracts to do this and get three.js and p5.js onchain a few months back
xalt's technique use inline datablobs on EVM (via contract storage + assembly tricks to compose large byte arrays in memory)
A preliminary question is how to get these large files into dynamically generated strings (like tokenURI) since ordinary string concatenation is basically off the table. Might require generalizing the manual-memory-manipulation approach for any endpoint incorporating these files
Some ongoing questions include: how should the file data be stored? What technical limitations might arise for users who want to incorporate onchain files into their own compositions?