Skip to content

Commit

Permalink
fix: update package org name (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: Pavan Soratur <pavansoratur@MacBookAir.lan>
  • Loading branch information
devpavan04 and Pavan Soratur authored Nov 7, 2024
1 parent 512973d commit e704f56
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 39 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @tangle-network/evm-contract-metadata
# @webb-tools/evm-contract-metadata

This package contains the EVM contract addresses, bridge contracts, and configs, along with token addresses.

Expand All @@ -7,7 +7,7 @@ This package contains the EVM contract addresses, bridge contracts, and configs,
To install this package, run:

```bash
yarn add @tangle-network/evm-contract-metadata
yarn add @webb-tools/evm-contract-metadata
```

## Usage
Expand All @@ -25,7 +25,7 @@ import {
EVMTokens,
EVMTokenEnum,
EVMChainEnum
} from '@tangle-network/evm-contract-metadata';
} from '@webb-tools/evm-contract-metadata';
```

- `HyperlaneAddresses` - Hyperlane contract addresses deployed by the Tangle Network. Contains core Hyperlane addresses like mailbox, IGP, router contracts, etc.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tangle-network/evm-contract-metadata",
"name": "@webb-tools/evm-contract-metadata",
"homepage": "https://www.tangle.tools/",
"repository": "https://github.com/tangle-network/evm-contract-metadata",
"version": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/evm/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { EVMChainEnum, EVMTokenEnum } from './types';
* example:
*
* ```ts
* import { EVMChainEnum, EVMTokens } from '@tangle-network/evm-contract-metadata';
* import { EVMChainEnum, EVMTokens } from '@webb-tools/evm-contract-metadata';
*
* const WETHAddressOnHolesky = EVMTokens[EVMChainEnum.Holesky].WETH;
* const USDTAddressOnTangleMainnet = EVMTokens[EVMChainEnum.TangleMainnet].USDT;
Expand Down
4 changes: 2 additions & 2 deletions src/evm/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* example:
*
* ```ts
* import { EVMTokenEnum } from '@tangle-network/evm-contract-metadata';
* import { EVMTokenEnum } from '@webb-tools/evm-contract-metadata';
*
* const WETH = EVMTokenEnum.WETH;
* ```
Expand All @@ -22,7 +22,7 @@ export enum EVMTokenEnum {
* example:
*
* ```ts
* import { EVMChainEnum } from '@tangle-network/evm-contract-metadata';
* import { EVMChainEnum } from '@webb-tools/evm-contract-metadata';
*
* const TangleMainnet = EVMChainEnum.TangleMainnet;
* ```
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlane/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const TangleMainnetAddresses: Partial<HyperlaneAddressesType> = {
* example:
*
* ```ts
* import { HyperlaneAddresses, HyperlaneChainEnum } from '@tangle-network/hyperlane-contract-metadata';
* import { HyperlaneAddresses, HyperlaneChainEnum } from '@webb-tools/hyperlane-contract-metadata';
*
* const holeskyMailboxAddress = HyperlaneAddresses[HyperlaneChainEnum.Holesky].mailbox;
* const tangleMainnetMailboxAddress = HyperlaneAddresses[HyperlaneChainEnum.TangleMainnet].mailbox;
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlane/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const TangleMainnetChainMetadata: ChainMetadata = {
* example:
*
* ```ts
* import { HyperlaneChainEnum, HyperlaneChains } from '@tangle-network/hyperlane-contract-metadata';
* import { HyperlaneChainEnum, HyperlaneChains } from '@webb-tools/hyperlane-contract-metadata';
*
* const holeskyChainMetadata = HyperlaneChains[HyperlaneChainEnum.Holesky];
* ```
Expand Down
4 changes: 2 additions & 2 deletions src/hyperlane/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* example:
*
* ```ts
* import { HyperlaneChainEnum } from '@tangle-network/hyperlane-contract-metadata';
* import { HyperlaneChainEnum } from '@webb-tools/hyperlane-contract-metadata';
*
* const chainType = HyperlaneChainEnum.TangleMainnet;
* ```
Expand All @@ -21,7 +21,7 @@ export enum HyperlaneChainEnum {
* example:
*
* ```ts
* import { HyperlaneAddressesType, HyperlaneChainEnum } from '@tangle-network/hyperlane-contract-metadata';
* import { HyperlaneAddressesType, HyperlaneChainEnum } from '@webb-tools/hyperlane-contract-metadata';
*
* const holeskyMailboxAddress = HyperlaneAddresses[HyperlaneChainEnum.Holesky].mailbox;
* const tangleMainnetMailboxAddress = HyperlaneAddresses[HyperlaneChainEnum.TangleMainnet].mailbox;
Expand Down
56 changes: 28 additions & 28 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3857,34 +3857,6 @@ __metadata:
languageName: node
linkType: hard

"@tangle-network/evm-contract-metadata@workspace:.":
version: 0.0.0-use.local
resolution: "@tangle-network/evm-contract-metadata@workspace:."
dependencies:
"@eslint/js": "npm:^9.14.0"
"@hyperlane-xyz/sdk": "npm:^5.6.2"
"@hyperlane-xyz/utils": "npm:^5.6.2"
"@semantic-release/commit-analyzer": "npm:^13.0.0"
"@semantic-release/github": "npm:^11.0.1"
"@semantic-release/npm": "npm:^12.0.1"
"@semantic-release/release-notes-generator": "npm:^14.0.1"
"@types/node": "npm:^22.9.0"
"@typescript-eslint/eslint-plugin": "npm:^8.13.0"
"@typescript-eslint/parser": "npm:^8.13.0"
eslint: "npm:^9.14.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-import: "npm:^2.31.0"
eslint-plugin-prettier: "npm:^5.2.1"
eslint-plugin-simple-import-sort: "npm:^12.1.1"
prettier: "npm:^3.3.3"
semantic-release: "npm:^24.2.0"
typescript: "npm:~5.6.2"
vite: "npm:^5.4.10"
vite-plugin-dts: "npm:^4.3.0"
vitest: "npm:^2.1.4"
languageName: unknown
linkType: soft

"@tufjs/canonical-json@npm:2.0.0":
version: 2.0.0
resolution: "@tufjs/canonical-json@npm:2.0.0"
Expand Down Expand Up @@ -4379,6 +4351,34 @@ __metadata:
languageName: node
linkType: hard

"@webb-tools/evm-contract-metadata@workspace:.":
version: 0.0.0-use.local
resolution: "@webb-tools/evm-contract-metadata@workspace:."
dependencies:
"@eslint/js": "npm:^9.14.0"
"@hyperlane-xyz/sdk": "npm:^5.6.2"
"@hyperlane-xyz/utils": "npm:^5.6.2"
"@semantic-release/commit-analyzer": "npm:^13.0.0"
"@semantic-release/github": "npm:^11.0.1"
"@semantic-release/npm": "npm:^12.0.1"
"@semantic-release/release-notes-generator": "npm:^14.0.1"
"@types/node": "npm:^22.9.0"
"@typescript-eslint/eslint-plugin": "npm:^8.13.0"
"@typescript-eslint/parser": "npm:^8.13.0"
eslint: "npm:^9.14.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-import: "npm:^2.31.0"
eslint-plugin-prettier: "npm:^5.2.1"
eslint-plugin-simple-import-sort: "npm:^12.1.1"
prettier: "npm:^3.3.3"
semantic-release: "npm:^24.2.0"
typescript: "npm:~5.6.2"
vite: "npm:^5.4.10"
vite-plugin-dts: "npm:^4.3.0"
vitest: "npm:^2.1.4"
languageName: unknown
linkType: soft

"@yarnpkg/lockfile@npm:^1.1.0":
version: 1.1.0
resolution: "@yarnpkg/lockfile@npm:1.1.0"
Expand Down

0 comments on commit e704f56

Please # to comment.