Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/testing-nigthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
yarn build
yarn test test/integration/NFTs1155.test.ts
- name: Upload logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: nevermined-tools-output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: |
yarn test:integration
- name: Upload logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: nevermined-tools-output
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nevermined-io/cli",
"version": "2.2.4",
"version": "2.2.5",
"main": "index.js",
"repository": "git@github.com:nevermined-io/cli.git",
"author": "Nevermined",
Expand All @@ -25,7 +25,7 @@
"ncli": "./dist/src/index.js"
},
"dependencies": {
"@nevermined-io/sdk": "3.0.33",
"@nevermined-io/sdk": "3.1.2-rc2",
"log4js": "^6.9.1",
"chalk": "^4.1.2",
"cross-fetch": "~3.1.5",
Expand Down
28 changes: 27 additions & 1 deletion resources/networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,33 @@
"gasMultiplier": 0,
"gasPriceMultiplier": 0,
"externalNetwork": true
},
},
"appBaseSepolia": {
"envDescription": "Nevermined App (Base Sepolia) testnet environment where users can interact with Nevermined protocol.",
"envUrl": "https://base-sepolia.nevermined.app/",
"envName": "BaseSepolia",
"isProduction": false,
"nvm": {
"chainId": 84532,
"appUrl": "https://base-testing.nevermined.app",
"web3ProviderUri": "https://sepolia.base.org",
"marketplaceUri": "https://marketplace-api.base-sepolia.nevermined.app",
"graphHttpUri": "",
"neverminedNodeUri": "https://node.base-sepolia.nevermined.app",
"neverminedNodeAddress": "0x5838B5512cF9f12FE9f2beccB20eb47211F9B0bc",
"neverminedBackendUri": "https://one-backend.base-sepolia.nevermined.app",
"verbose": true
},
"nativeToken": "ETH",
"networkName": "base-sepolia",
"contractsVersion": "3.5.9",
"tagName": "public",
"etherscanUrl": "https://sepolia.basescan.org",
"erc20TokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"gasMultiplier": 0,
"gasPriceMultiplier": 0,
"externalNetwork": true
},
"appArbitrum": {
"envDescription": "The Arbitrum One production environment where users can interact with Nevermined protocol.",
"envUrl": "https://nevermined.app/",
Expand Down
3 changes: 2 additions & 1 deletion src/commands/app/createApiKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ export const createApiKey = async (
logger.debug(`Creating a new ZeroDev kernel client ...`)
logger.debug(`Chain ID: ${nvmApp.sdk.client.chain?.id}`)

const privateKey = toHex(publisherAccount.getAccountSigner().getHdKey().privateKey)
const privateKey = toHex((publisherAccount.getAccountSigner() as any).getHdKey().privateKey)
// const privateKey = toHex(publisherAccount.getAccountSigner()?.getHdKey().privateKey)

const account = privateKeyToAccount(privateKey)
logger.debug(`Private key Account: ${account.address}`)
Expand Down