8000 Tags · mh-x/eos-go · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: mh-x/eos-go

Tags

v0.8.10

Toggle v0.8.10's commit message
Small renames of `ToName` (which yielded a uint64.. all of this is a …

…little wonky,

because we represent a `Name` as a string, whereas in C++, names are indeed
uint64 ..

v0.8.9

Toggle v0.8.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request eoscanada#118 from eoscanada/fix/abi-decoding

Fixes a few problem with ABI decoding

v0.8.8

Toggle v0.8.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request eoscanada#117 from eoscanada/feature/support-tx-pa…

…cked-json-compression-as-int

Added support for int compression type in JSON

v0.8.7

Toggle v0.8.7's commit message
Refactor `NewSetContract` to re-use `NewSetCode` and `NewSetABI` and …

…allow empty ABI file

It's now possible to pass an `ABI` file that is fully empty enabling the
possibility to "unset" an `ABI`. It was not working properly because we try
parse as JSON regardless if there is something or not.

At the same time, factorized `NewSetContract` to re-use `NewSetCode` and
`NewSetABI` instead of deplucation the same code twice.

v0.8.6

Toggle v0.8.6's commit message
Turned unknown key error returned from `EOSIO` API into ErrNotFound e…

…rror

Some endpoint like `/v1/chain/get_account` returns a body in the form:

```
{
  "code": 500,
  "message": "Internal Service Error",
  "error": {
    "code": 0,
    "name": "exception",
    "what": "unspecified",
    "details": [{
      "message": "unknown key (<... redacted ...>): (0 eos.rex)",
      "file": "http_plugin.cpp",
      "line_number": 589,
      "method": "handle_exception"
    }]
  }
}
```

This is problematic as the API only flag ErrNotFound when the HTTP code is
404. We added a new method `IsUnknownKeyError` on the `APIError` struct
so one can check if the `APIError` respects conditions making it an
unknown key error.

When it's the case, the API will now return `ErrNotFound` error in those
cases instead of the weird and bad `EOSIO` error.

v0.8.5

Toggle v0.8.5's commit message
Updated global_sequence and recv_sequence (and friends) to `Uint64`, …

…which

they are per `nodeos`'s code.

v0.8.4

Toggle v0.8.4's commit message
Updated a few last int64

v0.8.3

Toggle v0.8.3's commit message
Fixed decoding of signature binary in ABI

v0.8.2

Toggle v0.8.2's commit message
Changed default forum contract

v0.8.1

Toggle v0.8.1's commit message
Merge branch 'master' of github.com:eoscanada/eos-go

0