For invoice reimbursements, use imagemagick CLI tools to help us make invoice PDF compliance easy!
# Use whatever package manager you need, likely:
sudo apt install imagemagickFor invoice reimbursements, use imagemagick CLI tools to help us make invoice PDF compliance easy!
# Use whatever package manager you need, likely:
sudo apt install imagemagick| diff --git a/.gitignore b/.gitignore | |
| index 9026c77..4c7b3d0 100644 | |
| --- a/.gitignore | |
| +++ b/.gitignore | |
| @@ -1,2 +1,2 @@ | |
| -/target | |
| +**/target | |
| .vscode | |
| diff --git a/README.md b/README.md | |
| index bf8edc2..b0b1613 100644 |
https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58)
SS58 is a simple address format designed for Substrate based chains. There's no problem with using other address formats for a chain, but this serves as a robust default. It is heavily based on Bitcoin's Base-58-check format with a few alterations.
The basic idea is a base-58 encoded value which can identify a specific account on the Substrate chain. Different chains have different means of identifying accounts. SS58 is designed to be extensible for this reason.
The basic format conforms to:
| #!/bin/bash | |
| # Use this script to try various derivation paths and passowords for a known seed. | |
| # ****NOTE!!!!**** | |
| # DO NOT SAVE THIS FILE WITH YOUR SEED IN IT!!!! | |
| # INSTEAD RUN THIS ONCE AS IS, THEN MANALLY SET | |
| # YOU MUST EDIT THESE VARIABLES *NOT IN THIS FILE*!! | |
| # SET THESE IN YOUR TERMINAL: | |
| # SECRET="<put your seed words / mnemonic here>" |
| #snip... | |
| Downloaded getrandom v0.1.16 | |
| Downloaded synstructure v0.12.4 | |
| Downloaded substrate-prometheus-endpoint v0.8.1 | |
| Downloaded stable_deref_trait v1.2.0 | |
| Downloaded semver v0.11.0 | |
| Downloaded parking_lot_core v0.4.0 | |
| Downloaded pallet-balances v2.0.1 | |
| Downloaded pin-project v1.0.4 | |
| Downloaded pallet-finality-tracker v2.0.1 |
See the comments for screenshots π
Here is my tweet about it: https://twitter.com/NukeManDan/status/1326325024177983488
Added ORML NFT pallet to runtime and applied to the node template Editied the base template and added a custom pallet using the orml-nft interface.
Proofs of NFT use via https://polkadot.js.org/apps/ extrinsics in comments.