-
What does the process look like when you get higher up on the stack? What kind of tooling/SDKs would work with a hyperVM , what kind wouldn't? Lets say you wanted a developer experience similar to solidity, but uses WASM instead. What would be required on the VM side to support this? Would a smart contract written in GO for example, be deployable on every hypervm (assuming wasm compatibilty is built in)? Or are HyperVMs intentionally meant for RPC calls only? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hey, @paOol If you're using a HyperVM, it's important to make sure that any software or SDKs you're using are compatible with the virtualization technology you're using. You can check the documentation or contact the vendor to make sure. Some popular SDKs that work well with HyperVM include Docker SDK, Kubernetes SDK, and OpenStack SDK. If you want to create a smart contract experience like Solidity but using WASM, you'll need to create a virtual machine (VM) that can execute WASM bytecode and provide the necessary interfaces for deploying and interacting with smart contracts. This could involve building your own runtime environment or using an existing VM like wasmtime or wasmer. Depending on your specific needs, you might need to add additional features or capabilities to your VM. Overall, HyperVMs can be used for many different applications beyond just remote procedure calls (RPCs). But it's important to choose the right tools and SDKs to ensure that everything works smoothly and efficiently. |
Beta Was this translation helpful? Give feedback.
-
A The hope is for the
If all (Sorry for the delay responding...still figuring out how to get notifications) |
Beta Was this translation helpful? Give feedback.
-
A lot of this is not well-defined yet. We are focusing on ensuring the core is reliable and fast before building out all the dev tooling/support on top (as primitives approaches may change significantly while we mature the codebase).
No EVM-related tooling works for the I think the biggest missing "UX" piece rn is a simple |
Beta Was this translation helpful? Give feedback.
Hey, @paOol
If you're using a HyperVM, it's important to make sure that any software or SDKs you're using are compatible with the virtualization technology you're using. You can check the documentation or contact the vendor to make sure. Some popular SDKs that work well with HyperVM include Docker SDK, Kubernetes SDK, and OpenStack SDK.
If you want to create a smart contract experience like Solidity but using WASM, you'll need to create a virtual machine (VM) that can execute WASM bytecode and provide the necessary interfaces for deploying and interacting with smart contracts. This could involve building your own runtime environment or using an existing VM like wasmtime or wasmer. Dependi…