일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- ethers type
- redux toolkit 설명
- 러스트 기초
- cloud hsm
- ethers websocket
- ambiguous function description
- ethers typescript
- SBT표준
- 체인의정석
- 스마트컨트렉트 예약어 함수이름 중복
- 티스토리챌린지
- Vue
- rust 기초
- cloud hsm 서명
- erc4337 contract
- 러스트기초
- 오블완
- cloud hsm 사용하기
- erc4337
- redux 기초
- git rebase
- 머신러닝기초
- 러스트 기초 학습
- 스마트컨트렉트 함수이름 중복 호출
- 스마트 컨트렉트 함수이름 중복
- 컨트렉트 동일한 함수이름 호출
- 계정추상화
- Vue.js
- vue기초
- ethers v6
- Today
- Total
목록전체 글 (526)
체인의정석
https://github.com/OpenZeppelin/openzeppelin-contracts/blob/8a7a9c585706503f5250f09b033c94cf7ee37db2/contracts/token/ERC721/utils/ERC721Holder.sol#L17 openzeppelin-contracts/contracts/token/ERC721/utils/ERC721Holder.sol at 8a7a9c585706503f5250f09b033c94cf7ee37db2 · OpenZeppelin OpenZeppelin Contracts is a library for secure smart contract development. - OpenZeppelin/openzeppelin-contracts github..
https://forum.openzeppelin.com/t/msg-sender-isnt-the-initiator-in-a-contract-thats-created-by-another-contract/37330/5 `msg.sender` isn't the initiator in a contract that's created by another contract The situation you've described is a common challenge when using factory or deployer contracts in combination with other contracts that rely on msg.sender for initial setup, especially when the desi..
https://github.com/NomicFoundation/hardhat/issues/2043 hardhat/console.sol `bytes` and `uint256[]` typed arguments support · Issue #2043 · NomicFoundation/hardhat Hardhat doesn't support logging bytes object to console via hardhat/console.sol though it might be useful in a huge amount of cases. I'd suggest printing bytes and uint256[] object as an array of n... github.com console.logBytes consol..
https://poiemaweb.com/docker-mysql Docker를 사용하여 MySQL 설치하고 접속하기 | PoiemaWeb poiemaweb.com docker ps -a docker exec -it mysql-container bash 다음과 같이 docker에 접근 후 만약 mysql 명령어를 못찾으면 다음과 같이 설치 https://blog.naver.com/devsimin/221436548123 터미널에서 mysql 접속하기. 1. 터미널 접속 2. 경로 이동 3. mysql 접속 로컬서버접속 외부접속 User Name -u Password -p Port N... blog.naver.com apt update apt install mariadb-server 이후 docker-compo..

API 테스트 및 성능 테스트를 위해 Jmeter를 사용해봤다. 설치하기 1. java설치 - m2칩이라 그런지 터미널 설치가 어려워 아래 경로대로 설치 https://for-data-science.tistory.com/97 [3초 해결] M2 JDK(Java Developer Kit) 설치 방법 코드를 짜다 보면 Java를 설치해야 하는 상황이 오는데, 비록 간단하긴 하지만 이것도 미래의 나를 위해 남겨둔다. 오픈소스도 있고, 오라클 것도 있는데 나는 M2칩에 대한 JDK를 제공하는 Oracle Java for-data-science.tistory.com java -version java version "21.0.2" 2024-01-16 LTS Java(TM) SE Runtime Environment ..
Error: VM Exception while processing transaction: reverted with panic code 0x32 (Array accessed at an out-of-bounds or negative index) 해당 에러는 solidity에서 동적 배열안에 인덱스를 걸어서 요소를 넣을 때 발생한다. https://ethereum.stackexchange.com/questions/125089/error-vm-exception-while-processing-transaction-reverted-with-panic-code-0x32 Error: VM Exception while processing transaction: reverted with panic code 0x32 (Ar..
원래 하드햇 기본 세팅대로 자동 생성된 hardhat confing.ts는 다음과 같다. import { HardhatUserConfig } from "hardhat/config"; import "@nomicfoundation/hardhat-toolbox"; const config: HardhatUserConfig = { solidity: "0.8.19", }; export default config; 하지만 만약 ethers v6 를 사용할 경우 type-chain과정에서 다음과 같은 에러가 발생한다. Generating typings for: 19 artifacts in dir: typechain-types for target: ethers-v6 An unexpected error occurred: ..
여러개의 컨트렉트를 만드는 contractFactory 컨트렉트를 만들어야 하는 상황이 생겼다. 이런경우 사용가능한 함수는 create1,2,3가 있다. 이번엔 create1과 2에 대해 정리하려고한다. 출처 : https://docs.openzeppelin.com/cli/2.8/deploying-with-create2 Deploying Smart Contracts Using CREATE2 - OpenZeppelin Docs Under normal circumstances, sending funds to a random Ethereum address is a bad idea. Here however, we know we’ll be able to deploy Vault at the computed addr..