Skip to content

Commit 85e7641

Browse files
committed
bump version to 1.1.6 and add new project links for ForwardResearch, Vento, and Beacon
1 parent 223b717 commit 85e7641

7 files changed

Lines changed: 47 additions & 8 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arcaogaming/project-links",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "Easy access to links and information for various blockchain projects",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

src/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
//ARNS Names
42
export const ARNS_RANDAO = 'randao'
53
export const ARNS_RANDAO_DOCS = `docs_${ARNS_RANDAO}`
@@ -26,4 +24,6 @@ export const DOMAIN_YOUTUBE_HANDLE = 'youtube.com/@';
2624
export const ARCAO_DISCORD = 'arc-ao';
2725
export const ARCAO_TELEGRAM = 'ArcAOGames';
2826

29-
27+
// New Project Domains
28+
export const DOMAIN_VENTO = 'ventoswap.com';
29+
export const DOMAIN_BEACON = 'getbeaconapp.com';

src/index.ts

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ import type {
1717
WeareweLinks,
1818
MekahumanLinks,
1919
GameLinks,
20-
PermaswapLinks
20+
PermaswapLinks,
21+
ForwardResearchLinks,
22+
VentoLinks,
23+
BeaconLinks
2124
} from './types';
2225

2326
// Import project links
@@ -34,6 +37,9 @@ import { WEAREWE_LINKS } from './projects/wearewe';
3437
import { MEKAHUMAN_LINKS } from './projects/mekahuman';
3538
import { GAME_LINKS } from './projects/game';
3639
import { PERMASWAP_LINKS } from './projects/permaswap';
40+
import { FORWARDRESEARCH_LINKS } from './projects/forwardresearch';
41+
import { VENTO_LINKS } from './projects/vento';
42+
import { BEACON_LINKS } from './projects/beacon';
3743

3844
// Export project links with their specific types
3945
export const ARCAO: ArcaoLinks = ARCAO_LINKS;
@@ -48,7 +54,10 @@ export const BAZAR: BazarLinks = BAZAR_Links;
4854
export const WANDER: WanderLinks = WANDER_LINKS;
4955
export const WEAREWE: WeareweLinks = WEAREWE_LINKS;
5056
export const MEKAHUMAN: MekahumanLinks = MEKAHUMAN_LINKS;
51-
export const GAME: GameLinks = GAME_LINKS
57+
export const GAME: GameLinks = GAME_LINKS;
58+
export const FORWARDRESEARCH: ForwardResearchLinks = FORWARDRESEARCH_LINKS;
59+
export const VENTO: VentoLinks = VENTO_LINKS;
60+
export const BEACON: BeaconLinks = BEACON_LINKS;
5261

5362
// Export all projects in a single object
5463
export const PROJECTS = {
@@ -64,7 +73,10 @@ export const PROJECTS = {
6473
WEAREWE,
6574
MEKAHUMAN,
6675
GAME,
67-
PERMASWAP
76+
PERMASWAP,
77+
FORWARDRESEARCH,
78+
VENTO,
79+
BEACON
6880
} as const;
6981

7082
// Export types and constants
@@ -81,6 +93,9 @@ export type {
8193
WeareweLinks,
8294
MekahumanLinks,
8395
GameLinks,
84-
PermaswapLinks
96+
PermaswapLinks,
97+
ForwardResearchLinks,
98+
VentoLinks,
99+
BeaconLinks
85100
} from './types';
86101
export * from './constants';

src/projects/beacon.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { BeaconLinks } from '../types';
2+
import { DOMAIN_BEACON } from '../constants';
3+
4+
export const BEACON_LINKS: BeaconLinks = {
5+
website: `https://${DOMAIN_BEACON}`
6+
};

src/projects/forwardresearch.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { ForwardResearchLinks } from '../types';
2+
import { getGateWay } from '../gateways';
3+
4+
export const FORWARDRESEARCH_LINKS: ForwardResearchLinks = {
5+
website: `https://fwd.${getGateWay()}`
6+
};

src/projects/vento.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { VentoLinks } from '../types';
2+
import { DOMAIN_VENTO } from '../constants';
3+
4+
export const VENTO_LINKS: VentoLinks = {
5+
website: `https://${DOMAIN_VENTO}`
6+
};

src/types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,9 @@ export type MekahumanLinks = Pick<AllLinkTypes, 'website' | 'twitter'>;
5353

5454
interface GameSpecificLinks { yieldFarming: string }
5555
export type GameLinks = Pick<AllLinkTypes, 'sdkDocs' | 'website' | 'twitter' | 'twitterFollow' | 'github' | 'discord' | 'telegram' | 'youtube' | 'docs' | 'mediaKit'> & ArcAOSpecificLinks & GameSpecificLinks;
56+
57+
export type ForwardResearchLinks = Pick<AllLinkTypes, 'website'>;
58+
59+
export type VentoLinks = Pick<AllLinkTypes, 'website'>;
60+
61+
export type BeaconLinks = Pick<AllLinkTypes, 'website'>;

0 commit comments

Comments
 (0)