Skip to content

Commit 917c059

Browse files
committed
evm: add SolanaCall to GovernanceAction
1 parent d7e1b92 commit 917c059

File tree

3 files changed

+44
-9
lines changed

3 files changed

+44
-9
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,17 @@ NTT supports rate-limiting both on the sending and destination chains. If a tran
4040

4141
If users bridge frequently between a given source chain and destination chain, the capacity could be exhausted quickly. This can leave other users rate-limited, potentially delaying their transfers. To mitigate this issue, the outbound transfer cancels the inbound rate-limit on the source chain (refills the inbound rate-limit by an amount equal to that of the outbound transfer amount) and vice-versa, the inbound transfer cancels the outbound rate-limit on the destination chain (refills the outbound rate-limit by an amount equal to the inbound transfer amount).
4242

43+
## Wormhole Governance
44+
45+
There are general purpose governance contracts implemented for both EVM and Solana, which allow Wormhole Guardians to govern arbitrary contracts if they choose to do so (and the governed contract chooses to as well).
46+
The concrete interpretation of the governance packets are runtime specific, but they both follow the same spec (as defined in https://github.com/wormhole-foundation/wormhole/blob/main/whitepapers/0002_governance_messaging.md).
47+
Namely, the governance messages start with a 32 byte module identifier, which is the string `"GeneralPurposeGovernance"` left padded, followed by a 1 byte action identifier, finally followed by a chain id.
48+
49+
The action identifier specifies the runtime. Currently, these are as follows:
50+
51+
- 0: undefined
52+
- 1: evm
53+
- 2: solana
54+
4355
___
4456
⚠️ **WARNING:** Ensure that if the `NttManager` on the source chain is configured to be in `LOCKING` mode, the corresponding `NttManager`s on the target chains are configured to be in `BURNING` mode. If not, transfers will NOT go through and user funds may be lost! Proceed with caution!

evm/src/wormhole/Governance.sol

+13-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,21 @@ contract Governance {
1111
bytes32 public constant MODULE =
1212
0x000000000000000047656E6572616C507572706F7365476F7665726E616E6365;
1313

14+
/// @notice The known set of governance actions.
15+
/// @dev As the governance logic is expanded to more runtimes, it's
16+
/// important to keep them in sync, at least the newer ones should ensure
17+
/// they don't overlap with the existing ones.
18+
///
19+
/// Existing implementations are not strongly required to be updated
20+
/// to be aware of new actions (as they will never need to know the
21+
/// action indices higher than the one corresponding to the current
22+
/// runtime), but it's good practice.
23+
///
24+
/// When adding a new runtime, make sure to at least update in the README.md
1425
enum GovernanceAction {
1526
UNDEFINED,
16-
EVM_CALL
27+
EVM_CALL,
28+
SOLANA_CALL
1729
}
1830

1931
IWormhole immutable wormhole;

solana/programs/wormhole-governance/src/instructions/governance.rs

+19-8
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl Readable for GovernanceMessage {
145145
));
146146
}
147147
let action: GovernanceAction = Readable::read(reader)?;
148-
if action != GovernanceAction::SolanaInstruction {
148+
if action != GovernanceAction::SolanaCall {
149149
return Err(io::Error::new(
150150
io::ErrorKind::InvalidData,
151151
"Invalid GovernanceAction",
@@ -208,7 +208,7 @@ impl Writeable for GovernanceMessage {
208208
} = self;
209209

210210
Self::MODULE.write(writer)?;
211-
GovernanceAction::SolanaInstruction.write(writer)?;
211+
GovernanceAction::SolanaCall.write(writer)?;
212212
u16::from(Chain::Solana).write(writer)?;
213213
program_id.to_bytes().write(writer)?;
214214
(accounts.len() as u16).write(writer)?;
@@ -252,10 +252,21 @@ fn test_governance_message_serde() {
252252
}
253253

254254
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
255+
/// The known set of governance actions.
256+
///
257+
/// As the governance logic is expanded to more runtimes, it's important to keep
258+
/// them in sync, at least the newer ones should ensure they don't overlap with
259+
/// the existing ones.
260+
///
261+
/// Existing implementations are not strongly required to be updated to be aware
262+
/// of new actions (as they will never need to know the action indices higher
263+
/// than the one corresponding to the current runtime), but it's good practice.
264+
///
265+
/// When adding a new runtime, make sure to at least update in the README.md
255266
pub enum GovernanceAction {
256267
Undefined,
257-
EvmInstruction,
258-
SolanaInstruction,
268+
EvmCall,
269+
SolanaCall,
259270
}
260271

261272
impl Readable for GovernanceAction {
@@ -268,8 +279,8 @@ impl Readable for GovernanceAction {
268279
{
269280
match Readable::read(reader)? {
270281
0 => Ok(GovernanceAction::Undefined),
271-
1 => Ok(GovernanceAction::EvmInstruction),
272-
2 => Ok(GovernanceAction::SolanaInstruction),
282+
1 => Ok(GovernanceAction::EvmCall),
283+
2 => Ok(GovernanceAction::SolanaCall),
273284
_ => Err(io::Error::new(
274285
io::ErrorKind::InvalidData,
275286
"Invalid GovernanceAction",
@@ -289,8 +300,8 @@ impl Writeable for GovernanceAction {
289300
{
290301
match self {
291302
GovernanceAction::Undefined => Ok(()),
292-
GovernanceAction::EvmInstruction => 1.write(writer),
293-
GovernanceAction::SolanaInstruction => 2.write(writer),
303+
GovernanceAction::EvmCall => 1.write(writer),
304+
GovernanceAction::SolanaCall => 2.write(writer),
294305
}
295306
}
296307
}

0 commit comments

Comments
 (0)