(Copy/Paste template)
Problem:
What research have you done?
What have you tried?
Specific code sample:
| // Put this in your build.gradle file | |
| implementation 'com.blockstart.blockstartsdk:android-blockstart-sdk:1.0.0' | |
| // Then in your code file: | |
| // Design your cryptocurrency | |
| val coolCoin = Token(tokenName: "Cool Coin", totalSupply: 100000000.0, decimals: 6.0, mutable: false) | |
| // Publish it | |
| coolCoin.launchToken() |
| // Put this in your build.gradle file | |
| implementation 'com.blockstart.blockstartsdk:android-blockstart-sdk:1.0.0' | |
| // Then in your code file: | |
| // Design your cryptocurrency | |
| val coolCoin = Token(tokenName: "Cool Coin", totalSupply: 100000000.0, decimals: 6.0, mutable: false) | |
| // Publish it | |
| coolCoin.launchToken() |
| import Blockstart | |
| // Design your cryptocurrency | |
| let coolCoin = Token() | |
| coolCoin.tokenName = "Cool Coin" | |
| coolCoin.totalSupply = 100000000 | |
| coolCoin.decimals = 6 | |
| coolCoin.mutable = false | |
| // Publish it! |