argent-contracts
openzeppelin-contracts
argent-contracts | openzeppelin-contracts | |
---|---|---|
3 | 237 | |
588 | 25,163 | |
0.7% | 0.7% | |
4.1 | 9.4 | |
6 months ago | 5 days ago | |
Solidity | Solidity | |
GNU General Public License v3.0 only | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
argent-contracts
-
How do smart contract transfer funds if they do not have private keys?
For example: https://github.com/argentlabs/argent-contracts/blob/develop/contracts/infrastructure/base/Owned.sol
- Argent vs. Dharma: Análisis de wallets de Ethereum sin custodia [Mayo 2021]
-
Big upgrade for Argent next week: multisig security when you need. Not when you don't.
It was only a review, not audit. So not available. The audits are available here though: https://github.com/argentlabs/argent-contracts/tree/develop/audit
openzeppelin-contracts
- OpenZeppelin Contracts: Secure Smart Contract Development Made Easy
- OpenZeppelin Contracts: A Secure Library for Smart Contract Development
-
Make NFT using ERC721
ERC721 is a standard that describes how to build NFTs on EVM compatible blockchains. We use the OppenZeppelin implementaion of ERC721
-
Mode - Comprehensive Starter Guide
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.20; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v5.0.0/contracts/token/ERC20/ERC20.sol"; interface Sfs { function register(address _recipient) external returns (uint256 tokenId); } contract ModeToken is ERC20 { address feeReceiver = msg.sender; constructor() ERC20("ModeTokenSFSTest", "SFST2") { //Example amount to mint our ERC20 _mint(msg.sender, 1000 10 * 18); // This is the SFS contract address on testnet Sfs sfsContract = Sfs(0xBBd707815a7F7eb6897C7686274AFabd7B579Ff6); //Registers this contract and assigns the NFT //to the deployer of this contract sfsContract.register(msg.sender); } }
-
Blockchain transactions decoding: making wallet activity understandable
Lets look the events of Open Zeppelin’s ERC20 token contract:
- Construir e implementar un VAULT (bóveda) ERC20 en Shardeum
-
Are ERC-777 Unsafe?
ERC-777 is difficult to implement properly, due to its susceptibility to different forms of attack(opens in a new tab). It is recommended to use ERC-20 instead. This page remains as a historical archive.
- OpenZeppelin is trying to avoid paying a bounty for a vulnerability that caused $1,1B worth of assets freeze
- Security improvements of the ERC20 token standard
What are some alternatives?
dharma-smart-wallet - An upgradeable, meta-transaction-enabled smart wallet for earning interest on stablecoins while retaining custody of funds, with an added security backstop provided by Dharma Labs.
solmate - Modern, opinionated, and gas optimized building blocks for smart contract development.
prb-math - Solidity library for advanced fixed-point math
hardhat - Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
awesome-solidity-gas-optimization - Best resources for Solidity gas optimizations ⛽
ERC721A - https://ERC721A.org
awesome-solidity-gas-optimization - Best resources for Solidity gas optimizations ⛽ [Moved to: https://github.com/iskdrews/awesome-solidity-gas-optimization]
Safemoon.sol - safemoon contract
solidity-essentials - Solidity programming baby examples...
solidity - Solidity, the Smart Contract Programming Language
contracts - Collection of smart contracts deployable via thirdweb
truffle - :warning: The Truffle Suite is being sunset. For information on ongoing support, migration options and FAQs, visit the Consensys blog. Thank you for all the support over the years.