Skip to content

Commit

Permalink
use 'pop' for binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
weezy20 committed Nov 28, 2023
1 parent 8f7b372 commit 10bac1a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
Binary file modified .icons/logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "dotemplate"
name = "pop"
version = "0.1.0"
edition = "2021"
description = "todo"
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# DoTemplate
<img src=".icons/logo.jpeg" height="400px" width="400px" align="left"></img>
# POP
<img src=".icons/logo.jpeg"></img>

Your one-stop entry into the exciting world of Blockchain development with *Polkadot*

## Getting Started

Use `DoTemplate` to either clone of your existing templates or instantiate a new parachain template:
Use `pop` to either clone of your existing templates or instantiate a new parachain template:

```sh
# Create a minimal parachain template
dotemplate create my-app
pop create my-app
# Get the extended-parachain-template
dotemplate create my-app ept
pop create my-app ept
# Get a pallet-contracts enabled template
dotemplate create my-app cpt
pop create my-app cpt
# Get a evm compatible parachain template
dotemplate create my-app fpt
pop create my-app fpt
```

You can also customize a template by providing config options for token symbol (as it appears on polkadot-js apps UI), token decimals, and the initial endowment for substrate developer accounts. Here's how:

```sh
# Create a minimal parachain template with "DOT" as token symbol, 6 token decimals and 1 billion tokens per dev account
dotemplate create my-app --symbol DOT --decimals 6 --endowment 1_000_000_000
pop create my-app --symbol DOT --decimals 6 --endowment 1_000_000_000
```
There's also the shorter version:
```sh
dotemplate create my-app -s DOT -d 6 -i 1_000_000_000
pop create my-app -s DOT -d 6 -i 1_000_000_000
```

Finally, you would need to build and run it.
Expand Down

0 comments on commit 10bac1a

Please sign in to comment.