Near-One / near-plugins

Implementation of common patterns used for NEAR smart contracts.
Creative Commons Zero v1.0 Universal
27 stars 12 forks source link

build: only use `borsh` re-exported by `near-sdk` #122

Closed mooori closed 7 months ago

mooori commented 7 months ago

near-plugins-derive was the only workspace member that depended on borsh. However, it isn’t actually used. Instead borsh re-exported by near-sdk is used, which is considered best practice. Removing the borsh dependency might also prevent using it accidentally (instead of borsh re-exported by near-sdk) in the future.

mooori commented 7 months ago

@birchmd thank you for the suggestion! I've opened #123.