Skip to content

Instantly share code, notes, and snippets.

@dakk
Last active July 7, 2020 12:44
Show Gist options
  • Save dakk/c7147b700b6efd75d8a50f49d846cf88 to your computer and use it in GitHub Desktop.
Save dakk/c7147b700b6efd75d8a50f49d846cf88 to your computer and use it in GitHub Desktop.
yallo_medium_1_deploy.yallo
import "Token.yallo";
contract deployAToken {
field tokenAddress: address;
entry deployToken() {
let (a: address, op: operation) = Tezos.createContract (Token(Tezos.selfAddress(), 100, "ourToken"), None, 0);
this.tokenAddress = a;
[op]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment