From 7e0f67e6b69a7e6c673b18ec44296f67ffcea295 Mon Sep 17 00:00:00 2001 From: bout3fiddy <11488427+bout3fiddy@users.noreply.github.com> Date: Tue, 12 Dec 2023 10:22:36 +0530 Subject: [PATCH] add note on asset type usage --- contracts/main/CurveStableSwapMetaNG.vy | 2 ++ contracts/main/CurveStableSwapNG.vy | 2 ++ 2 files changed, 4 insertions(+) diff --git a/contracts/main/CurveStableSwapMetaNG.vy b/contracts/main/CurveStableSwapMetaNG.vy index 795abdbe..d0e9c27c 100644 --- a/contracts/main/CurveStableSwapMetaNG.vy +++ b/contracts/main/CurveStableSwapMetaNG.vy @@ -28,6 +28,8 @@ Note: Some ERC4626 implementations may be susceptible to Donation/Inflation attacks. Users are advised to proceed with caution. + NOTE: Pool Cannot support tokens with multiple asset types: e.g. ERC4626 + with fees are not supported. Supports: 1. ERC20 support for return True/revert, return True/False, return None 2. ERC20 tokens can have arbitrary decimals (<=18). diff --git a/contracts/main/CurveStableSwapNG.vy b/contracts/main/CurveStableSwapNG.vy index cf0342fe..7481dd53 100644 --- a/contracts/main/CurveStableSwapNG.vy +++ b/contracts/main/CurveStableSwapNG.vy @@ -24,6 +24,8 @@ Note: Some ERC4626 implementations may be susceptible to Donation/Inflation attacks. Users are advised to proceed with caution. + NOTE: Pool Cannot support tokens with multiple asset types: e.g. ERC4626 + with fees are not supported. Supports: 1. ERC20 support for return True/revert, return True/False, return None 2. ERC20 tokens can have arbitrary decimals (<=18).