Skip to content

Releases: dfinity/sdk

DFX Demo

09 Oct 21:50
9366ae5
Compare
Choose a tag to compare

This release contains the standalone dfx, which understands all the things shown at the 0.3.0 demo.

To install the latest DFX, use:

curl https://hydra-int.dfinity.systems/latest/dfinity-ci-build/sdk/dfinity-sdk.packages.public-folder.x86_64-linux/public-folder/install.sh | sh

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!