Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: settlemint/solidity-token-erc721-generative-art
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.5.3
Choose a base ref
...
head repository: settlemint/solidity-token-erc721-generative-art
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.6.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 15, 2024

  1. chore: missing space

    roderik committed Aug 15, 2024
    Copy the full SHA
    0762d80 View commit details

Commits on Aug 17, 2024

  1. fix: add missing docs files

    roderik committed Aug 17, 2024
    Copy the full SHA
    25d6e62 View commit details
Showing with 78 additions and 3 deletions.
  1. +1 −0 .github/workflows/solidity.yml
  2. +0 −3 .gitignore
  3. +67 −0 docs/basic-usage.md
  4. +10 −0 docs/subgraph.md
1 change: 1 addition & 0 deletions .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
@@ -195,6 +195,7 @@ jobs:
rm -Rf README.md
cp .github/BASE.md README.md
./genesis-output
echo "" >> README.md
echo "\`\`\`json" >> README.md
cat all_allocations.json >> README.md
echo "\`\`\`" >> README.md
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -25,9 +25,6 @@ out/
/broadcast/*/31337/
/broadcast/**/dry-run/

# Docs
docs/

# Dotenv file
.env

67 changes: 67 additions & 0 deletions docs/basic-usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Basic Usage

## Build

You can either use Forge:

```shell
btp-scs foundry build
```

or Hardhat:

```shell
btp-scs hardhat build
```

## Test

With Forge:

```shell
btp-scs foundry test
```

or Hardhat:

```shell
btp-scs hardhat test
```

## Format

To format your contracts, run

```shell
btp-scs foundry format
```

## Deploy to local network

You can deploy your contracts to a local network. First, run

```shell
btp-scs hardhat network
```

then:

```shell
btp-scs hardhat deploy local -m ignition/modules/main.ts
```

## Deploy to platform network

You can also deploy your contracts to the network running on the platform by executing the following command:

```shell
btp-scs hardhat deploy remote -m ignition/modules/main.ts
```

## Help

To get info about the tasks, run:

```shell
btp-scs --help
```
10 changes: 10 additions & 0 deletions docs/subgraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Subgraph Usage

## Deploy your subgraph

To index your smart contract events, use The Graph middleware.
First, edit `subgraph.config.json` to set the addresses of your smart contracts. You can find them in the deployment folder created under `ignation`. Then, run:

```shell
btp-scs subgraph deploy
```