1package gnopages
2
3func init() {
4 var (
5 path = "ecosystem"
6 title = "Discover gno.land Ecosystem Projects & Initiatives"
7 // XXX: description = "Dive further into the gno.land ecosystem and discover the core infrastructure, projects, smart contracts, and tooling we’re building."
8 body = `
9### [Gno Playground](https://play.gno.land)
10
11Gno Playground is a simple web interface that lets you write, test, and experiment with your Gno code to improve your
12understanding of the Gno language. You can share your code, run unit tests, deploy your realms and packages, and execute
13functions in your code using the repo.
14
15Visit the playground at [play.gno.land](https://play.gno.land)!
16
17### [Gno Studio Connect](https://gno.studio/connect)
18
19Gno Studio Connect provides seamless access to realms, making it simple to explore, interact, and engage
20with gno.land’s smart contracts through function calls. Connect focuses on function calls, enabling users to interact
21with any realm’s exposed function(s) on gno.land.
22
23See your realm interactions in [Gno Studio Connect](https://gno.studio/connect)
24
25### [Gnoscan](https://gnoscan.io)
26
27Developed by the Onbloc team, Gnoscan is gno.land’s blockchain explorer. Anyone can use Gnoscan to easily find
28information that resides on the gno.land blockchain, such as wallet addresses, TX hashes, blocks, and contracts.
29Gnoscan makes our on-chain data easy to read and intuitive to discover.
30
31Explore the gno.land blockchain at [gnoscan.io](https://gnoscan.io)!
32
33### Adena
34
35Adena is a user-friendly non-custodial wallet for gno.land. Open-source and developed by Onbloc, Adena allows gnomes to
36interact easily with the chain. With an emphasis on UX, Adena is built to handle millions of realms and tokens with a
37high-quality interface, support for NFTs and custom tokens, and seamless integration. Install Adena via the [official website](https://www.adena.app/)
38
39### Gnoswap
40
41Gnoswap is currently under development and led by the Onbloc team. Gnoswap will be the first DEX on gno.land and is an
42automated market maker (AMM) protocol written in Gno that allows for permissionless token exchanges on the platform.
43
44### Flippando
45
46Flippando is a simple on-chain memory game, ported from Solidity to Gno, which starts with an empty matrix to flip tiles
47on to see what’s underneath. If the tiles match, they remain uncovered; if not, they are briefly shown, and the player
48must memorize their colors until the entire matrix is uncovered. The end result can be minted as an NFT, which can later
49be assembled into bigger, more complex NFTs, creating a digital “painting” with the uncovered tiles. Play the game at [Flippando](https://gno.flippando.xyz/flip)
50
51### Gno Native Kit
52
53[Gno Native Kit](https://github.com/gnolang/gnonative) is a framework that allows developers to build and port gno.land (d)apps written in the (d)app's native language.
54
55
56`
57 )
58 _ = b.NewPost("", path, title, body, "2022-05-20T13:17:23Z", nil, nil)
59}
page_ecosystem.gno
2.90 Kb · 59 lines