Skip to content

Commit 784be6f

Browse files
committed
refactor: Rename contracts appropriately
1 parent 6f2de5e commit 784be6f

18 files changed

+641
-647
lines changed

README.md

+12-14
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
11
# XMTP Contracts
22

33
- [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)
66
- [Usage](#usage)
77
- [Prerequisites](#prerequisites)
88
- [Install](#install)
99
- [Test](#test)
1010
- [Run static analysis](#run-static-analysis)
1111
- [Scripts](#scripts)
12-
- [Messages contracts](#messages-contracts-1)
12+
- [Messages contracts](#messaging-contracts-1)
1313
- [Node registry](#node-registry)
1414

1515
**⚠️ Experimental:** This software is in early development. Expect frequent changes and unresolved issues.
1616

1717
This repository contains all the smart contracts that underpin the XMTP decentralized network.
1818

19-
## Messages Contracts
19+
## Messaging Contracts
2020

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.
2222

23-
These contracts ensure transparency and provide a historical record of state changes.
23+
## Node Registry
2424

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.
2826

2927
The registry is currently implemented following the [ERC721](https://eips.ethereum.org/EIPS/eip-721) standard.
3028

3129
## Usage
3230

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.
3432

3533
Additionally, it uses `slither` for static analysis.
3634

@@ -74,7 +72,7 @@ slither .
7472

7573
The project includes deployer and upgrade scripts.
7674

77-
### Messages contracts
75+
### Messaging contracts
7876

7977
- Configure the environment by creating an `.env` file, with this content:
8078

@@ -83,8 +81,8 @@ The project includes deployer and upgrade scripts.
8381
PRIVATE_KEY=0xYourPrivateKey # Private key of the EOA deploying the contracts
8482

8583
### 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.
8886
```
8987

9088
- Run the desired script with:
@@ -108,5 +106,5 @@ The scripts output the deployment and upgrade in the `output` folder.
108106
- Deploy with `forge create`:
109107

110108
```shell
111-
forge create --broadcast --legacy --json --rpc-url $RPC_URL --private-key $PRIVATE_KEY "src/Nodes.sol:Nodes"
109+
forge create --broadcast --legacy --json --rpc-url $RPC_URL --private-key $PRIVATE_KEY "src/NodeRegistry.sol:NodeRegistry"
112110
```

script/DeployGroupMessages.s.sol script/DeployGroupMessageBroadcaster.s.sol

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ pragma solidity 0.8.28;
33

44
import { ERC1967Proxy } from "../lib/oz/contracts/proxy/ERC1967/ERC1967Proxy.sol";
55

6-
import { GroupMessages } from "../src/GroupMessages.sol";
6+
import { GroupMessageBroadcaster } from "../src/GroupMessageBroadcaster.sol";
77

88
import { Utils } from "./utils/Utils.sol";
99
import { Environment } from "./utils/Environment.sol";
1010

11-
contract DeployGroupMessages is Utils, Environment {
12-
GroupMessages groupMessagesImpl;
11+
contract DeployGroupMessageBroadcaster is Utils, Environment {
12+
GroupMessageBroadcaster implementation;
1313
ERC1967Proxy proxy;
1414

1515
address admin;
1616
address deployer;
1717

1818
function run() external {
19-
admin = vm.envAddress("XMTP_GROUP_MESSAGES_ADMIN_ADDRESS");
20-
require(admin != address(0), "XMTP_GROUP_MESSAGES_ADMIN_ADDRESS not set");
19+
admin = vm.envAddress("XMTP_GROUP_MESSAGE_BROADCASTER_ADMIN_ADDRESS");
20+
require(admin != address(0), "XMTP_GROUP_MESSAGE_BROADCASTER_ADMIN_ADDRESS not set");
2121

2222
uint256 privateKey = vm.envUint("PRIVATE_KEY");
2323
require(privateKey != 0, "PRIVATE_KEY not set");
@@ -26,13 +26,13 @@ contract DeployGroupMessages is Utils, Environment {
2626
vm.startBroadcast(privateKey);
2727

2828
// Deploy the implementation contract.
29-
groupMessagesImpl = new GroupMessages();
30-
require(address(groupMessagesImpl) != address(0), "Implementation deployment failed");
29+
implementation = new GroupMessageBroadcaster();
30+
require(address(implementation) != address(0), "Implementation deployment failed");
3131

3232
// Deploy the proxy contract.
3333
proxy = new ERC1967Proxy(
34-
address(groupMessagesImpl),
35-
abi.encodeWithSelector(GroupMessages.initialize.selector, admin)
34+
address(implementation),
35+
abi.encodeWithSelector(GroupMessageBroadcaster.initialize.selector, admin)
3636
);
3737

3838
vm.stopBroadcast();
@@ -49,13 +49,13 @@ contract DeployGroupMessages is Utils, Environment {
4949
addressesOutput = vm.serializeAddress(addresses, "deployer", deployer);
5050
addressesOutput = vm.serializeAddress(addresses, "proxyAdmin", admin);
5151
addressesOutput = vm.serializeAddress(addresses, "proxy", address(proxy));
52-
addressesOutput = vm.serializeAddress(addresses, "implementation", address(groupMessagesImpl));
52+
addressesOutput = vm.serializeAddress(addresses, "implementation", address(implementation));
5353

5454
string memory finalJson;
5555
finalJson = vm.serializeString(parent_object, addresses, addressesOutput);
5656
finalJson = vm.serializeUint(parent_object, "deploymentBlock", block.number);
5757
finalJson = vm.serializeUint(parent_object, "latestUpgradeBlock", block.number);
5858

59-
writeOutput(finalJson, XMTP_GROUP_MESSAGES_OUTPUT_JSON);
59+
writeOutput(finalJson, XMTP_GROUP_MESSAGE_BROADCASTER_OUTPUT_JSON);
6060
}
6161
}

script/DeployIdentityUpdates.s.sol script/DeployIdentityUpdateBroadcaster.s.sol

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ pragma solidity 0.8.28;
33

44
import { ERC1967Proxy } from "../lib/oz/contracts/proxy/ERC1967/ERC1967Proxy.sol";
55

6-
import { IdentityUpdates } from "../src/IdentityUpdates.sol";
6+
import { IdentityUpdateBroadcaster } from "../src/IdentityUpdateBroadcaster.sol";
77

88
import { Utils } from "./utils/Utils.sol";
99
import { Environment } from "./utils/Environment.sol";
1010

11-
contract DeployIdentityUpdates is Utils, Environment {
12-
IdentityUpdates idUpdatesImpl;
11+
contract DeployIdentityUpdateBroadcaster is Utils, Environment {
12+
IdentityUpdateBroadcaster implementation;
1313
ERC1967Proxy proxy;
1414

1515
address admin;
1616
address deployer;
1717

1818
function run() external {
19-
admin = vm.envAddress("XMTP_IDENTITY_UPDATES_ADMIN_ADDRESS");
20-
require(admin != address(0), "XMTP_IDENTITY_UPDATES_ADMIN_ADDRESS not set");
19+
admin = vm.envAddress("XMTP_IDENTITY_UPDATE_BROADCASTER_ADMIN_ADDRESS");
20+
require(admin != address(0), "XMTP_IDENTITY_UPDATE_BROADCASTER_ADMIN_ADDRESS not set");
2121

2222
uint256 privateKey = vm.envUint("PRIVATE_KEY");
2323
require(privateKey != 0, "PRIVATE_KEY not set");
@@ -26,13 +26,13 @@ contract DeployIdentityUpdates is Utils, Environment {
2626
vm.startBroadcast(privateKey);
2727

2828
// Deploy the implementation contract.
29-
idUpdatesImpl = new IdentityUpdates();
30-
require(address(idUpdatesImpl) != address(0), "Implementation deployment failed");
29+
implementation = new IdentityUpdateBroadcaster();
30+
require(address(implementation) != address(0), "Implementation deployment failed");
3131

3232
// Deploy the proxy contract.
3333
proxy = new ERC1967Proxy(
34-
address(idUpdatesImpl),
35-
abi.encodeWithSelector(IdentityUpdates.initialize.selector, admin)
34+
address(implementation),
35+
abi.encodeWithSelector(IdentityUpdateBroadcaster.initialize.selector, admin)
3636
);
3737

3838
vm.stopBroadcast();
@@ -49,13 +49,13 @@ contract DeployIdentityUpdates is Utils, Environment {
4949
addressesOutput = vm.serializeAddress(addresses, "deployer", deployer);
5050
addressesOutput = vm.serializeAddress(addresses, "proxyAdmin", admin);
5151
addressesOutput = vm.serializeAddress(addresses, "proxy", address(proxy));
52-
addressesOutput = vm.serializeAddress(addresses, "implementation", address(idUpdatesImpl));
52+
addressesOutput = vm.serializeAddress(addresses, "implementation", address(implementation));
5353

5454
string memory finalJson;
5555
finalJson = vm.serializeString(parent_object, addresses, addressesOutput);
5656
finalJson = vm.serializeUint(parent_object, "deploymentBlock", block.number);
5757
finalJson = vm.serializeUint(parent_object, "latestUpgradeBlock", block.number);
5858

59-
writeOutput(finalJson, XMTP_IDENTITY_UPDATES_OUTPUT_JSON);
59+
writeOutput(finalJson, XMTP_IDENTITY_UPDATE_BROADCASTER_OUTPUT_JSON);
6060
}
6161
}

script/DeployNodeRegistry.s.sol

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity 0.8.28;
33

4-
import { Nodes } from "../src/Nodes.sol";
4+
import { NodeRegistry } from "../src/NodeRegistry.sol";
55

66
import { Utils } from "./utils/Utils.sol";
77
import { Environment } from "./utils/Environment.sol";
88

9-
contract DeployXMTPNodeRegistry is Utils, Environment {
10-
Nodes nodes;
9+
contract DeployNodeRegistry is Utils, Environment {
10+
NodeRegistry nodes;
1111

1212
address admin;
1313
address deployer;
@@ -22,8 +22,8 @@ contract DeployXMTPNodeRegistry is Utils, Environment {
2222
deployer = vm.addr(privateKey);
2323
vm.startBroadcast(privateKey);
2424

25-
nodes = new Nodes(admin);
26-
require(address(nodes) != address(0), "Nodes deployment failed");
25+
nodes = new NodeRegistry(admin);
26+
require(address(nodes) != address(0), "NodeRegistry deployment failed");
2727

2828
vm.stopBroadcast();
2929

script/DeployRatesManager.s.sol

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ pragma solidity 0.8.28;
33

44
import { ERC1967Proxy } from "../lib/oz/contracts/proxy/ERC1967/ERC1967Proxy.sol";
55

6-
import { RatesManager } from "../src/RatesManager.sol";
6+
import { RateRegistry } from "../src/RateRegistry.sol";
77

88
import { Utils } from "./utils/Utils.sol";
99
import { Environment } from "./utils/Environment.sol";
1010

11-
contract DeployRatesManager is Utils, Environment {
12-
RatesManager ratesManagerImpl;
11+
contract DeployRateRegistry is Utils, Environment {
12+
RateRegistry implementation;
1313
ERC1967Proxy proxy;
1414

1515
address admin;
1616
address deployer;
1717

1818
function run() external {
19-
admin = vm.envAddress("XMTP_RATES_MANAGER_ADMIN_ADDRESS");
20-
require(admin != address(0), "XMTP_RATES_MANAGER_ADMIN_ADDRESS not set");
19+
admin = vm.envAddress("XMTP_RATE_REGISTRY_ADMIN_ADDRESS");
20+
require(admin != address(0), "XMTP_RATE_REGISTRY_ADMIN_ADDRESS not set");
2121

2222
uint256 privateKey = vm.envUint("PRIVATE_KEY");
2323
require(privateKey != 0, "PRIVATE_KEY not set");
@@ -26,13 +26,13 @@ contract DeployRatesManager is Utils, Environment {
2626
vm.startBroadcast(privateKey);
2727

2828
// Deploy the implementation contract.
29-
ratesManagerImpl = new RatesManager();
30-
require(address(ratesManagerImpl) != address(0), "Implementation deployment failed");
29+
implementation = new RateRegistry();
30+
require(address(implementation) != address(0), "Implementation deployment failed");
3131

3232
// Deploy the proxy contract.
3333
proxy = new ERC1967Proxy(
34-
address(ratesManagerImpl),
35-
abi.encodeWithSelector(RatesManager.initialize.selector, admin)
34+
address(implementation),
35+
abi.encodeWithSelector(RateRegistry.initialize.selector, admin)
3636
);
3737

3838
vm.stopBroadcast();
@@ -49,13 +49,13 @@ contract DeployRatesManager is Utils, Environment {
4949
addressesOutput = vm.serializeAddress(addresses, "deployer", deployer);
5050
addressesOutput = vm.serializeAddress(addresses, "proxyAdmin", admin);
5151
addressesOutput = vm.serializeAddress(addresses, "proxy", address(proxy));
52-
addressesOutput = vm.serializeAddress(addresses, "implementation", address(ratesManagerImpl));
52+
addressesOutput = vm.serializeAddress(addresses, "implementation", address(implementation));
5353

5454
string memory finalJson;
5555
finalJson = vm.serializeString(parent_object, addresses, addressesOutput);
5656
finalJson = vm.serializeUint(parent_object, "deploymentBlock", block.number);
5757
finalJson = vm.serializeUint(parent_object, "latestUpgradeBlock", block.number);
5858

59-
writeOutput(finalJson, XMTP_RATES_MANAGER_OUTPUT_JSON);
59+
writeOutput(finalJson, XMTP_RATE_REGISTRY_OUTPUT_JSON);
6060
}
6161
}

script/upgrades/UpgradeGroupMessages.s.sol script/upgrades/UpgradeGroupMessageBroadcaster.s.sol

+13-9
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ pragma solidity 0.8.28;
44
import { stdJson } from "../../lib/forge-std/src/StdJson.sol";
55
import { ERC1967Proxy } from "../../lib/oz/contracts/proxy/ERC1967/ERC1967Proxy.sol";
66

7-
import { GroupMessages } from "../../src/GroupMessages.sol";
7+
import { GroupMessageBroadcaster } from "../../src/GroupMessageBroadcaster.sol";
88

99
import { Utils } from "../utils/Utils.sol";
1010
import { Environment } from "../utils/Environment.sol";
1111

12-
contract UpgradeGroupMessages is Utils, Environment {
13-
GroupMessages newImplementation;
14-
GroupMessages proxy;
12+
contract UpgradeGroupMessageBroadcaster is Utils, Environment {
13+
GroupMessageBroadcaster newImplementation;
14+
GroupMessageBroadcaster proxy;
1515

1616
address upgrader;
1717

@@ -24,7 +24,7 @@ contract UpgradeGroupMessages is Utils, Environment {
2424
_initializeProxy();
2525

2626
// Deploy the new implementation contract.
27-
newImplementation = new GroupMessages();
27+
newImplementation = new GroupMessageBroadcaster();
2828
require(address(newImplementation) != address(0), "Implementation deployment failed");
2929

3030
// Upgrade the proxy pointer to the new implementation.
@@ -36,18 +36,22 @@ contract UpgradeGroupMessages is Utils, Environment {
3636
}
3737

3838
function _initializeProxy() internal {
39-
string memory fileContent = readOutput(XMTP_GROUP_MESSAGES_OUTPUT_JSON);
40-
proxy = GroupMessages(stdJson.readAddress(fileContent, ".addresses.proxy"));
39+
string memory fileContent = readOutput(XMTP_GROUP_MESSAGE_BROADCASTER_OUTPUT_JSON);
40+
proxy = GroupMessageBroadcaster(stdJson.readAddress(fileContent, ".addresses.proxy"));
4141
require(address(proxy) != address(0), "proxy address not set");
4242
require(proxy.hasRole(proxy.DEFAULT_ADMIN_ROLE(), upgrader), "Upgrader must have admin role");
4343
}
4444

4545
function _serializeUpgradeData() internal {
4646
vm.writeJson(
4747
vm.toString(address(newImplementation)),
48-
getOutputPath(XMTP_GROUP_MESSAGES_OUTPUT_JSON),
48+
getOutputPath(XMTP_GROUP_MESSAGE_BROADCASTER_OUTPUT_JSON),
4949
".addresses.implementation"
5050
);
51-
vm.writeJson(vm.toString(block.number), getOutputPath(XMTP_GROUP_MESSAGES_OUTPUT_JSON), ".latestUpgradeBlock");
51+
vm.writeJson(
52+
vm.toString(block.number),
53+
getOutputPath(XMTP_GROUP_MESSAGE_BROADCASTER_OUTPUT_JSON),
54+
".latestUpgradeBlock"
55+
);
5256
}
5357
}

script/upgrades/UpgradeIdentityUpdates.s.sol script/upgrades/UpgradeIdentityUpdateBroadcaster.s.sol

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ pragma solidity 0.8.28;
44
import { stdJson } from "../../lib/forge-std/src/StdJson.sol";
55
import { ERC1967Proxy } from "../../lib/oz/contracts/proxy/ERC1967/ERC1967Proxy.sol";
66

7-
import { IdentityUpdates } from "../../src/IdentityUpdates.sol";
7+
import { IdentityUpdateBroadcaster } from "../../src/IdentityUpdateBroadcaster.sol";
88

99
import { Utils } from "../utils/Utils.sol";
1010
import { Environment } from "../utils/Environment.sol";
1111

12-
contract UpgradeIdentityUpdates is Utils, Environment {
13-
IdentityUpdates newImplementation;
14-
IdentityUpdates proxy;
12+
contract UpgradeIdentityUpdateBroadcaster is Utils, Environment {
13+
IdentityUpdateBroadcaster newImplementation;
14+
IdentityUpdateBroadcaster proxy;
1515

1616
address upgrader;
1717

@@ -24,7 +24,7 @@ contract UpgradeIdentityUpdates is Utils, Environment {
2424
_initializeProxy();
2525

2626
// Deploy the new implementation contract.
27-
newImplementation = new IdentityUpdates();
27+
newImplementation = new IdentityUpdateBroadcaster();
2828
require(address(newImplementation) != address(0), "Implementation deployment failed");
2929

3030
// Upgrade the proxy pointer to the new implementation.
@@ -36,21 +36,21 @@ contract UpgradeIdentityUpdates is Utils, Environment {
3636
}
3737

3838
function _initializeProxy() internal {
39-
string memory fileContent = readOutput(XMTP_IDENTITY_UPDATES_OUTPUT_JSON);
40-
proxy = IdentityUpdates(stdJson.readAddress(fileContent, ".addresses.proxy"));
39+
string memory fileContent = readOutput(XMTP_IDENTITY_UPDATE_BROADCASTER_OUTPUT_JSON);
40+
proxy = IdentityUpdateBroadcaster(stdJson.readAddress(fileContent, ".addresses.proxy"));
4141
require(address(proxy) != address(0), "proxy address not set");
4242
require(proxy.hasRole(proxy.DEFAULT_ADMIN_ROLE(), upgrader), "Upgrader must have admin role");
4343
}
4444

4545
function _serializeUpgradeData() internal {
4646
vm.writeJson(
4747
vm.toString(address(newImplementation)),
48-
getOutputPath(XMTP_IDENTITY_UPDATES_OUTPUT_JSON),
48+
getOutputPath(XMTP_IDENTITY_UPDATE_BROADCASTER_OUTPUT_JSON),
4949
".addresses.implementation"
5050
);
5151
vm.writeJson(
5252
vm.toString(block.number),
53-
getOutputPath(XMTP_IDENTITY_UPDATES_OUTPUT_JSON),
53+
getOutputPath(XMTP_IDENTITY_UPDATE_BROADCASTER_OUTPUT_JSON),
5454
".latestUpgradeBlock"
5555
);
5656
}

0 commit comments

Comments
 (0)