Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bnb-chain/greenfield-cosmos-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a06cf11bc54885743998ba3d8a75e855dcd43134
Choose a base ref
..
head repository: bnb-chain/greenfield-cosmos-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fc6bb842dc3eb349b332fc606e56159679025cc2
Choose a head ref
Showing with 12,794 additions and 1 deletion.
  1. +979 −0 bsc/rlp/decode.go
  2. +49 −0 bsc/rlp/decode_tail_test.go
  3. +927 −0 bsc/rlp/decode_test.go
  4. +612 −0 bsc/rlp/encode.go
  5. +402 −0 bsc/rlp/encode_test.go
  6. +46 −0 bsc/rlp/encoder_example_test.go
  7. +156 −0 bsc/rlp/raw.go
  8. +196 −0 bsc/rlp/raw_test.go
  9. +215 −0 bsc/rlp/typecache.go
  10. +1 −0 go.mod
  11. +1 −0 go.sum
  12. +9 −0 proto/cosmos/crosschain/v1/crosschain.proto
  13. +18 −0 proto/cosmos/crosschain/v1/event.proto
  14. +13 −0 proto/cosmos/crosschain/v1/genesis.proto
  15. +71 −0 proto/cosmos/crosschain/v1/query.proto
  16. +20 −0 proto/cosmos/oracle/v1/event.proto
  17. +13 −0 proto/cosmos/oracle/v1/genesis.proto
  18. +11 −0 proto/cosmos/oracle/v1/oracle.proto
  19. +25 −0 proto/cosmos/oracle/v1/query.proto
  20. +35 −0 proto/cosmos/oracle/v1/tx.proto
  21. +3 −0 server/util.go
  22. +15 −1 simapp/app.go
  23. +1 −0 simapp/test_helpers.go
  24. +140 −0 types/cross_chain.go
  25. +26 −0 types/keccak256.go
  26. +14 −0 types/keccak256_test.go
  27. +6 −0 x/crosschain/README.md
  28. +22 −0 x/crosschain/keeper/config.go
  29. +51 −0 x/crosschain/keeper/grpc_query.go
  30. +249 −0 x/crosschain/keeper/keeper.go
  31. +87 −0 x/crosschain/keeper/keeper_test.go
  32. +150 −0 x/crosschain/module.go
  33. +76 −0 x/crosschain/testutil/mockapp.go
  34. +318 −0 x/crosschain/types/crosschain.pb.go
  35. +638 −0 x/crosschain/types/event.pb.go
  36. +13 −0 x/crosschain/types/expected_keepers.go
  37. +36 −0 x/crosschain/types/genesis.go
  38. +324 −0 x/crosschain/types/genesis.pb.go
  39. +87 −0 x/crosschain/types/keys.go
  40. +47 −0 x/crosschain/types/params.go
  41. +1,647 −0 x/crosschain/types/query.pb.go
  42. +402 −0 x/crosschain/types/query.pb.gw.go
  43. +1 −0 x/gashub/keeper/grpc_query_test.go
  44. +6 −0 x/oracle/README.md
  45. +7 −0 x/oracle/keeper/grpc_query.go
  46. +20 −0 x/oracle/keeper/grpc_query_params.go
  47. +181 −0 x/oracle/keeper/keeper.go
  48. +299 −0 x/oracle/keeper/keeper_test.go
  49. +287 −0 x/oracle/keeper/msg_server.go
  50. +180 −0 x/oracle/keeper/msg_server_test.go
  51. +147 −0 x/oracle/module.go
  52. +108 −0 x/oracle/testutil/bls.go
  53. +42 −0 x/oracle/types/codec.go
  54. +21 −0 x/oracle/types/errors.go
  55. +681 −0 x/oracle/types/event.pb.go
  56. +29 −0 x/oracle/types/expected_keepers.go
  57. +41 −0 x/oracle/types/genesis.go
  58. +322 −0 x/oracle/types/genesis.pb.go
  59. +13 −0 x/oracle/types/keys.go
  60. +127 −0 x/oracle/types/msgs.go
  61. +159 −0 x/oracle/types/msgs_test.go
  62. +373 −0 x/oracle/types/oracle.pb.go
  63. +83 −0 x/oracle/types/params.go
  64. +535 −0 x/oracle/types/query.pb.go
  65. +153 −0 x/oracle/types/query.pb.gw.go
  66. +827 −0 x/oracle/types/tx.pb.go
  67. +1 −0 x/oracle/types/types.go
Loading