You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-14
Original file line number
Diff line number
Diff line change
@@ -1,36 +1,34 @@
1
1
# XMTP Contracts
2
2
3
3
-[XMTP Contracts](#xmtp-contracts)
4
-
-[Messages Contracts](#messages-contracts)
5
-
-[XMTP Node Registry](#xmtp-node-registry)
4
+
-[Messaging Contracts](#messaging-contracts)
5
+
-[Node Registry](#node-registry)
6
6
-[Usage](#usage)
7
7
-[Prerequisites](#prerequisites)
8
8
-[Install](#install)
9
9
-[Test](#test)
10
10
-[Run static analysis](#run-static-analysis)
11
11
-[Scripts](#scripts)
12
-
-[Messages contracts](#messages-contracts-1)
12
+
-[Messages contracts](#messaging-contracts-1)
13
13
-[Node registry](#node-registry)
14
14
15
15
**⚠️ Experimental:** This software is in early development. Expect frequent changes and unresolved issues.
16
16
17
17
This repository contains all the smart contracts that underpin the XMTP decentralized network.
18
18
19
-
## Messages Contracts
19
+
## Messaging Contracts
20
20
21
-
The messages contracts manage the blockchain state for `GroupMessages` and `IdentityUpdates` sent by clients to the network.
21
+
The messaging contracts `GroupMessageBroadcaster` and `IdentityUpdateBroadcaster` respectively manage the broadcasting for `GroupMessages` and `IdentityUpdates` sent by clients to the network.
22
22
23
-
These contracts ensure transparency and provide a historical record of state changes.
23
+
## Node Registry
24
24
25
-
## XMTP Node Registry
26
-
27
-
The `XMTP Node Registry` maintains a blockchain-based record of all node operators participating in the XMTP network. This registry serves as a source of truth for the network's active node participants, contributing to the network's integrity.
25
+
The `NodeRegistry` maintains a record of all node operators participating in the XMTP network. This registry serves as a source of truth for the network's active node participants, contributing to the network's integrity.
28
26
29
27
The registry is currently implemented following the [ERC721](https://eips.ethereum.org/EIPS/eip-721) standard.
30
28
31
29
## Usage
32
30
33
-
The project is built with the `Foundry` framework, and dependency management is handled using `soldeer`.
31
+
The project is built with the `Foundry` framework, and dependency management is handled using native git submodules.
34
32
35
33
Additionally, it uses `slither` for static analysis.
36
34
@@ -74,7 +72,7 @@ slither .
74
72
75
73
The project includes deployer and upgrade scripts.
76
74
77
-
### Messages contracts
75
+
### Messaging contracts
78
76
79
77
- Configure the environment by creating an `.env` file, with this content:
80
78
@@ -83,8 +81,8 @@ The project includes deployer and upgrade scripts.
83
81
PRIVATE_KEY=0xYourPrivateKey # Private key of the EOA deploying the contracts
84
82
85
83
### XMTP deployment configuration
86
-
XMTP_GROUP_MESSAGES_ADMIN_ADDRESS=0x12345abcdf # the EOA assuming the admin role in the GroupMessages contract.
87
-
XMTP_IDENTITY_UPDATES_ADMIN_ADDRESS=0x12345abcdf # the EOA assuming the admin role in the IdentityUpdates contract.
84
+
XMTP_GROUP_MESSAGE_BROADCASTER_ADMIN_ADDRESS=0x12345abcdf # the EOA assuming the admin role in the GroupMessageBroadcaster contract.
85
+
XMTP_IDENTITY_UPDATE_BROADCASTER_ADMIN_ADDRESS=0x12345abcdf # the EOA assuming the admin role in the IdentityUpdateBroadcaster contract.
88
86
```
89
87
90
88
- Run the desired script with:
@@ -108,5 +106,5 @@ The scripts output the deployment and upgrade in the `output` folder.
0 commit comments