From ad83ef241b4fb5d899b1562f67e888cf3cc5e9e1 Mon Sep 17 00:00:00 2001 From: Mayowa Olatunji Date: Tue, 8 Nov 2022 16:55:57 +0100 Subject: [PATCH 1/2] Created ERC4626 Doc - summary & motivation behind the ERC4626 token --- docs/built-on-ethereum/erc-token-standards/erc4626 | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/built-on-ethereum/erc-token-standards/erc4626 diff --git a/docs/built-on-ethereum/erc-token-standards/erc4626 b/docs/built-on-ethereum/erc-token-standards/erc4626 new file mode 100644 index 000000000..72cb8ea68 --- /dev/null +++ b/docs/built-on-ethereum/erc-token-standards/erc4626 @@ -0,0 +1,13 @@ +title: ERC4626 - EthHub + +description: ERC4626 is a tokenized vault standard designed to optimize the technical parameters of yield-bearing vaults. + +#ERC4626 + +##Summary +A tokenize standard for managing yeild bearing vaults process. This standard also allows Developers to create shared interfaces for the tokens in the vaulting process. +The ERC-4626 token standard is an interface that extends the existing ERC-20, hence the participating tokens must comply with ERC-20 token standard. the token also offers basic functionality such as reading balance, depositing, withdrawing. + +Motivation +The ERC-4626 standard was issued through the Ethereum Improvement Proposals and co-created by Joey Santoro. The ERC-4626 differ from ERC-721 in fungibility; While the former deals with fungible tokens, the latter deals with NFTs (Non-Fungible Tokens). +The ERC-4626 token vaults was developed to lower the integration effort and unlock access to yield in various applications. From dcb1b168cafac44dd7e118438684be6acacc9f45 Mon Sep 17 00:00:00 2001 From: Mayowa Olatunji Date: Tue, 8 Nov 2022 17:01:21 +0100 Subject: [PATCH 2/2] ## Resources --- docs/built-on-ethereum/erc-token-standards/erc4626 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/built-on-ethereum/erc-token-standards/erc4626 b/docs/built-on-ethereum/erc-token-standards/erc4626 index 72cb8ea68..1a0500443 100644 --- a/docs/built-on-ethereum/erc-token-standards/erc4626 +++ b/docs/built-on-ethereum/erc-token-standards/erc4626 @@ -11,3 +11,9 @@ The ERC-4626 token standard is an interface that extends the existing ERC-20, he Motivation The ERC-4626 standard was issued through the Ethereum Improvement Proposals and co-created by Joey Santoro. The ERC-4626 differ from ERC-721 in fungibility; While the former deals with fungible tokens, the latter deals with NFTs (Non-Fungible Tokens). The ERC-4626 token vaults was developed to lower the integration effort and unlock access to yield in various applications. + + +## Resources + +* [Ethereum.org](https://ethereum.org/en/developers/docs/standards/tokens/) +* [Gate.io](https://www.gate.io/blog_detail/920/What-is-ERC-4626)