Skip to content

Commit

Permalink
Merge pull request #1 from rarimo/feature/withdraw-events
Browse files Browse the repository at this point in the history
update near-go dependency version with according fixes
  • Loading branch information
napalmpapalam authored Oct 16, 2023
2 parents d25896f + 576cfd2 commit 1427841
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/ethereum/go-ethereum v1.10.26
github.com/gogo/protobuf v1.3.3
github.com/rarimo/near-go v0.0.0-20231010092111-60a68fb20b8b
github.com/rarimo/near-go v0.0.0-20231016081124-c94dca3d7e22
github.com/rarimo/rarimo-core v0.0.0-20231004143803-6b209428ecbf
github.com/rarimo/saver-grpc-lib v1.0.0
github.com/tendermint/tendermint v0.34.27
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1202,8 +1202,8 @@ github.com/rarimo/broadcaster-svc v1.0.2 h1:ExQcjjWCRP5+POLDlZHrTD1ffUsBH+Dgv5FA
github.com/rarimo/broadcaster-svc v1.0.2/go.mod h1:lYIHy+X4IqQt4eBdtMN/V352H3EV0/gO8G+32SFwUWI=
github.com/rarimo/cosmos-sdk v0.46.7 h1:jU2PiWzc+19SF02cXM0O0puKPeH1C6Q6t2lzJ9s1ejc=
github.com/rarimo/cosmos-sdk v0.46.7/go.mod h1:fqKqz39U5IlEFb4nbQ72951myztsDzFKKDtffYJ63nk=
github.com/rarimo/near-go v0.0.0-20231010092111-60a68fb20b8b h1:ZfpygAfKKc94URBx/qpVsPCcmmSc9tLqTsWQLpAYqWI=
github.com/rarimo/near-go v0.0.0-20231010092111-60a68fb20b8b/go.mod h1:uu8kOPvUtELVCXIiobEyZO6684ZtHc7qewAsWViXRVA=
github.com/rarimo/near-go v0.0.0-20231016081124-c94dca3d7e22 h1:p/EnSlw1QFlVfdG1aveunOGx07tyN5rWWnVE2sFMsOY=
github.com/rarimo/near-go v0.0.0-20231016081124-c94dca3d7e22/go.mod h1:uu8kOPvUtELVCXIiobEyZO6684ZtHc7qewAsWViXRVA=
github.com/rarimo/rarimo-core v0.0.0-20231004143803-6b209428ecbf h1:NvYhOErW0d7ohn2YzGxQYKssrgVrKOvjrKL1OBQgCB4=
github.com/rarimo/rarimo-core v0.0.0-20231004143803-6b209428ecbf/go.mod h1:Onkd0EJP94hw4dT/2KH7QXRwDG4eIGeaMffSjA1i6/s=
github.com/rarimo/saver-grpc-lib v1.0.0 h1:MGUVjYg7unmodYczVsLqlqZNkT4CIgKqdo6aQtL1qdE=
Expand Down
4 changes: 2 additions & 2 deletions internal/services/voter/transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ func NewTransferOperator(cfg config.Config) *TransferOperator {
contract: cfg.ListenConf().Contract,
chain: cfg.ListenConf().Chain,
txParsers: map[common.BridgeEventType]txParser{
common.EventTypeNFTDeposited: NewNFTOperator(cfg.ListenConf().Chain, cfg.Cosmos(), cfg.Near(), cfg.Log()),
common.EventTypeFTDeposited: NewFTOperator(cfg.ListenConf().Chain, cfg.Cosmos(), cfg.Log()),
common.EventTypeNativeDeposited: NewNativeOperator(cfg.ListenConf().Chain, cfg.Cosmos(), cfg.Log()),
common.EventTypeFTDeposited: NewFTOperator(cfg.ListenConf().Chain, cfg.Cosmos(), cfg.Log()),
common.EventTypeNFTDeposited: NewNFTOperator(cfg.ListenConf().Chain, cfg.Cosmos(), cfg.Near(), cfg.Log()),
},
}
}
Expand Down

0 comments on commit 1427841

Please sign in to comment.