NEM is a peer-to-peer cryptocurrency and blockchain platform launched on March 31, 2015. NEM has a stated goal of a wide distribution model and has introduced new features to blockchain technology such as its POI algorithm, multisignature accounts, encrypted messaging, and more. The NEM blockchain software is used in a commercial blockchain called Mijin, which is being tested by financial institutions and private companies in Japan and internationally.
Questions tagged [nem]
14 questions
109
votes
24 answers
Module not found: Error: Can't resolve 'crypto'
I am getting the following list of errors when I run ng serve.
My package JSON is as follows:
{ "name": "ProName", "version": "0.0.0", "scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
…

Illep
- 16,375
- 46
- 171
- 302
3
votes
0 answers
React native for iOS - CFBundleIdentifier does not exist
I'm trying to run my app with react-native run-ios command but its showing the following error:
Found Xcode project AliceMobile.xcodeproj Building using "xcodebuild
-project AliceMobile.xcodeproj -configuration Debug -scheme AliceMobile…

Lucas Navarro
- 103
- 1
- 6
1
vote
1 answer
Error when connecting to the nem test node with node.js
After typing the commands in the terminal (mac): npm init and npm install nem-sdk
I create a main.js script in the same file:
let nem = require("nem-sdk").default;
let endpoint = nem.model.objects.create("endpoint")
(nem.model.nodes.defaultTesnet,…
0
votes
1 answer
NEM2 sdk for java not working on Glassfish server
I have an Apache Tomcat (v9.0) development server, and I am using nem2-sdk to perform blockchain operations. Everything works well on dev server, but when I deploy to production server which is a Glassfish (v4.1.2) server, blockchain functions give…

Skywalker
- 1,590
- 1
- 18
- 36
0
votes
1 answer
Profile is created but account info not found?
I start catapult service using docker.
I created two profile successfully.
I run this command nem2-cli profile list I can see the two profiles.
but when I run this command nem2-cli account info, I get this error:
processing.. |ERR To start using the…

Alvin
- 8,219
- 25
- 96
- 177
0
votes
1 answer
Trying to create multisig account for NEM on local machine but getting error
Hello Everyone I am trying to make plugin from Buildfire to be bale to create NEM account and to change it into multisig account using local network (ei localhost)
Here are the code snippets for the required things I would like to ask weather there…

Igor Okhapkin
- 9
- 2
0
votes
2 answers
Initiating transactions in nem Returns FAILURE_WRONG_NETWORK
I have tried with broadcast example . I am getting failure wrong network error from reference
https://gist.github.com/evias/794b14e2af3704ff5371826e9757832b
and I have tried with key pair generation from this reference too…

Kavya Shree
- 1,014
- 2
- 17
- 52
0
votes
0 answers
Using Nem-library or nem-sdk on nativescript angular app
I would like to integrate the nem-blockchain sdk or library into my mobile app.
https://github.com/NEMPH/nem-apps-lib
https://nemlibrary.com/
https://github.com/QuantumMechanics/NEM-sdk
any working solution is welcomed
0
votes
2 answers
nem explorer investigating a Tx
I logged
const transactionHttp = new TransactionHttp(url)
const signed = initiator
.sign(aggregateTransaction)
console.log(signed.hash)
and received
B4B531D2FA3D4FA58EC1B1FFCF22961967143D117C8DB70A139F96D492A2F4F9
as a response as…

Gabriel Canaan
- 1
- 1
0
votes
1 answer
Error Error: fully qualified id is invalid due to empty part (:-3087871471161192663)
I use nem2-sdk with javascript, ubuntu16.04. I couldn't solve this error.
In lockfunds transaction, mosaicid is something wrong,
Error Error: fully qualified id is invalid due to empty part (:-3087871471161192663)
My Procedure is,
Alice make and…
0
votes
1 answer
Namespace/Mosaic Duration Limitations?
are there any limit for setting duration for namespaces (and mosaics)?
I have tried with Long.MAX_VALUE, 100000, only 1000 succeeded in registering, then i have tried with an account with 20k testxems on it, and was able to set the duration of the…

denizdurmus
- 1,289
- 1
- 13
- 39
0
votes
2 answers
Multisig wallet is not converted. Why aggregated transaction does not return error?
I haven't converted account to multisig and I try to make aggregated transaction from it. No error occur

Agne
- 3
- 1
0
votes
1 answer
How to cosign aggregate transactions involving a multisig
As a cosignatory, I am trying to sign an aggregate transaction where a multisig is involved. However, through the cosignatory partialAdded, I don't receive any transaction to cosign.
Example:
Alice, Bob, and Charlie are all cosigners on a 2 of 3…

arodriguezdonaire
- 5,396
- 1
- 26
- 50
0
votes
1 answer
Programming the NEM blockchain & storing ipfs hash
I am looking at integrating an IPFS content hash into the NEM/Mijin blockchain. If I attach the ipfs Hash in the message section of a mosaic, will this be actually added to the blockchain, or do I need to add the hash as part of the mosaic name, but…

The1Waterman
- 1
- 1