File tree Expand file tree Collapse file tree 5 files changed +33
-6
lines changed Expand file tree Collapse file tree 5 files changed +33
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change 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/" ,
Original file line number Diff line number Diff 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 } ` )
You can’t perform that action at this time.
0 commit comments