Tezmania is a client for Tezos allowing you to query the blockchain, interact with smart contracts and more. This is mainly a tool for learning, so if you are learning about Tezos I'm working on some resources in the 'learning' folder.
Configure (curry) the host network:
const net = tezmania.init('http://localhost:8732')
net.getHead().then(head => console.log(head))
This returns the curried functions belonging to the network file (/src/network
). This applies to any of the functions in the network section.
In exported format, the functions below are curried i.e.:
tezmania.getHead('http://localhost:8732')()
This library uses libsodium-wrappers-sumo.
This library uses bip39.
This is a direct export from bip39.generateMnemonic.
Sources of reference (and pure theft) are these cool projects: