Skip to content

Commit ed5a250

Browse files
authored
Merge branch 'main' into NomicFoundation/hardhat/main
2 parents 7d375f9 + 0e3d518 commit ed5a250

7 files changed

Lines changed: 751 additions & 310 deletions

File tree

.agents/skills/okx-growth-competition/references/cli-reference.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,6 @@ When `--activity-id` is omitted, the CLI calls `competition list --status 2` fir
183183

184184
Register for a competition. **Requires wallet login.**
185185

186-
```
187-
onchainos competition join --activity-id <id> --evm-wallet <evm_addr> --sol-wallet <sol_addr>
188186
```
189187
onchainos competition join --activity-id <id> --evm-wallet <evm_addr> --sol-wallet <sol_addr> --chain-index <chain_id>
190188
**API**: `POST /priapi/v5/wallet/agentic/competition/join`

.circleci/config.yml

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
1-
# Use the latest 2.1 version of CircleCI pipeline process engine.
2-
# See: https://circleci.com/docs/configuration-reference
3-
4-
version: 2.1
5-
executors:
6-
my-custom-executor:
7-
docker:
8-
- image: cimg/base:stable
9-
auth:
10-
# ensure you have first added these secrets
11-
# visit app.circleci.com/settings/project/github/Dargon789/hardhat-project/environment-variables
12-
username: $DOCKER_HUB_USER
13-
password: $DOCKER_HUB_PASSWORD
14-
jobs:
15-
web3-defi-game-project-:
16-
17-
executor: my-custom-executor
18-
steps:
19-
- checkout
20-
21-
workflows:
22-
my-custom-workflow:
23-
jobs:
24-
- web3-defi-game-project-
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
docker:
6+
- image: ghcr.io/foundry-rs/foundry:latest
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install submodules
11+
command: git submodule update --init --recursive
12+
- run:
13+
name: Build
14+
command: forge build
15+
- run:
16+
name: Test
17+
command: forge test -vvv
18+
19+
workflows:
20+
main:
21+
jobs:
22+
- test

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
- "**"
99
workflow_dispatch:
1010

11+
permissions:
12+
contents: read
13+
1114
concurrency:
1215
group: ${{github.workflow}}-${{github.ref}}
1316
cancel-in-progress: true

README.md

Lines changed: 22 additions & 284 deletions
Large diffs are not rendered by default.

v-next/config/.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules
2+
/dist
3+
/coverage
4+
CHANGELOG.md
5+
/test/fixture-projects/**/artifacts
6+
/test/fixture-projects/**/cache
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules
2+
/dist
3+
/coverage
4+
CHANGELOG.md
5+
/test/fixture-projects/**/artifacts
6+
/test/fixture-projects/**/cache

0 commit comments

Comments
 (0)