Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit c426d7c

Browse files
author
Sébastien Dan
authored
chore: rename org (#9)
1 parent ccd1ee6 commit c426d7c

File tree

6 files changed

+20
-23
lines changed

6 files changed

+20
-23
lines changed

.github/workflows/docker_build_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: convictional/trigger-workflow-and-wait@v1.6.1
3030
with:
31-
owner: topos-network
31+
owner: topos-protocol
3232
repo: e2e-tests
3333
github_token: ${{ secrets.ROBOT_PAT_TRIGGER_E2E_WORKFLOWS }}
3434
workflow_file_name: frontend:erc20-messaging.yml

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
FROM node:lts-slim
22

3-
ARG NPM_TOKEN
43
WORKDIR /usr/src/app
54

6-
COPY package*.json .npmrc ./
7-
RUN npm set //npm.pkg.github.com/:_authToken $NPM_TOKEN
5+
COPY package*.json ./
86

97
RUN npm ci
108

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "@topos-network/executor-service",
2+
"name": "@topos-protocol/executor-service",
33
"private": true,
44
"version": "1.0.0",
55
"description": "Delegate cross-subnet messages call on receiving subnets with the Executor service",
66
"license": "MIT",
77
"author": "Sébastien Dan <sebastien.dan@gmail.com>",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/topos-network/executor-service.git"
10+
"url": "git+https://github.com/topos-protocol/executor-service.git"
1111
},
1212
"scripts": {
1313
"build": "nest build",
@@ -33,7 +33,7 @@
3333
"@nestjs/passport": "^9.0.0",
3434
"@nestjs/platform-express": "^9.4.0",
3535
"@nestjs/swagger": "^6.1.2",
36-
"@topos-network/topos-smart-contracts": "^1.1.1",
36+
"@topos-protocol/topos-smart-contracts": "^1.1.2",
3737
"bcrypt": "^5.1.0",
3838
"bull": "^4.10.1",
3939
"class-transformer": "^0.5.1",

src/execute/execute.processor.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import {
1111
} from '@nestjs/bull'
1212
import { Logger } from '@nestjs/common'
1313
import { ConfigService } from '@nestjs/config'
14-
import * as ToposCoreJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/ToposCore.sol/ToposCore.json'
15-
import * as ToposMessagingJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/ToposMessaging.sol/ToposMessaging.json'
16-
import * as SubnetRegistratorJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/SubnetRegistrator.sol/SubnetRegistrator.json'
14+
import * as ToposCoreJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/ToposCore.sol/ToposCore.json'
15+
import * as ToposMessagingJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/ToposMessaging.sol/ToposMessaging.json'
16+
import * as SubnetRegistratorJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/SubnetRegistrator.sol/SubnetRegistrator.json'
1717
import {
1818
SubnetRegistrator,
1919
ToposCore,
2020
ToposMessaging,
21-
} from '@topos-network/topos-smart-contracts/typechain-types/contracts/topos-core'
21+
} from '@topos-protocol/topos-smart-contracts/typechain-types/contracts/topos-core'
2222
import { Job } from 'bull'
2323
import { ethers, providers } from 'ethers'
2424

0 commit comments

Comments
 (0)