This repository was archived by the owner on Oct 31, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +20
-23
lines changed
Expand file tree Collapse file tree 6 files changed +20
-23
lines changed Original file line number Diff line number Diff line change 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11FROM node:lts-slim
22
3- ARG NPM_TOKEN
43WORKDIR /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
97RUN npm ci
108
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ import {
1111} from '@nestjs/bull'
1212import { Logger } from '@nestjs/common'
1313import { 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'
1717import {
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'
2222import { Job } from 'bull'
2323import { ethers , providers } from 'ethers'
2424
You can’t perform that action at this time.
0 commit comments