You can see the status of the transaction, and the state of the wallet and contract accounts on etherscan.io (the Ethereum block explorer). As we have deployed the DeploymentExample contract in this chapter, we can see the status of the contract by opening https://rinkeby.etherscan.io and searching for the contract address.
As shown in the following screenshot, the status of the contract on etherscan is that it has a balance of 0.8 ether. The contract code is also published for this contract; you can see the contract code by opening the Code tab.
During the transaction, different events the contract has triggered can be seen also under the Events tab:
Using etherscan, you can also access all of the public view functions and public state variables. To access these, open...