Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into oracle-view-table
Browse files Browse the repository at this point in the history
  • Loading branch information
Benzbeeb authored Aug 18, 2020
2 parents 62b35d5 + 14a3e7e commit ee4a06e
Show file tree
Hide file tree
Showing 70 changed files with 6,000 additions and 4,000 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,17 @@

### Scan

- (imprv) [\#2473](https://github.com/bandprotocol/bandchain/pull/2473) Implemented OWASM code tab for OC index page, improved some components
- (impv) [\#2493](https://github.com/bandprotocol/bandchain/pull/2493) Implemented requests table for all requests page
- (impv) [\#2492](https://github.com/bandprotocol/bandchain/pull/2492) Implemented OC index Top part, and patched padding bottom to section
- (impv) [\#2491](https://github.com/bandprotocol/bandchain/pull/2491) Patched latest Txs and Blocks.
- (impv) [\#2487](https://github.com/bandprotocol/bandchain/pull/2487) Updated OC requests tab on OC index page
- (feat) [\#2482](https://github.com/bandprotocol/bandchain/pull/2482) Implemented latest requests.
- (impv) [\#2481](https://github.com/bandprotocol/bandchain/pull/2481) Patched `ChainInfoHighlight` for revamp version.
- (impv) [\#2478](https://github.com/bandprotocol/bandchain/pull/2478) Implemented New Header (aka TopBar), Navbar and Profile.
- (impv) [\#2474](https://github.com/bandprotocol/bandchain/pull/2474) Implemented bride code tab for OC index page and added FontAwesome library with Icon component(it's from Peach)
- (impv) [\#2473](https://github.com/bandprotocol/bandchain/pull/2473) Implemented OWASM code tab for OC index page, improved some components
- (impv) [\#2471](https://github.com/bandprotocol/bandchain/pull/2471) Implemented the all oraclescripts page and refactor some part
- (impv) [\#2456](https://github.com/bandprotocol/bandchain/pull/2456) Changed exit_code and external_id from int to string

### Bridges

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This repository is a [monorepo] containing the reference implementation of BandC

## Running with Docker

There are 2 ways to run bandchian
There are 2 ways to run bandchain

#### Run on 4 validators

Expand Down
2 changes: 1 addition & 1 deletion helpers/pyband/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def main():
req_info = c.get_latest_request(67, bytes.fromhex("0000000000000064"), 4, 4)
oracle_script = c.get_oracle_script(67)
obi = PyObi(oracle_script.schema)
print(obi.decode_output(req_info.result.ResponsePacketData.result))
print(obi.decode_output(req_info.result.response_packet_data.result))


if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions helpers/pyband/pyband/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ class ResponsePacketData(object):

@dataclass
class Result(object):
RequestPacketData: RequestPacketData
ResponsePacketData: ResponsePacketData
request_packet_data: RequestPacketData
response_packet_data: ResponsePacketData


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion helpers/pyband/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="pyband",
packages=["pyband"],
version="0.0.1",
version="0.0.2",
license="MIT",
description="Python library for BandChain",
author="Band Protocol",
Expand Down
Loading

0 comments on commit ee4a06e

Please sign in to comment.