Skip to content

Commit e404f3d

Browse files
tiny enhancements
1 parent d88ddec commit e404f3d

File tree

2 files changed

+39
-10
lines changed

2 files changed

+39
-10
lines changed

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
## For Developers
1010

1111
* [Integrate TACo Into Apps](for-developers/taco-integration/README.md)
12-
* [Testnets](for-developers/taco-integration/get-started-with-tac.md)
12+
* [Get Started with TACo Domains](for-developers/taco-integration/get-started-with-tac.md)
1313
* [Mainnet Access](for-developers/taco-integration/mainnet-taco-beta-program.md)
1414
* [Mainnet Deployment](for-developers/taco-integration/deploying-to-mainnet.md)
1515
* [Ecosystem Integrations](for-developers/integrations/README.md)

for-developers/taco-integration/get-started-with-tac.md

Lines changed: 38 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TACo Domains
1+
# Get Started with TACo Domains
22

33
{% hint style="warning" %}
44
Testnets exist to help developers familiarize themselves with the taco-web API, and prototype an integration before deploying on TACo Mainnet. \
@@ -12,11 +12,40 @@ Hence, the trust assumptions are strictly worse than the Mainnet version, partic
1212

1313
TACo supports three domains for different use cases:
1414

15-
| Description | TACo Domain | Network Type | Production | Chain ID | Available Rituals |
16-
| --------------------------------------- | ----------- | ------------ | ---------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
17-
| Bleeding-edge developer network | lynx | DEVNET | ❌ No | 80002 | **Ritual 27** (Cohort 2-of-3)<br/>🟢 **Open** - No encryptor restrictions<br/>_Any address can encrypt data_ |
18-
| Stable testnet for current TACo release | tapir | TESTNET | ❌ No | 80002 | **Ritual 6** (Cohort 4-of-6)<br/>🟢 **Open** - No encryptor restrictions<br/>_Any address can encrypt data_ |
19-
| Production network | mainnet | MAINNET | ✅ Yes | 137 | **No open rituals freely available**<br/>🔒 **Custom setup required**: Every dapp needs to have a custom ritual setup<br/>_Contact TACo team for ritual creation. You can reach on [Discord](http://discord.gg/buildwithtaco)_ |
15+
<table>
16+
<thead>
17+
<tr>
18+
<th width="12%">TACo Domain</th>
19+
<th width="12%">Network Type</th>
20+
<th width="10%">Production</th>
21+
<th width="15%">Chain (chain id)</th>
22+
<th width="*">Open Rituals</th>
23+
</tr>
24+
</thead>
25+
<tbody>
26+
<tr>
27+
<td>lynx</td>
28+
<td>DEVNET</td>
29+
<td>❌ No</td>
30+
<td>Amoy (80002)</td>
31+
<td><strong>Ritual 27</strong>: 🟢 Open with no encryptor restrictions - Cohort 2-of-3</td>
32+
</tr>
33+
<tr>
34+
<td>tapir</td>
35+
<td>TESTNET</td>
36+
<td>❌ No</td>
37+
<td>Amoy (80002)</td>
38+
<td><strong>Ritual 6</strong>: 🟢 Open with no encryptor restrictions - Cohort 4-of-6</td>
39+
</tr>
40+
<tr>
41+
<td>mainnet</td>
42+
<td>MAINNET</td>
43+
<td>✅ Yes</td>
44+
<td>Polygon (137)</td>
45+
<td>No open rituals freely available<br/>🔒 <strong>Custom setup required</strong> - <em><a href="http://discord.gg/buildwithtaco">Contact TACo team for ritual setup</a></em></td>
46+
</tr>
47+
</tbody>
48+
</table>
2049

2150
{% hint style="info" %}
2251
**Open ritualID** refers to a DKG cohort & public key with no restrictions on encryptors – i.e. any device or address can use the public key to encrypt data. See the [encryptor allowlist](../references/encryptor-allowlist.md) section to learn more.
@@ -45,7 +74,7 @@ domains.MAINNET; // "mainnet" domain
4574
- **Network Type:** DEVNET
4675
- **Production:** ❌ No
4776
- **Chain:** Polygon Amoy (80002) - Your provider needs to be connected to this chain.
48-
- **L1 Chain:** Sepolia (11155111) - For you, this is just a metadata field.
77+
- **L1 Chain:** Sepolia (11155111) - For you, this is just a metadata info.
4978
- **Status:** Testnet (Development) - May have breaking changes
5079

5180
**Connectivity:**
@@ -88,7 +117,7 @@ const decryptedMessage = await decrypt(
88117
- **Network Type:** TESTNET
89118
- **Production:** ❌ No
90119
- **Chain:** Polygon Amoy (80002) - Your provider needs to be connected to this chain.
91-
- **L1 Chain:** Sepolia (11155111) - For you, this is just a metadata field.
120+
- **L1 Chain:** Sepolia (11155111) - For you, this is just a metadata info.
92121
- **Status:** Testnet (Stable) - Recommended for development and testing
93122

94123
**Connectivity:**
@@ -131,7 +160,7 @@ const decryptedMessage = await decrypt(
131160
- **Network Type:** MAINNET
132161
- **Production:** ✅ Yes
133162
- **Chain:** Polygon (137) - Your provider needs to be connected to this chain.
134-
- **L1 Chain:** Ethereum (1) - For you, this is just a metadata field.
163+
- **L1 Chain:** Ethereum (1) - For you, this is just a metadata info.
135164
- **Status:** Production - Requires custom ritual setup and payment
136165

137166
**Connectivity:**

0 commit comments

Comments
 (0)