GDWeb3 is a GDScript library for interacting with blockchain networks.
Supported Networks:
- Optimism (in progress)
- ...
GDWeb3 aims to help Godot game developers easily interact with blockchain networks, empowering them to develop Gamefi and FOCG (full on-chain games).
However, supporting all blockchain networks at once is not feasible. At this stage, our primary focus is on the Optimism Network. Optimism's performance as an ETH Layer 2 solution is excellent, and it has a strong ecosystem. We believe that supporting a network with promising development will attract game developers to continue building.
We believe that the unique creativity and boundless ideas of game developers will accelerate the development of the web3 gaming industry. Being able to provide assistance to them and, perhaps one day, play enjoyable FOCG games is the joy we find in maintaining this project.
Godot Engine is a feature-packed, cross-platform game engine that allows users to create 2D and 3D games from a unified interface. It provides a comprehensive set of common tools, allowing users to focus on making games without reinventing the wheel. Games can be exported with one click to various platforms, including major desktop platforms (Linux, macOS, Windows), mobile platforms (Android, iOS), web-based platforms, and consoles.
Godot is completely free and open source under the permissive MIT license. Users' games belong to them, down to the last line of engine code. Godot's development is fully independent and community-driven, empowering users to shape the engine to match their expectations. It is supported by the Godot Foundation, a not-for-profit organization.
At this stage, we are developing based on 4.3-stable
version. Currently, we only guarantee upward compatibility. Therefore, when you use the program compiled from this project to extend development on older game projects, please pay attention to the version number of the Godot engine program you originally used.
The project is developed using the basic capabilities of Godot Engine's custom C++ modules.
Based on this capability, we can directly use C++ to implement code without worrying about the performance loss of using GDScript. At the same time, game developers can also use GDScript directly, and the underlying code will eventually be displayed in GDScript.
Thanks to the Godot team for their excellent work!
Since GDWeb3 has not yet been merged into the main branch of Godot (this may become possible in the future), you need to recompile the engine or use our precompiled engine program.
You can refer to this tutorial to set up your own Godot Engine compilation environment. Trust me, it's unbelievably simple! Definitely worth a try!
git clone https://github.com/qingfengzxr/gdscript-web3.git
Copy web3 directory into Godot Engine project's modules directory.
cp -rf ~/gdscript-web3/modules/web3 ~/godot/modules
Don't forget to replace your own path
ubuntu:
sudo apt install libgmp-dev
Also, it is can be install by source code. Reference: https://gmplib.org/
Linux:
scons platform=linuxbsd
MacOS:
scons platform=osx arch=arm64
The latest version is v0.0.2-alpha
.
However, it is not production-ready yet. We will expedite the process as soon as possible.
TODO