-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from rsksmart/feature/GBI-1840
Feature/GBI-1840 - P2SH address support
- Loading branch information
Showing
10 changed files
with
574 additions
and
2,642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.18; | ||
|
||
|
||
library OpCodes { | ||
bytes1 public constant OP_DUP = 0x76; | ||
bytes1 public constant OP_HASH160 = 0xa9; | ||
bytes1 public constant OP_EQUALVERIFY = 0x88; | ||
bytes1 public constant OP_CHECKSIG = 0xac; | ||
bytes1 public constant OP_RETURN = 0x6a; | ||
bytes1 public constant OP_EQUAL = 0x87; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.