page_ecosystem.gno

2.19 Kb · 45 lines
 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### [Gnoscan](https://gnoscan.io)
18
19Developed by the Onbloc team, Gnoscan is gno.land’s blockchain explorer. Anyone can use Gnoscan to easily find
20information that resides on the gno.land blockchain, such as wallet addresses, TX hashes, blocks, and contracts. 
21Gnoscan makes our on-chain data easy to read and intuitive to discover.
22
23Explore the gno.land blockchain at [gnoscan.io](https://gnoscan.io)!
24
25### Adena
26
27Adena is a user-friendly non-custodial wallet for gno.land. Open-source and developed by Onbloc, Adena allows gnomes to 
28interact easily with the chain. With an emphasis on UX, Adena is built to handle millions of realms and tokens with a
29high-quality interface, support for NFTs and custom tokens, and seamless integration.
30
31### Gnoswap
32
33Gnoswap is currently under development and led by the Onbloc team. Gnoswap will be the first DEX on gno.land and is an 
34automated market maker (AMM) protocol written in Gno that allows for permissionless token exchanges on the platform.
35
36### Flippando
37
38Flippando is a simple on-chain memory game, ported from Solidity to Gno, which starts with an empty matrix to flip tiles
39on to see what’s underneath. If the tiles match, they remain uncovered; if not, they are briefly shown, and the player 
40must memorize their colors until the entire matrix is uncovered. The end result can be minted as an NFT, which can later
41be assembled into bigger, more complex NFTs, creating a digital “painting” with the uncovered tiles.
42`
43	)
44	_ = b.NewPost("", path, title, body, "2022-05-20T13:17:23Z", nil, nil)
45}