Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 616 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 616 Bytes

eos-abi

ABI encoder and decoder for EOS. Uses the official ABI library abieos.

Usage

  1. Get the sources:
    go get github.com/Jeiwan/eos-abi
    
  2. Edit abieos/CMakeLists.txt and replace:
    add_library(abieos MODULE src/abieos.cpp)
    
    With:
    add_library(abieos SHARED src/abieos.cpp)
    
  3. Compile abieos:
    make compile-abieos
    
  4. For MacOS only:
    export DYLD_LIBRARY_PATH=$GOPATH/src/github.com/Jeiwan/eos-abi/abieos/lib/darwin
    
    (https://stackoverflow.com/a/53939576/3903642)