- BIP32 - is a method for generating a tree of private keys from a master private key.
- BIP39 - is a method for encoding 128-256 bits of random data into 12-24 word phrases from a list of interchangeable 2018 words, and then turn those phrases into a 64-byte hash.
- BIP44 - is a method for structuring a private key tree in a specific way that will facilitate usage/restoration/discovery of multiple accounts for multiple purposes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Contributor: julio641742 | |
/* | |
In this example we will be click a button in the top bar, | |
causing an event that create a text label (hello world), which with some | |
animation, will be decreasing its opacity from 100% to 0% | |
*/ | |
/* Import St because is the library that allow you to create UI elements */ | |
const St = imports.gi.St; |