Skip to content

Releases: dfinity/sdk

0.2.1

11 Sep 18:56
7616fb8
Compare
Choose a tag to compare

dfx

  • Rename send command to call

0.2.0

09 Sep 21:40
8437d96
Compare
Choose a tag to compare

dfx

The following commands may be executed in order:

A developer can start a node (i.e. locally on Linux or macOS)

$ cd examples/hello
$ dfx start

A developer can compile ActorScript into a Wasm module

$ dfx build
$ find build # view the contents of the build directory

A user can receive "Hello {name}" by calling a canister with an argument

$ dfx send http://localhost:8080 DFINITY
Hello, DFINITY!

Run kill $(pgrep nodemanager) && kill $(pgrep client) or similar when finished to stop the node.

0.1.0

23 Aug 23:47
9feca30
Compare
Choose a tag to compare

dfx

A user can receive "Hello World" by calling a precompiled canister.

dfx http://10.129.10.113:8080
Hello, World!