Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to

## [Unreleased]

## [2.1.1] - 2026-06-17

### Changed

- Update landing page transaction ID

## [2.1.0] - 2026-06-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion landing_page/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Current version is fdHHWvv-rVplgmMNxJ-JxyEAFmObQvKQGHn0fi3v9Ks
### Current version is T9_V2HfiAq5qlLzObfyayj2-cjPujxpg25TRi4OZbe4

# ArNS Landing Page Project

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "arns-vite-react",
"private": true,
"version": "2.1.0",
"version": "2.1.1",
"homepage": ".",
"scripts": {
"build": "yarn clean && cross-env NODE_OPTIONS=--max-old-space-size=32768 vite build",
Expand Down
3 changes: 2 additions & 1 deletion src/state/actions/dispatchArIOInteraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
getSolanaRpc,
getSolanaRpcSubscriptions,
} from '@src/utils/solana';
import { createAntStateForOwner } from '@src/utils/transactionUtils/transactionUtils';
import { Dispatch } from 'react';

export default async function dispatchArIOInteraction({
Expand Down Expand Up @@ -131,8 +132,8 @@ export default async function dispatchArIOInteraction({
signer: wallet.solanaSigner,
antProgramId: programIds.antProgramId,
state: {
...createAntStateForOwner(owner.toString(), payload.targetId),
name,
transactionId: payload.targetId,
},
});
antProcessId = spawnResult.processId;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const transactionByOwnerQuery = (address: ArweaveTransactionID) => {
};

export const LANDING_PAGE_TXID = new ArweaveTransactionID(
'fdHHWvv-rVplgmMNxJ-JxyEAFmObQvKQGHn0fi3v9Ks',
'T9_V2HfiAq5qlLzObfyayj2-cjPujxpg25TRi4OZbe4',
);

export const RESERVED_BREADCRUMB_TITLES = new Set([
Expand Down
Loading