The Lightning Network is a layer 2 payment network built on top of Bitcoin. It is denominated in Bitcoin, and disputes are settled entirely by the Bitcoin network. Like Bitcoin, it is decentralized. Ultimately, the utility, speed and cost of the network will be defined by the sum of how all of the participants behave. In this post, I will explore at least 6 different user types I predict will exist on the Lightning Network and my expectation of how they will behave.
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
#!/usr/bin/env node | |
console.log("I was executed from a gist inside the terminal with npx!"); |
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
// MARKER SYNC | |
// | |
// Allows you to trigger playback of precomp segments using markers. | |
// This allows you to change timings without diving into precomps and makes it easier to reason about your project file. | |
// | |
// 1. Create a precomp A with a layer called "Controller" | |
// 2. Add named markers to the timeline within Controller. | |
// 3. In the parent comp, enable Time Remapping for the precomp A | |
// | |
// Modified expression based on Dan Ebbert's Marker Sync Expression |