Concordium / concordium-node

The main concordium node implementation.
GNU Affero General Public License v3.0
45 stars 22 forks source link

Unify Rust SDK and smart contract libraries (core blockchain) #409

Closed smh1001 closed 2 years ago

smh1001 commented 2 years ago

The Rust SDK allows a user to interface with the node (e.g., query, send transactions), and the smart contract libraries contain helpers for serialization, type definitions specific to smart contracts, etc. It is currently not possible to use the same serialization both in smart contracts and in an off-chain tool that uses them. This is due to some technical issues in the way we have set up dependencies and compilation targets. These issues are solvable.

smh1001 commented 2 years ago

Duplicate.