Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EIP-3475: Reference Implementation Typo Fixes #5547

Merged
merged 4 commits into from Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion EIPS/eip-3475.md
Expand Up @@ -19,7 +19,6 @@ requires: 20, 721, 1155

- Bonds created by this EIP can also be batched for issuance/redemption conditions for efficiency on gas costs and UX side. And finally, bonds created from this standard can be divided and exchanged in a secondary market.


## Motivation
Current LP (Liquidity Provider) tokens are simple [EIP-20](./eip-20.md) tokens with no complex data structure. To allow more complex reward and redemption logic to be stored on-chain, we need a new token standard that:

Expand Down
4 changes: 2 additions & 2 deletions assets/eip-3475/interfaces/IERC3475.sol
Expand Up @@ -10,7 +10,7 @@ interface IERC3475 {
/**
* @dev Values structure of the Metadata
*/
struct Values{
struct Values {
string stringValue;
uint uintValue;
address addressValue;
Expand All @@ -36,7 +36,7 @@ interface IERC3475 {
struct Transaction {
uint256 classId;
uint256 nonceId;
uint256 amount;
uint256 _amount;
}

// WRITABLES
Expand Down