Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
eac91c8
fix(ui): add deposit and listing ui
atticusofsparta Dec 9, 2025
ac615d8
fix(list name): update list name modal
atticusofsparta Dec 10, 2025
e759aab
fix(listing): add whitelist module protection workflow for upgrading ant
atticusofsparta Dec 10, 2025
c0aaa0f
fix(deposits): update deposit modal to manage modal to allow withdrawals
atticusofsparta Dec 10, 2025
5a9ad2e
fix(notifications): add interrupted workflow notifications
atticusofsparta Dec 10, 2025
0aef4b6
fix(pnpm): migrate script calls to pnpm
atticusofsparta Dec 10, 2025
1121043
fix(marketplace): update marketplace listings table
atticusofsparta Dec 11, 2025
abf2be7
fix(workflows): update continue workflow styling
atticusofsparta Dec 11, 2025
e4d08d0
fix(listing): update error presentation for asset issues
atticusofsparta Dec 11, 2025
2a5a11c
fix(view listing): update view listing styles
atticusofsparta Dec 12, 2025
92a33f1
fix(package manager): use yarn
atticusofsparta Dec 15, 2025
6e4cc98
fix(network): update network to use live services
atticusofsparta Dec 16, 2025
1788b5e
Merge remote-tracking branch 'origin/develop' into PE-8734-marketplace
atticusofsparta Dec 16, 2025
d81e577
fix(ao): dont pass gateway to aoconnect
atticusofsparta Dec 16, 2025
a78ea74
fix(actions): delete old action
atticusofsparta Dec 16, 2025
ab92794
fix(feedback): add ui feedback
atticusofsparta Dec 18, 2025
622e58d
fix(list name): add deposit flow to list name flow
atticusofsparta Dec 20, 2025
1743da4
fix(list name): update list name workflow
atticusofsparta Dec 22, 2025
fcf0c32
fix(list name for sale): update list name for sale workflow to have d…
atticusofsparta Dec 23, 2025
a459b86
fix(view listing): disable buy now button on expired listings
atticusofsparta Dec 23, 2025
8b033e6
fix(view listing): update listing views with deposit workflows
atticusofsparta Dec 23, 2025
129f3c6
fix(sdk): update sdk version
atticusofsparta Dec 23, 2025
9636ed7
Merge remote-tracking branch 'origin/develop' into PE-8734-marketplace
atticusofsparta Dec 23, 2025
db3aefc
fix(nav card): remove marketplace balance from nav card
atticusofsparta Jan 7, 2026
2ff7b6e
fix(cancel): add cancel workflow
atticusofsparta Jan 9, 2026
c7cee72
fix(list name for sale): refresh assets when listing name for sale
atticusofsparta Jan 9, 2026
64af8b3
fix(marketplace): update marketplace process id
atticusofsparta Jan 9, 2026
1ab4357
Merge remote-tracking branch 'origin/develop' into PE-8734-marketplace
atticusofsparta Jan 9, 2026
5b16b3a
fix(sdk): update sdk version to latest alpha
atticusofsparta Jan 9, 2026
f7ac29e
fix(ario marketplace pricing): update list name for sale ario price u…
atticusofsparta Jan 9, 2026
2406869
fix(pr preview): update pr preview action
atticusofsparta Jan 9, 2026
dd6c2e6
fix(marketplace): update usage of arweave ids to support eth wallet a…
atticusofsparta Jan 19, 2026
b58cf4d
Merge pull request #915 from ar-io/PE-8864-marketplace-feedback
atticusofsparta Jan 19, 2026
a09145e
fix(list name for sale): refactor positioning of elements
atticusofsparta Jan 20, 2026
6131d14
Merge remote-tracking branch 'origin/develop' into PE-8875-marketplac…
atticusofsparta Jan 20, 2026
be09fd3
fix(git): remove yarn-profile
atticusofsparta Jan 26, 2026
67688f3
fix(git): ignore yarn profile in git
atticusofsparta Jan 26, 2026
fc85191
Merge branch 'PE-8734-marketplace' of https://github.com/ar-io/arns-r…
atticusofsparta Jan 26, 2026
3976abb
Merge pull request #918 from ar-io/PE-8875-marketplace-feature-feedback
atticusofsparta Jan 26, 2026
c6b4e8f
fix(marketplace): apply feedback fixes
atticusofsparta Feb 9, 2026
e97642d
fix(domains table): add handling for not being able to retrieve proce…
atticusofsparta Feb 9, 2026
2d3ab49
fix(sdk version): bump sdk version for marketplace
atticusofsparta Feb 11, 2026
3439aba
Merge pull request #920 from ar-io/PE-8931-marketplace-feedback-2
atticusofsparta Feb 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 5 additions & 36 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test
name: Build and Lint

concurrency:
group: ${{ github.ref_name }}
Expand All @@ -13,17 +13,16 @@ on:
workflow_call:

jobs:
lint_test_build:
lint_and_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn --frozen-lockfile
node-version-file: ".nvmrc"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn lint:check
# - run: yarn test
- run: yarn build

# Upload build artifacts to avoid rebuilding in subsequent jobs
Expand All @@ -33,33 +32,3 @@ jobs:
name: dist
path: dist/
retention-days: 1

test-playwright:
runs-on: ubuntu-latest
needs: lint_test_build
if: github.ref_name == 'main'
steps:
- uses: actions/checkout@v3
- run: yarn --frozen-lockfile

# Cache Playwright browsers
- name: Cache Playwright browsers
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key:
playwright-browsers-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
playwright-browsers-${{ runner.os }}-

# Install Playwright browsers if not cached
- run: yarn playwright install

# Download build artifacts instead of rebuilding
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- run: yarn test:playwright
19 changes: 9 additions & 10 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,28 @@ on:
- main

jobs:
lint_and_test:
lint_and_build_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- run: yarn --frozen-lockfile
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint:check
# - run: yarn test

build_for_production:
runs-on: ubuntu-latest
needs: lint_and_test
needs: lint_and_build_check
environment: production
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- run: yarn --frozen-lockfile
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- name: Build
run: yarn build
env:
Expand Down Expand Up @@ -98,7 +97,7 @@ jobs:
name: dist-production
path: dist/

- run: yarn --frozen-lockfile
- run: yarn install --frozen-lockfile
- run: yarn deploy:arweave
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Install and Build 🔧
run: |
yarn --frozen-lockfile
yarn install --frozen-lockfile
yarn build
env:
# FOR BUILD
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ dist-manifest.json
test-results
storybook-static
*storybook.log
._*
._*
yarn-profile.json
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ and purchase Names.
### Run

```shell
yarn
yarn dev
pnpm install
pnpm dev
```

### Build

```shell
yarn build
pnpm build
```

### Test

```shell
yarn test
pnpm test
```

## Contributions
Expand Down
18 changes: 0 additions & 18 deletions __mocks__/react-router-dom.ts

This file was deleted.

7 changes: 0 additions & 7 deletions babel.config.cjs

This file was deleted.

19 changes: 2 additions & 17 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"files": {
"ignoreUnknown": false,
"ignore": ["node_modules", "dist", "coverage"]
"ignore": ["node_modules", "dist", "**/package.json", "coverage"]
},
"formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2 },
"organizeImports": { "enabled": true },
Expand Down Expand Up @@ -87,21 +87,6 @@
},
"javascript": {
"formatter": { "quoteStyle": "single" },
"globals": [
"chrome",
"__NPM_PACKAGE_VERSION__",
"JSX",
"React",
"describe",
"it",
"expect",
"beforeEach",
"afterEach",
"beforeAll",
"afterAll",
"vi",
"test",
"jest"
]
"globals": ["chrome", "__NPM_PACKAGE_VERSION__", "JSX", "React"]
}
}
56 changes: 0 additions & 56 deletions jest-setup.ts

This file was deleted.

31 changes: 0 additions & 31 deletions jest.config.json

This file was deleted.

Loading