Skip to content

Commit 2a6deab

Browse files
authored
Merge pull request #123 from nevermined-io/feat/base-sepolia
feat: base deployment
2 parents eda0cd1 + 97ab8da commit 2a6deab

File tree

5 files changed

+33
-6
lines changed

5 files changed

+33
-6
lines changed

.github/workflows/testing-nigthly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
yarn build
3737
yarn test test/integration/NFTs1155.test.ts
3838
- name: Upload logs
39-
uses: actions/upload-artifact@v2
39+
uses: actions/upload-artifact@v4
4040
if: failure()
4141
with:
4242
name: nevermined-tools-output

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
yarn test:integration
5555
- name: Upload logs
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
if: failure()
5858
with:
5959
name: nevermined-tools-output

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nevermined-io/cli",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"main": "index.js",
55
"repository": "[email protected]:nevermined-io/cli.git",
66
"author": "Nevermined",
@@ -25,7 +25,7 @@
2525
"ncli": "./dist/src/index.js"
2626
},
2727
"dependencies": {
28-
"@nevermined-io/sdk": "3.0.33",
28+
"@nevermined-io/sdk": "3.1.2-rc2",
2929
"log4js": "^6.9.1",
3030
"chalk": "^4.1.2",
3131
"cross-fetch": "~3.1.5",

resources/networks.json

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,33 @@
9999
"gasMultiplier": 0,
100100
"gasPriceMultiplier": 0,
101101
"externalNetwork": true
102-
},
102+
},
103+
"appBaseSepolia": {
104+
"envDescription": "Nevermined App (Base Sepolia) testnet environment where users can interact with Nevermined protocol.",
105+
"envUrl": "https://base-sepolia.nevermined.app/",
106+
"envName": "BaseSepolia",
107+
"isProduction": false,
108+
"nvm": {
109+
"chainId": 84532,
110+
"appUrl": "https://base-testing.nevermined.app",
111+
"web3ProviderUri": "https://sepolia.base.org",
112+
"marketplaceUri": "https://marketplace-api.base-sepolia.nevermined.app",
113+
"graphHttpUri": "",
114+
"neverminedNodeUri": "https://node.base-sepolia.nevermined.app",
115+
"neverminedNodeAddress": "0x5838B5512cF9f12FE9f2beccB20eb47211F9B0bc",
116+
"neverminedBackendUri": "https://one-backend.base-sepolia.nevermined.app",
117+
"verbose": true
118+
},
119+
"nativeToken": "ETH",
120+
"networkName": "base-sepolia",
121+
"contractsVersion": "3.5.9",
122+
"tagName": "public",
123+
"etherscanUrl": "https://sepolia.basescan.org",
124+
"erc20TokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
125+
"gasMultiplier": 0,
126+
"gasPriceMultiplier": 0,
127+
"externalNetwork": true
128+
},
103129
"appArbitrum": {
104130
"envDescription": "The Arbitrum One production environment where users can interact with Nevermined protocol.",
105131
"envUrl": "https://nevermined.app/",

src/commands/app/createApiKey.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ export const createApiKey = async (
7272
logger.debug(`Creating a new ZeroDev kernel client ...`)
7373
logger.debug(`Chain ID: ${nvmApp.sdk.client.chain?.id}`)
7474

75-
const privateKey = toHex(publisherAccount.getAccountSigner().getHdKey().privateKey)
75+
const privateKey = toHex((publisherAccount.getAccountSigner() as any).getHdKey().privateKey)
76+
// const privateKey = toHex(publisherAccount.getAccountSigner()?.getHdKey().privateKey)
7677

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

0 commit comments

Comments
 (0)