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

Commit

Permalink
Merge pull request #1858 from bandprotocol/add-go-owasm
Browse files Browse the repository at this point in the history
owasm: Add go-owasm to monorepo
  • Loading branch information
sorawit committed Jun 4, 2020
2 parents 446fe04 + e944299 commit bb435bd
Show file tree
Hide file tree
Showing 30 changed files with 1,367 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<--
(feat): New feature
(impv): Improvement / Enhancement
(docs): Documentation
(bugs): Bug fixes
-->

# Changelog

## [Unreleased]
Expand All @@ -9,6 +16,7 @@
### Bridges

### Owasm
* (feat) [\#1858](https://github.com/bandprotocol/bandchain/pull/1858) Add go-owasm to BandChain monorepo

### Oracle Binary Encoding (OBI)

Expand Down
4 changes: 3 additions & 1 deletion chain/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/bandprotocol/bandchain/chain
go 1.13

require (
github.com/bandprotocol/go-owasm v0.0.0-20200602070506-19ab5ef7424a
github.com/bandprotocol/bandchain/go-owasm v0.0.0-00010101000000-000000000000
github.com/cosmos/cosmos-sdk v0.34.4-0.20200423152229-f1fdde5d1b18
github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d
github.com/ethereum/go-ethereum v1.9.14
Expand All @@ -28,3 +28,5 @@ require (
)

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.2-alpha.regen.1

replace github.com/bandprotocol/bandchain/go-owasm => ../go-owasm
2 changes: 0 additions & 2 deletions chain/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQ
github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo=
github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo=
github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g=
github.com/bandprotocol/go-owasm v0.0.0-20200602070506-19ab5ef7424a h1:rQxbXapog6ly6lO5RvNBI1/t4MFUqWWIB6XdPF/Iy8E=
github.com/bandprotocol/go-owasm v0.0.0-20200602070506-19ab5ef7424a/go.mod h1:siLhOtMZeIe6wAPZvwwNWf6GhE27MuIxv7w2jDlxh/M=
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
Expand Down
2 changes: 1 addition & 1 deletion chain/x/oracle/keeper/owasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/bandprotocol/bandchain/chain/x/oracle/types"
owasm "github.com/bandprotocol/go-owasm/api"
owasm "github.com/bandprotocol/bandchain/go-owasm/api"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
)
Expand Down
1 change: 1 addition & 0 deletions go-owasm/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target

0 comments on commit bb435bd

Please sign in to comment.