2

I know that compiling a Move source code is given on their documentation here

But how exactly do I deploy the binary to the network?

The simple command line at the moment does not have the deploy binary option.

TylerH
  • 20,799
  • 66
  • 75
  • 101
zeh
  • 1,197
  • 2
  • 14
  • 29
  • The Move source language is in the early stages of development, and it is not released yet. So you can't deploy now. Source:https://developers.libra.org/docs/move-overview#future-developer-experience – Meet Siraja Jun 20 '19 at 12:27

2 Answers2

1

From the docs at https://developers.libra.org/docs/move-overview#future-developer-experience:

"The source language is in the early stages of development, and we do not have a timetable for its release yet."

rma
  • 1,853
  • 1
  • 22
  • 42
  • Edit: You can still write move smart contracts and test them on your testnet. However, move currently does not allow for publishing modules. Check out my example at https://github.com/raguiar2/SafeCoin – rma Jul 01 '19 at 07:06
1

You can deploy your Move contract on your testnet. Check out the example of etoken-libra which is ERC20-like token in Move on Libra https://github.com/etoroxlabs/etoken-libra

Igor Barinov
  • 21,820
  • 10
  • 28
  • 33