일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- solidity
- node.js
- CSS
- 삶
- CLASS
- Redux
- tailwindcss
- middleware
- useState
- typeScript
- web
- Ethereum
- REACT
- evm
- HTML
- Interface
- express.js
- API
- hardhat
- Props
- JavaScript
- nextJS
- concept
- error
- 기준
- built in object
- graphQL
- SSR
- blockchain
- bitcoin
- Today
- Total
목록전체 글 (373)
ReasonJun
twMerge is a JavaScript library that merges Tailwind CSS classes without style conflicts. It is useful when you need to conditionally join Tailwind CSS classes together, or when you need to merge Tailwind CSS classes from different sources. clsx is a JavaScript library that provides a simple and efficient way to conditionally join CSS classes together. It is useful for creating reusable CSS comp..
the new PUSH0 opcode in Solidity 0.8.20. It discusses what the opcode is and why it is needed. It also goes into the benefits of using PUSH0, such as reducing contract size and gas costs. Finally, the article provides a warning about using PUSH0 on other chains besides Ethereum mainnet. Here is a more detailed summary of the article: PUSH0 is a new opcode in Solidity 0.8.20 that allows developer..
The abi.encodePacked() function is a built-in Solidity function that is used to encode multiple values into a single byte array. The function takes any number of arguments and concatenates them into a single byte array. The abi.encodePacked() function is typically used to encode data that is going to be passed to a contract function. For example, the following code would encode the string "Hello..
ERC-1155 is a token standard for representing both fungible and non-fungible tokens (NFTs) on the Ethereum blockchain. It is a single standard that can be used to represent a wide variety of assets, such as game items, collectibles, and even real-world assets. ERC-1155 tokens are identified by two values: a token ID and a balance. The token ID is a unique identifier for the type of token, while ..
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/presets/ERC20PresetMinterPauser.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../extensions/ERC20Burnable.sol"; import "../extensions/ERC20Pausable.sol"; import "../../../access/AccessControlEnumerable.sol"; import "../../../utils/Context.sol"; /** * @dev {ERC20} token, including: * * - abi..
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../extensions/ERC721Enumerable.sol"; import "../extensions/ERC721Burnable.sol"; import "../extensions/ERC721Pausable.sol"; import "../../../access/AccessControlEnumerable.sol"; import "../../../utils/Cont..
ERC-721 is a standard for non-fungible tokens (NFTs) on the Ethereum blockchain. NFTs are unique digital assets that cannot be replicated or replaced. This is in contrast to fungible tokens, such as ERC-20 tokens, which are interchangeable and can be replaced with one another. ERC-721 tokens are often used to represent digital collectibles, such as artwork, music, or game items. They can also be..
In Etherscan, "Verify" is a process that allows developers to upload the source code of their smart contracts to the Etherscan website. Once the source code is uploaded, Etherscan will match it with the bytecode that is deployed on the Ethereum blockchain. If the source code and bytecode match, the contract will be verified. Verifying a contract has several benefits: It provides transparency for..
Ethereum-Waffle is a testing framework for Ethereum smart contracts. It is designed to be easy to use and to provide a comprehensive set of features for testing smart contracts. Waffle provides the following features: A simple and intuitive API for writing tests Support for all of the Solidity features A built-in mocking framework A built-in snapshotting framework A built-in coverage reporting f..
The ethers.constants.AddressZero constant is a special address that represents the null address. This address is used to represent the address of the contract that is creating tokens. The null address is a special address that is not associated with any account. It is used to represent the absence of an address. For example, if a token is transferred to the null address, the token is effectively..