diff --git a/.github/workflows/docker_build_push.yml b/.github/workflows/docker_build_push.yml index 23389b6..ccc60fa 100644 --- a/.github/workflows/docker_build_push.yml +++ b/.github/workflows/docker_build_push.yml @@ -13,7 +13,7 @@ jobs: name: Build and push docker image to GitHub Container Registry strategy: matrix: - environment: [devnet-1] + environment: [devnet-1, testnet-1] runs-on: ubuntu-latest-16-core environment: ${{ matrix.environment }} outputs: diff --git a/package-lock.json b/package-lock.json index 89d84e1..fea160e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3919,9 +3919,9 @@ } }, "node_modules/@topos-protocol/topos-smart-contracts": { - "version": "1.1.4-rc1", - "resolved": "https://registry.npmjs.org/@topos-protocol/topos-smart-contracts/-/topos-smart-contracts-1.1.4-rc1.tgz", - "integrity": "sha512-Za48y/OUhXfDkWdbJAkBuGhRWVRc92b2zoSCJcrOe0DrkmsHYQY+RH9qIqwVmGdlHFM8SaH8kctwtY0MfZG4Sw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@topos-protocol/topos-smart-contracts/-/topos-smart-contracts-1.2.2.tgz", + "integrity": "sha512-x0rkGALx493ty8E2AKeaVhaUvC7SzenMwjAf2UsMwF9V9n9lfmAQv2T2DquGa/GG+Hdyl3BHO3U4f8V+Q6ytwA==", "dependencies": { "@openzeppelin/contracts": "^4.8.3", "ethers": "^5.7.2", @@ -15441,7 +15441,7 @@ "@elastic/apm-rum": "^5.14.0", "@emotion/react": "11.10.6", "@emotion/styled": "11.10.6", - "@topos-protocol/topos-smart-contracts": "^1.1.4-rc1", + "@topos-protocol/topos-smart-contracts": "^1.2.2", "antd": "^5.4.0", "axios": "^1.4.0", "ethers": "^5.7.2", @@ -18471,9 +18471,9 @@ "requires": {} }, "@topos-protocol/topos-smart-contracts": { - "version": "1.1.4-rc1", - "resolved": "https://registry.npmjs.org/@topos-protocol/topos-smart-contracts/-/topos-smart-contracts-1.1.4-rc1.tgz", - "integrity": "sha512-Za48y/OUhXfDkWdbJAkBuGhRWVRc92b2zoSCJcrOe0DrkmsHYQY+RH9qIqwVmGdlHFM8SaH8kctwtY0MfZG4Sw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@topos-protocol/topos-smart-contracts/-/topos-smart-contracts-1.2.2.tgz", + "integrity": "sha512-x0rkGALx493ty8E2AKeaVhaUvC7SzenMwjAf2UsMwF9V9n9lfmAQv2T2DquGa/GG+Hdyl3BHO3U4f8V+Q6ytwA==", "requires": { "@openzeppelin/contracts": "^4.8.3", "ethers": "^5.7.2", @@ -22110,7 +22110,7 @@ "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "^14.4.3", - "@topos-protocol/topos-smart-contracts": "^1.1.4-rc1", + "@topos-protocol/topos-smart-contracts": "^1.2.2", "@types/jest": "^29.5.1", "@types/react": "^18.0.28", "@types/react-dom": "^18.0.11", diff --git a/packages/backend/src/faucet/faucet.service.ts b/packages/backend/src/faucet/faucet.service.ts index acd35b6..6d1c47f 100644 --- a/packages/backend/src/faucet/faucet.service.ts +++ b/packages/backend/src/faucet/faucet.service.ts @@ -1,10 +1,9 @@ -import { context, Context, trace } from '@opentelemetry/api' -import { Injectable, Logger } from '@nestjs/common' +import { Injectable } from '@nestjs/common' import { ConfigService } from '@nestjs/config' import { ethers, providers } from 'ethers' import { GetSubnetAssetsDto } from './faucet.dto' -import { apm, SERVICE_NAME } from '../main' +import { apm } from '../main' import { sanitizeURLProtocol } from '../utils' import { PROVIDER_ERRORS, WALLET_ERRORS } from './faucet.errors' import { Transaction } from 'elastic-apm-node' @@ -29,7 +28,6 @@ export class FaucetService { }) ) ).finally(() => { - console.log('full done') apmTransaction.end() }) } @@ -62,7 +60,6 @@ export class FaucetService { const receipt = await tx.wait() span.end() - console.log('end index', apmSpanIndex) resolve(receipt) } catch (error) { diff --git a/packages/frontend/package.json b/packages/frontend/package.json index 677bce5..0b8dbb8 100644 --- a/packages/frontend/package.json +++ b/packages/frontend/package.json @@ -15,7 +15,7 @@ "@elastic/apm-rum": "^5.14.0", "@emotion/react": "11.10.6", "@emotion/styled": "11.10.6", - "@topos-protocol/topos-smart-contracts": "^1.1.4-rc1", + "@topos-protocol/topos-smart-contracts": "^1.2.2", "antd": "^5.4.0", "axios": "^1.4.0", "ethers": "^5.7.2",