Skip to content

Instantly share code, notes, and snippets.

@klimisa
Created September 16, 2021 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klimisa/054d8da05a63bc7e25e546a0a4af483f to your computer and use it in GitHub Desktop.
Save klimisa/054d8da05a63bc7e25e546a0a4af483f to your computer and use it in GitHub Desktop.
Nethereum with Fable example
#load "../.paket/load/net5.0/main.group.fsx"
open Fable.React
open Nethereum.Web3
printfn "Fable compiled this"
let account = Web3.GetAddressFromPrivateKey("3a4f9a5f5350caf50ad4a9c7b87b01d095a70af3d8f6fdb7b314ce0b3b13711f")
let App =
h1 [] [
str account
]
mountById "app" App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment