Skip to content

Commit

Permalink
chore: rename org (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan authored Jun 28, 2023
1 parent ccd1ee6 commit c426d7c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- uses: convictional/[email protected]
with:
owner: topos-network
owner: topos-protocol
repo: e2e-tests
github_token: ${{ secrets.ROBOT_PAT_TRIGGER_E2E_WORKFLOWS }}
workflow_file_name: frontend:erc20-messaging.yml
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
FROM node:lts-slim

ARG NPM_TOKEN
WORKDIR /usr/src/app

COPY package*.json .npmrc ./
RUN npm set //npm.pkg.github.com/:_authToken $NPM_TOKEN
COPY package*.json ./

RUN npm ci

Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@topos-network/executor-service",
"name": "@topos-protocol/executor-service",
"private": true,
"version": "1.0.0",
"description": "Delegate cross-subnet messages call on receiving subnets with the Executor service",
"license": "MIT",
"author": "Sébastien Dan <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/topos-network/executor-service.git"
"url": "git+https://github.com/topos-protocol/executor-service.git"
},
"scripts": {
"build": "nest build",
Expand All @@ -33,7 +33,7 @@
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/swagger": "^6.1.2",
"@topos-network/topos-smart-contracts": "^1.1.1",
"@topos-protocol/topos-smart-contracts": "^1.1.2",
"bcrypt": "^5.1.0",
"bull": "^4.10.1",
"class-transformer": "^0.5.1",
Expand Down
8 changes: 4 additions & 4 deletions src/execute/execute.processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import {
} from '@nestjs/bull'
import { Logger } from '@nestjs/common'
import { ConfigService } from '@nestjs/config'
import * as ToposCoreJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/ToposCore.sol/ToposCore.json'
import * as ToposMessagingJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/ToposMessaging.sol/ToposMessaging.json'
import * as SubnetRegistratorJSON from '@topos-network/topos-smart-contracts/artifacts/contracts/topos-core/SubnetRegistrator.sol/SubnetRegistrator.json'
import * as ToposCoreJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/ToposCore.sol/ToposCore.json'
import * as ToposMessagingJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/ToposMessaging.sol/ToposMessaging.json'
import * as SubnetRegistratorJSON from '@topos-protocol/topos-smart-contracts/artifacts/contracts/topos-core/SubnetRegistrator.sol/SubnetRegistrator.json'
import {
SubnetRegistrator,
ToposCore,
ToposMessaging,
} from '@topos-network/topos-smart-contracts/typechain-types/contracts/topos-core'
} from '@topos-protocol/topos-smart-contracts/typechain-types/contracts/topos-core'
import { Job } from 'bull'
import { ethers, providers } from 'ethers'

Expand Down

0 comments on commit c426d7c

Please sign in to comment.