일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nest.js설명
- Vue
- 스마트컨트렉트 함수이름 중복 호출
- 체인의정석
- vue기초
- ethers
- ambiguous function description
- 컨트렉트 배포 자동화
- 스마트컨트렉트테스트
- 깃허브명령어
- 러스트 기초 학습
- ethers typescript
- git rebase
- 러스트 기초
- ethers type
- nestjs 튜토리얼
- SBT표준
- multicall
- 스마트컨트렉트프록시
- 스마트 컨트렉트 함수이름 중복
- ethers websocket
- Vue.js
- chainlink 설명
- 러스트기초
- 프록시배포구조
- 스마트컨트렉트 예약어 함수이름 중복
- ethers v6
- 머신러닝기초
- rust 기초
- 컨트렉트 동일한 함수이름 호출
Archives
- Today
- Total
체인의정석
web3.utils.soliditySha3 와 ethers.utils.solidityKeccak256 본문
728x90
반응형
https://ethereum.stackexchange.com/questions/123232/how-to-use-ethers-keccak256
솔리디티 자체에 해시가 들어가는 경우
ethers에서는 keccack256
web3에서는 web3.utils.soliditySha3를 사용면 된다.
이때 ethers의 경우 타입을 지정해주지 않으면 다른 값이 입력 될 수 있기 때문에
solidityKeccack256에 타입을 지정해 준다.
https://docs.ethers.io/v5/api/utils/hashing/#utils-solidityKeccak256
utils.solidityPack([ "int16", "uint48" ], [ -1, 12 ])
// '0xffff00000000000c'
utils.solidityPack([ "string", "uint8" ], [ "Hello", 3 ])
// '0x48656c6c6f03'
utils.solidityKeccak256([ "int16", "uint48" ], [ -1, 12 ])
// '0x81da7abb5c9c7515f57dab2fc946f01217ab52f3bd8958bc36bd55894451a93c'
utils.soliditySha256([ "int16", "uint48" ], [ -1, 12 ])
// '0xa5580fb602f6e2ba9c588011dc4e6c2335e0f5d970dc45869db8f217efc6911a'
// As a short example of the non-distinguished nature of
// Solidity tight-packing (which is why it is inappropriate
// for many things from a security point of view), consider
// the following examples are all equal, despite representing
// very different values and layouts.
utils.solidityPack([ "string", "string" ], [ "hello", "world01" ])
// '0x68656c6c6f776f726c643031'
utils.solidityPack([ "string", "string" ], [ "helloworld", "01" ])
// '0x68656c6c6f776f726c643031'
utils.solidityPack([ "string", "string", "uint16" ], [ "hell", "oworld", 0x3031 ])
// '0x68656c6c6f776f726c643031'
utils.solidityPack([ "uint96" ], [ "32309054545061485574011236401" ])
// '0x68656c6c6f776f726c643031'
그 결과 오픈씨의 wyvernExchange의 입력값을 암호화 한 부분은 아래와 같이 진행이 되었다.
const hash = ethers.utils.solidityKeccak256(
[
"address",
"address",
"address",
"uint",
"uint",
"uint",
"uint",
"address",
"uint8",
"uint8",
"uint8",
"address",
"uint8",
"bytes",
"bytes",
"address",
"bytes",
"address",
"uint",
"uint",
"uint",
"uint",
"uint",
],
[
order.exchange,
order.maker,
order.taker,
BigNumber.from(order.makerRelayerFee).toString(),
BigNumber.from(order.takerRelayerFee).toString(),
BigNumber.from(order.takerProtocolFee).toString(),
BigNumber.from(order.takerProtocolFee).toString(),
order.feeRecipient,
order.feeMethod.toString(),
order.side.toString(),
order.saleKind.toString(),
order.target,
order.howToCall.toString(),
order.calldata,
order.replacementPattern,
order.staticTarget,
order.staticExtradata,
order.paymentToken,
BigNumber.from(order.basePrice).toString(),
BigNumber.from(order.extra).toString(),
BigNumber.from(order.listingTime).toString(),
BigNumber.from(order.expirationTime).toString(),
order.salt.toString(),
]
);
728x90
반응형
'블록체인 > Solidity' 카테고리의 다른 글
이더리움에서 데이터 서명관련 EIP 정리 (EIP1271 & EIP2098) (0) | 2022.06.27 |
---|---|
Internal compiler error: Accessors for mapping with dynamically-sized keys not yet implemented 오류 해결 (0) | 2022.06.22 |
기존 소스를 실행 시킬 경우 오래된 오픈 제플린 코드 버전 맞추기 (0) | 2022.06.22 |
스마트컨트렉트 가스비 손쉽게 측정하기 (0) | 2022.05.30 |
truffle 활용법) ABI 파일 추출하여 이미 배포된 컨트렉트와 상호작용하기 (0) | 2022.05.23 |
Comments