From 4d4853a3ffa2b5573dd7d0012efba523846e1e5f Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Wed, 6 Nov 2024 12:27:21 -0600 Subject: [PATCH] Add Wasmd Fork ADR --- ...-transfer-wasmd-fork-logic-to-wormchain.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 wormchain/docs/architecture/0006-transfer-wasmd-fork-logic-to-wormchain.md diff --git a/wormchain/docs/architecture/0006-transfer-wasmd-fork-logic-to-wormchain.md b/wormchain/docs/architecture/0006-transfer-wasmd-fork-logic-to-wormchain.md new file mode 100644 index 0000000000..b57783e219 --- /dev/null +++ b/wormchain/docs/architecture/0006-transfer-wasmd-fork-logic-to-wormchain.md @@ -0,0 +1,19 @@ +# 6. Transfer Wasmd Fork Logic to Wormchain Ante Handler + +Date: 2024-07-29 + +## Status + +Accepted + +## Context + +The Wormchain repo dependeds on a fork of `wasmd` to prevent certain types of Wasm transactions from being accepted by the chain. The Strangelove team proposed migrating the logic to an Ante Handler on chain to remove the need to maintain a fork of `wasmd`. + +## Decision + +After some discussion and investigation, the Strangelove team has decided to transfer the fork logic to an Ante Handler on Wormchain. This will allow the Wormchain to be more in line with the Cosmos SDK and reduce the maintenance overhead of maintaining a fork of `wasmd`. + +## Consequences + +The Wormchain will no longer depend on a fork of `wasmd` and will be able to upgrade to newer versions of the Cosmos SDK more easily. The Strangelove team will need to implement the Ante Handler and test it to ensure that it works as expected. As of now, the Strangelove team has not identified any major risks associated with this decision. \ No newline at end of file