I hereby claim:
- I am gianlucamazza on github.
- I am gmazza (https://keybase.io/gmazza) on keybase.
- I have a public key whose fingerprint is D1E9 326E 02A7 47F1 972B B171 55B4 7D80 39D0 728E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| async function getOutputScript(address) { | |
| let script = await bitcoin.address.toOutputScript(address, getNetwork()); | |
| return script; | |
| } | |
| exports.prepareTx = async function (myaddresses, destination, satoshi, feeRate) { | |
| let addresses = myaddresses.filter(hasUTXO) | |
| for(let i = 0; i < addresses.length; i++) { | |
| addresses[i].txs = await explorer.getAddressTxs(addresses[i].address); |
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Prerequisites (for Homebrew at a minimum, lots of other tools need these too):
xcode-select --install will prompt up a dialog)Install Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
| NFT | |
| Stands for Non-Fungible Token. It’s a unique, one-of-a-kind digital asset that’s stored on a blockchain. No other token or cryptocurrency can replace it. | |
| Collection | |
| A collection refers to a portfolio of NFTs that are sold as part of a project, or as part of someone’s inventory e.g. OpenSea collection. | |
| Floor | |
| The ‘floor’ or ‘floor price’ of a project is simply the lowest price at which you can buy an NFT from that project on the secondary market. It’s the most popular metric for tracking a project’s performance over time and its relative success compared to others. | |
| Floor Sweep |
| #!/bin/bash | |
| # Strict mode: exit on error, exit on unset variable, pipefail | |
| set -euo pipefail | |
| echo "🚀 Installing Distrobox on macOS with full Podman support..." | |
| # 1. Check for Homebrew | |
| if ! command -v brew >/dev/null 2>&1; then | |
| echo "❌ Homebrew is not installed. Please install it first: https://brew.sh" |