Skip to content

Instantly share code, notes, and snippets.

View jradness's full-sized avatar

Jason Brewer jradness

View GitHub Profile
@jradness
jradness / CODE_QUESTIONS.md
Last active February 7, 2023 20:16
How to ask coding questions

(Copy/Paste template)

Problem:
What research have you done?
What have you tried?
Specific code sample:


Continue Reading 👇

@jradness
jradness / blockstart.swift
Created May 12, 2018 04:48
Blockstart Swift
// 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()
@jradness
jradness / blockstart.kt
Last active May 12, 2018 04:49
Blockstart Kotlin
// 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()
@jradness
jradness / blockstart.swift
Created May 12, 2018 02:49
Swift Blockstart
import Blockstart
// Design your cryptocurrency
let coolCoin = Token()
coolCoin.tokenName = "Cool Coin"
coolCoin.totalSupply = 100000000
coolCoin.decimals = 6
coolCoin.mutable = false
// Publish it!