LoginSignup
0
0

More than 1 year has passed since last update.

interface

Last updated at Posted at 2022-05-24

・interface
 一見コントラクトに見えるが外部コントラクトのデータを読み込むために使用するものをinterfaceと呼ぶ

contract NumberInterface {
  function getNum(address _myAddress) public view returns (uint);
}

ここでは外部コントラクトのgetNum関数を読み込んでいる。(uint)後に{}を使用せず;が使われてるのが特徴。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0