Skip to content

Commit

Permalink
Merge pull request #128 from trilitech/sasha@ethlondon-temp
Browse files Browse the repository at this point in the history
ethlondon 2023 cheatsheet
  • Loading branch information
sashaaldrick authored Oct 27, 2023
2 parents e59d3d6 + fdcf3f3 commit a22e73d
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export function Layout({ children, title, tableOfContents, lastUpdated }) {
let router = useRouter()
let isHomePage = router.pathname === '/'

let tabPaths = ['tutorials', 'office-hours']
let tabPaths = ['tutorials', 'office-hours', 'ethlondon']
let isTabHomePage =
tabPaths.some((basePath) => router.pathname.endsWith(basePath)) ||
isHomePage
Expand Down
22 changes: 22 additions & 0 deletions src/components/TabLinks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export function TabLinks({ isHomePage }) {
className={`px-4 py-2 ${
!router.pathname.includes('tutorials') &&
!router.pathname.includes('office-hours') &&
!router.pathname.includes('ethlondon') &&
!isHomePage
? 'text-blue-400'
: 'text-white'
Expand Down Expand Up @@ -89,6 +90,27 @@ export function TabLinks({ isHomePage }) {
</h2>
)}
</Link>
<Link
href="/ethlondon"
className={`px-4 py-2 ${
router.pathname.includes('/ethlondon')
? 'text-blue-400'
: 'text-white'
}`}
>
{isLargeScreen ? (
<div className="hover:text-gray-300 dark:hover:text-gray-500">
ETHLondon
</div>
) : (
<h2
className="font-display font-medium text-slate-900 hover:text-blue-400 dark:text-white"
style={{ fontSize: '1.3em' }}
>
ETHLondon
</h2>
)}
</Link>
</div>
)

Expand Down
77 changes: 77 additions & 0 deletions src/pages/ethlondon/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
title: ETHLondon 2023 Cheatsheet
description: Get started on your Tezos hackathon project
---

Interested in building on Tezos for ETHLondon 2023?
**You’ve come to the right place.**

## Support

* We'll be at ETHLondon all weekend, look out for the people in white Tezos t-shirts! We're a friendly bunch, come and talk to us!
* Join our [Discord](https://discord.gg/etherlink) and use the [#dev-help](https://discord.com/channels/699325006928281720/710095412639432705) channel to ask any questions
* You're on the docs site, so feel free to start at the [beginning](https://docs.tezos.com/tezos-basics/tezos-blockchain-overview/) or head straight over to the [tutorials](https://docs.tezos.com/tutorials/) to get started 🚀



## Bounties

{% table %}
* **ETHLondon Tezos Bounties** {% colspan=2 %}
---
* ****
* **Prize Amount**
---
* Best project using [SmartPy](https://smartpy.io)
* $2500
---
* Best project using [LIGO](https://ligolang.org/)
* $2500
---
* Best DeFi project
* $2500
---
* Best project using [Taquito](https://tezostaquito.io/) & [Beacon SDK](https://tezos.com/developers/docs/dapp-development/wallets-and-beacon-sdk/)
* $2500

{% /table %}

## Quick Links

{% table %}
* **Development** {% colspan=2 %}
---
* **Languages**
* [SmartPy](https://smartpy.io/)
* [LIGO](https://ligolang.org/)
---
* **Tooling**
* [Taqueria](https://taqueria.io/): `brew install taqueria`
* [Unity SDK (Gaming)](https://tezos.com/unity)
---
* **Frontend**
* Looking for Ethers.JS? —> [Taquito](https://tezostaquito.io/)
* Looking for WalletConnect? —> [Beacon SDK](https://tezos.com/developers/docs/dapp-development/wallets-and-beacon-sdk/)
{% /table %}

{% table %}

* **Apps** {% colspan=2 %}
---
* **Wallets**
* [Temple](https://templewallet.com/)
* [Umami](https://umamiwallet.com/)
* [Kukai](https://wallet.kukai.app/)
* [Airgap](https://airgap.it/)
---
* **DeFi**
* [Plenty](https://plenty.network/)
* [Youves](https://youves.com/)
* [Quipuswap](https://quipuswap.com/)
---
* **Art**
* [objkt](https://objkt.com/)
* [fxhash](https://www.fxhash.xyz/)
{% /table %}

# Thanks and enjoy ETHLondon 🙏

0 comments on commit a22e73d

Please sign in to comment.