From 7544cb8483acdcf6c7735717a5d2dc3e68e85714 Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Tue, 16 Jan 2024 12:11:02 +0200 Subject: [PATCH] More doc touch ups --- contracts/guard/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/guard/README.md b/contracts/guard/README.md index 446d5be9..ff6749c2 100644 --- a/contracts/guard/README.md +++ b/contracts/guard/README.md @@ -33,14 +33,14 @@ It can be used with any asset management protocol e.g. Examples of protected activities that asset manager must be whitelisted to do: - Every smart contract call must be whitelisted: `validateCall` -- Sending and receiving whitelisted tokens: -- approve() to whitelisted addresses `validate_approve` +- Sending and receiving whitelisted tokens +- approve() to whitelisted addresses: `validate_approve` - transfer() to whitelisted addresses: `validate_transfer` - Check inside Uniswap v2 trades (path contains only whitelisted tokens): `validate_swapTokensForExactTokens` -- .... other checks here +- .... TODO other checks here `GuardV0` does not offer any slippage protection, and this is assumed to be encoded -within the trades (swapTokensForExactTokens arguments). +within the trades e.g. in swapTokensForExactTokens arguments. ### Supported guard integrations