0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Imports

Last updated at Posted at 2024-10-26

プログラムは、他のプログラムから(型、関数、変数などの)宣言(declarations)をインポートすることができます。

インポートは、import キーワードを使用して宣言(declared)します。

importに続いて、すべての宣言をインポートするロケーションを指定するか、宣言の名前を指定してfrom キーワードを続けて場所を指定します。

ローカルファイルをインポートする場合は、ロケーションはstringリテラルとなり、ファイルへのパスを指定します。ファイルインポートが書かれた(スマートコントラクト)コードのデプロイには、Flow CLI の使用が必要です。

異なるアカウントのexternal タイプをインポートする場合は、ロケーションはアドレスリテラルとなり、その宣言がデプロイされ公開されたアカウントのアドレスになります。

// Import the type `Counter` from a local file.
//
import Counter from "./examples/counter.cdc"

// Import the type `Counter` from an external account.
//
import Counter from 0x299F20A29311B9248F12

翻訳元->https://cadence-lang.org/docs/language/imports

Flow BlockchainのCadence version1.0ドキュメント (Imports)

Previous << References

Next >> Accounts

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?