-
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.
- Loading branch information
0 parents
commit a3d8009
Showing
19 changed files
with
35,754 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Decentralized Star Notary | ||
|
||
#### Terminal output | ||
|
||
```bash | ||
:~/project_5/smart_contracts$ truffle migrate --network rinkeby --reset --compile-all | ||
Compiling ./contracts/Migrations.sol... | ||
Compiling ./contracts/StarNotary.sol... | ||
Compiling openzeppelin-solidity/contracts/introspection/ERC165.sol... | ||
Compiling openzeppelin-solidity/contracts/introspection/IERC165.sol... | ||
Compiling openzeppelin-solidity/contracts/math/SafeMath.sol... | ||
Compiling openzeppelin-solidity/contracts/token/ERC721/ERC721.sol... | ||
Compiling openzeppelin-solidity/contracts/token/ERC721/IERC721.sol... | ||
Compiling openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol... | ||
Compiling openzeppelin-solidity/contracts/utils/Address.sol... | ||
Writing artifacts to ./build/contracts | ||
|
||
Using network 'rinkeby'. | ||
|
||
Running migration: 1_initial_migration.js | ||
Replacing Migrations... | ||
... 0x4f6e266ada524b61c0b9010ef79927e847658be04e5e6718357f84f5f399aaa8 | ||
Migrations: 0x3f55f20bc283a975ca468f3b6612d697183c3282 | ||
Saving successful migration to network... | ||
... 0xd59cce5422262055de35f7294e27d361b382bbfe96b94b1284603ba8a922958b | ||
Saving artifacts... | ||
Running migration: 2_deploy_star_notary.js | ||
Replacing StarNotary... | ||
... 0xaee99cadf968c08631aa91a9afaef6cb328a2ae21f2590d1a2261cc2b8a28ebc | ||
StarNotary: 0x219eb4a0ba979bdf28582c8996dffcb723ac46b8 | ||
Saving successful migration to network... | ||
... 0xcb4e7a3b5cab537b66232ae2293cd90688ce267e4d9747b33c7d2665e8bdd75f | ||
Saving artifacts... | ||
|
||
``` | ||
|
||
#### Contract address | ||
|
||
https://rinkeby.etherscan.io/address/0x219eb4a0ba979bdf28582c8996dffcb723ac46b8 | ||
|
||
```bash | ||
0x219eb4a0ba979bdf28582c8996dffcb723ac46b8 | ||
``` | ||
|
||
#### Contract Hash | ||
|
||
https://rinkeby.etherscan.io/tx/0xaee99cadf968c08631aa91a9afaef6cb328a2ae21f2590d1a2261cc2b8a28ebc | ||
|
||
```bash | ||
0xaee99cadf968c08631aa91a9afaef6cb328a2ae21f2590d1a2261cc2b8a28ebc | ||
``` | ||
|
||
#### Transaction ID | ||
|
||
https://rinkeby.etherscan.io/tx/0x1e345e1d7602b54dabbb3b7e74faf318a584f319185f90ffb4d0c94ee37965e9 | ||
|
||
```bash | ||
0x1e345e1d7602b54dabbb3b7e74faf318a584f319185f90ffb4d0c94ee37965e9 | ||
``` |
Oops, something went wrong.