Without using something like Bitcoin Script, how NEM verify the transaction?

2

1

From NEM's thread in bitcointalk, it mentions:

NEM doesn’t use so-called “scripts” aka predicates.

I understand how Bitcoin use the script to verify the transaction. May I know where I can read how NEM is going to verify the transaction in detail, without using the script?

J Leon Yeoh

Posted 2015-04-19T10:02:34.933

Reputation: 21

You can also check out their github open source repository which they just released

abeikverdi 2015-04-20T01:15:23.193

Answers

2

NEM uses some servers as the transaction validators called NIS. User signs the code and then the signed byte is sent over the network which is received and processed by the other servers. If you are not a server then all you need to do is to sign the transaction and send it to the severs and that is why NEM doesn't need a similar script language like bitcoin. However servers should have a complicated mechanism and code to verify transactions.

You can check NEM servers here and anyone with the server software running can be a server.

This creates a server-client architecture which eliminates some processes from the clients.

Resource: Makoto, a NEM core developer

abeikverdi

Posted 2015-04-19T10:02:34.933

Reputation: 784