Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.89 KB

smart-contract.mdx

File metadata and controls

49 lines (41 loc) · 1.89 KB

import { Cards } from "../../components/cards.tsx"; import { Icons } from "../../components/icons";

SECOIN Contract Structure

SECOIN is a type of token that follows the ERC-20 token contract standard. This standard is a set of rules and guidelines followed by many tokens in the Ethereum ecosystem.

Unlike our other token SECOREP that is part of the Diamond Governance, SECOIN operates independently.

SECOIN's contract is quite simple. It features a few important functions that create (mint) and destroy (burn) tokens as needed for ABC operations. However, only a specific part of the system, the MarketMaker contract of the ABC, can use these functions.

Further reading

To see the deployed contract in all its technical detail, you can follow this link.

For a deeper dive into the ERC-20 standard and the specific structure of these types of contracts, check out the Ethereum token standard and the IERC20Metadata interface specification.

<Cards cardData={[ { external: true, href: "https://github.com/SecureSECODAO/dao-documentation", name: "View on Github", icon: Icons.gitHub, pattern: { y: 16, squares: [ [0, 1], [1, 3], [5, 2], ], }, }, { external: true, href: "https://github.com/SecureSECODAO/dao-documentation/blob/main/README.md", name: "Open README", icon: Icons.readme, pattern: { y: -6, squares: [ [-1, 2], [4, 3], [3, 1], ], }, }, ]} />