일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ethers websocket
- 컨트렉트 배포 자동화
- ethers v6
- ethers typescript
- 스마트 컨트렉트 함수이름 중복
- vue기초
- 러스트 기초
- git rebase
- 러스트기초
- multicall
- ambiguous function description
- ethers type
- Vue
- 컨트렉트 동일한 함수이름 호출
- ethers
- 스마트컨트렉트프록시
- Vue.js
- 머신러닝기초
- rust 기초
- SBT표준
- 체인의정석
- nestjs 튜토리얼
- nest.js설명
- 스마트컨트렉트 함수이름 중복 호출
- 러스트 기초 학습
- 스마트컨트렉트 예약어 함수이름 중복
- 스마트컨트렉트테스트
- 깃허브명령어
- 프록시배포구조
- chainlink 설명
Archives
- Today
- Total
체인의정석
IMX 구조도 정리 본문
728x90
반응형
Minting Assets
Pre requisite 1
- 먼저 화이트리스트를 신청 후 인터페이스 상속시키기
- Proxy Contract에 트랜잭션을 보냄
Pre requisite 2
- Mintable CA
- API URL - Meta data
- Owner Pub Key deployed contract => 주소가 아닌 진짜 pubKey
Pre requisite 3
- User registration
1. 토큰 민팅
{
"mints":
[{
"user": "0x...",
"tokens": [{
"type": "ERC721",
"data": {
"id": "<asset ID>", // custom asset ID (it's possible to make this the ERC-721 token ID depending on the mintable contract implementation)
"blueprint": "<on-chain metadata>",
"token_address": "0x..."
}
}],
"auth_signature": "0x..." // signature signed by the contract owner
}]
}
blue print => 온체인 저장 불면 데이터,
유저의 auth_signature => contract owner가 사인한 데이터
인출도 같은 패턴
728x90
반응형
'블록체인 > 퍼블릭 블록체인' 카테고리의 다른 글
테스트 코드에서 이더리움을 전송하는 방법 (0) | 2022.08.13 |
---|---|
faucet 리스트 (업데이트) (0) | 2022.04.27 |
IMX 이뮤터블 X에 대한 분석 (0) | 2021.11.26 |
특정 account에 있는 트랜잭션 모두 가져오기 (0) | 2021.09.27 |
block scout 서비스 (0) | 2021.09.27 |
Comments