Skip to content

Commit

Permalink
Removed test testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicF96 committed Aug 2, 2024
1 parent 2dd4f21 commit db5d9d0
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ With the 2.0 release, we’ve made significant improvements to enhance developer

## Installation

You first need to install [bun](https://bun.sh/).

### From npm

To install the package, run:
Expand Down
2 changes: 1 addition & 1 deletion data/chains/V2/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is auto-generated on pre-commit to avoid maintaining it.
// Do not modify manually as it will be overwritten.
// Last generation on 8/2/2024, 9:55:56 AM.
// Last generation on 8/2/2024, 11:58:31 AM.

export { default as arbone } from './arbone/meta';
export { default as arbgoerli } from './arbone/testnets/arbgoerli/meta';
Expand Down
2 changes: 1 addition & 1 deletion data/index.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Chains under ordered were manually placed, to manage the z-index (priority order) of chains.
// Chains under missing are generated from available data, make sure to order them.
// Include deprecated or future chains.
// Last generation on 8/2/2024, 9:55:56 AM.
// Last generation on 8/2/2024, 11:58:31 AM.

export default {
ordered: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pinax/chains",
"version": "2.0.5-rc1",
"version": "2.0.6",
"description": "Single-source-of-truth for the metadata of chains supported by Pinax.",
"keywords": [
"chains",
Expand Down
7 changes: 1 addition & 6 deletions scripts/generate/V2/data_json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@ import * as chainData from '../../../data/chains/V2/index';
import { toCamelCase } from '../../../utils/case';
import indexConf from '../../../data/index.config';
import { IndexConfig } from './index_config_check';
import {
Chain,
ServiceID,
ServiceStatusDates,
SupportedServices,
} from '../../../types';
import { Chain, SupportedServices } from '../../../types';

interface SubnetData {
id: string;
Expand Down
7 changes: 7 additions & 0 deletions types/chain.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export type ChainBase = {
index?: number;

// Chain Standard (ie. ERC20)
// One good reference to determine chain standard is
// https://thegraph.com/docs/en/developing/supported-networks/
standard: Standard | null;

// Whether or not the chain supports detailed blocks.
Expand Down Expand Up @@ -71,9 +73,14 @@ export type ___InternalEVM = ChainBase & {
export interface ___InternalChain extends ChainBase {
icon: {
// Token Icon ID
// See if icon is available on https://tokenicons.io/, if not create PR to add it.
// Then go on the Github Repo and find the icon ID under /packages/core/src/metadata/
// https://github.com/0xa3k5/token-icons
id: string;

// Theme of the Icon brand
// To avoid placing a dark icon on a dark background.
// If the brand is in midtones or some vibrant color, use 'both'.
brand_theme: 'light' | 'dark' | 'both';

// Generated by ./scripts/generate/data_json.js
Expand Down
2 changes: 1 addition & 1 deletion types/graph.types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is auto-generated on pre-commit to avoid maintaining it.
// Do not modify manually as it will be overwritten.
// Last generation on 8/2/2024, 9:55:57 AM.
// Last generation on 8/2/2024, 11:58:31 AM.
export type GraphID =
| 'arbitrum-one'
| 'arbitrum-sepolia'
Expand Down
2 changes: 1 addition & 1 deletion types/pinax.types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is auto-generated on pre-commit to avoid maintaining it / circular dependencies.
// Do not modify manually as it will be overwritten.
// Last generation on 8/2/2024, 9:55:57 AM.
// Last generation on 8/2/2024, 11:58:32 AM.
export type PinaxID =
| 'arbone'
| 'arbgoerli'
Expand Down

0 comments on commit db5d9d0

Please sign in to comment.