├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── bridge.yaml │ ├── chain.yaml │ ├── go-owasm.yaml │ ├── owasm.yaml │ ├── pyband.yaml │ └── scan.yaml ├── .gitignore ├── CHANGELOG.md ├── CHANGELOG_UNRELEASED.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets └── d3n_banner.png ├── bridges ├── evm │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── contracts │ │ ├── BandDataset.sol │ │ ├── BlockHeaderMerkleParts.sol │ │ ├── Bridge.sol │ │ ├── BridgeUtils.sol │ │ ├── CacheBridge.sol │ │ ├── IAVLMerklePath.sol │ │ ├── Migrations.sol │ │ ├── MultiStore.sol │ │ ├── Packets.sol │ │ ├── TMSignature.sol │ │ ├── Utils.sol │ │ ├── example │ │ │ └── DEX.sol │ │ ├── interfaces │ │ │ ├── IBandDataset.sol │ │ │ ├── IBridge.sol │ │ │ ├── IBridgeV2.sol │ │ │ └── ICacheBridge.sol │ │ ├── libraries │ │ │ ├── BandDatasetParamsDecoder.sol │ │ │ ├── BandDatasetResultDecoder.sol │ │ │ └── Strings.sol │ │ ├── mocks │ │ │ ├── BlockHeaderMerklePartsMock.sol │ │ │ ├── BridgeCacheConsumerMock.sol │ │ │ ├── BridgeMock.sol │ │ │ ├── IAVLMerklePathMock.sol │ │ │ ├── MultiStoreMerklePartsMock.sol │ │ │ ├── PacketsMock.sol │ │ │ ├── TMSignatureMock.sol │ │ │ └── UtilsMock.sol │ │ ├── obi │ │ │ ├── Obi.sol │ │ │ ├── Result.sol │ │ │ └── User.sol │ │ ├── reference │ │ │ ├── IPriceReference.sol │ │ │ ├── PriceReferenceProxy.sol │ │ │ └── SimplePriceReference.sol │ │ └── stdref │ │ │ ├── IStdReference.sol │ │ │ ├── OptimisticStdReference.sol │ │ │ ├── StdReference.sol │ │ │ ├── StdReferenceBasic.sol │ │ │ └── StdReferenceProxy.sol │ ├── integration_examples │ │ └── celo │ │ │ ├── README.md │ │ │ ├── celloInteraction.js │ │ │ └── package.json │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── package.json │ ├── test │ │ ├── BlockHeaderMerkleParts.test.js │ │ ├── Bridge.test.js │ │ ├── BridgeWithCache.test.js │ │ ├── IAVLMerklePath.test.js │ │ ├── MultiStore.test.js │ │ ├── Obi.test.js │ │ ├── Packet.test.js │ │ ├── TMSignature.test.js │ │ └── Utils.test.js │ ├── truffle-config.js │ └── yarn.lock └── icon │ ├── .gitignore │ ├── README.md │ ├── bridge │ ├── __init__.py │ ├── bridge.py │ ├── deploy_config.json │ ├── example_send_relay.json │ ├── example_send_relay_and_verify.json │ ├── package.json │ ├── pyobi │ │ ├── __init__.py │ │ └── pyobi.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_iavl_merkle_path.py │ │ ├── test_integrate_bridge.py │ │ ├── test_merkle_parts.py │ │ ├── test_pyobi.py │ │ ├── test_tm_signatures.py │ │ ├── test_unit_bridge.py │ │ ├── test_unit_ecrecover.py │ │ ├── test_unit_multi_store.py │ │ ├── test_unit_sha256.py │ │ └── test_unit_utils.py │ └── utils │ │ ├── __init__.py │ │ ├── iavl_merkle_path.py │ │ ├── merkle_part.py │ │ ├── multi_store.py │ │ ├── secp256k1.py │ │ ├── sha256.py │ │ ├── tm_signature.py │ │ └── utils.py │ ├── cache_consumer_mock │ ├── __init__.py │ ├── cache_consumer_mock.py │ ├── deploy_config_testnet.json │ ├── example_send_consume.json │ ├── package.json │ ├── pyobi │ │ ├── __init__.py │ │ └── pyobi.py │ └── tests │ │ ├── __init__.py │ │ ├── test_integrate_cache_consumer_mock.py │ │ └── test_unit_cache_consumer_mock.py │ ├── examples │ └── simple_price_db │ │ ├── README.md │ │ ├── __init__.py │ │ ├── deploy_testnet.json │ │ ├── example_send_set_multiple.json │ │ ├── example_send_set_proxy.json │ │ ├── example_send_set_single.json │ │ ├── package.json │ │ ├── simple_price_db.py │ │ └── tests │ │ ├── __init__.py │ │ ├── test_integrate_simple_price_db.py │ │ └── test_unit_simple_price_db.py │ ├── pyvenv.cfg │ ├── receiver_mock │ ├── __init__.py │ ├── deploy_config_testnet.json │ ├── example_send_relay_and_safe.json │ ├── package.json │ ├── pyobi │ │ ├── __init__.py │ │ └── pyobi.py │ ├── receiver_mock.py │ └── tests │ │ ├── __init__.py │ │ ├── test_integrate_receiver_mock.py │ │ └── test_unit_receiver_mock.py │ ├── std_reference_basic │ ├── __init__.py │ ├── deploy_testnet.json │ ├── example_send_relay.json │ ├── package.json │ ├── std_reference_basic.py │ └── tests │ │ ├── __init__.py │ │ ├── test_integrate_std_reference_basic.py │ │ └── test_unit_std_reference_basic.py │ └── std_reference_proxy │ ├── __init__.py │ ├── deploy_testnet.json │ ├── example_send_set_ref.json │ ├── package.json │ ├── std_reference_proxy.py │ └── tests │ ├── __init__.py │ ├── test_integrate_std_reference_proxy.py │ └── test_unit_std_reference_proxy.py ├── chain ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── app │ ├── app.go │ ├── export.go │ ├── genesis.go │ └── hook.go ├── build.md ├── client │ ├── chain.go │ ├── client.go │ └── validators.go ├── cmd │ ├── bandcli │ │ ├── main.go │ │ └── multi_send.go │ ├── bandd │ │ ├── genaccounts.go │ │ ├── gends.go │ │ ├── genos.go │ │ ├── init.go │ │ ├── main.go │ │ └── migrate.go │ ├── bandevmbot │ │ ├── abi.go │ │ └── main.go │ ├── faucet │ │ ├── config.go │ │ ├── context.go │ │ ├── handler.go │ │ ├── keys.go │ │ ├── main.go │ │ └── run.go │ └── yoda │ │ └── main.go ├── docker-config │ ├── add_os_ds.sh │ ├── query-node │ │ ├── node_key.json │ │ └── priv_validator_key.json │ ├── run.sh │ ├── single-validator │ │ ├── node_key.json │ │ └── priv_validator_key.json │ ├── start_docker.sh │ ├── validator1 │ │ ├── node_key.json │ │ └── priv_validator_key.json │ ├── validator2 │ │ ├── node_key.json │ │ └── priv_validator_key.json │ ├── validator3 │ │ ├── node_key.json │ │ └── priv_validator_key.json │ └── validator4 │ │ ├── node_key.json │ │ └── priv_validator_key.json ├── go.mod ├── go.sum ├── hooks │ ├── common │ │ ├── query.go │ │ └── utils.go │ ├── emitter │ │ ├── auth.go │ │ ├── bank.go │ │ ├── distribution.go │ │ ├── emitter.go │ │ ├── gov.go │ │ ├── handler.go │ │ ├── oracle.go │ │ ├── slashing.go │ │ └── staking.go │ ├── price │ │ ├── price.go │ │ └── types.go │ └── request │ │ ├── db.go │ │ └── request.go ├── pkg │ ├── bandrng │ │ ├── rng.go │ │ ├── rng_test.go │ │ ├── sampling.go │ │ └── sampling_test.go │ ├── filecache │ │ ├── filecache.go │ │ └── filecache_test.go │ ├── gzip │ │ ├── gzip.go │ │ └── gzip_test.go │ ├── obi │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── schema.go │ │ └── schema_test.go │ └── requestcache │ │ └── cache.go ├── scripts │ ├── generate_genesis.sh │ ├── protocgen.sh │ ├── protoconstructorgen.py │ ├── start_bandd.sh │ ├── start_bandd_with_emitter.sh │ └── start_yoda.sh ├── third_party │ └── proto │ │ ├── cosmos-proto │ │ ├── cosmos.proto │ │ └── sdk.proto │ │ └── gogoproto │ │ └── gogo.proto ├── x │ ├── oracle │ │ ├── abci.go │ │ ├── abci_test.go │ │ ├── alias.go │ │ ├── ante │ │ │ └── ante.go │ │ ├── app_test.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── query.go │ │ │ │ └── tx.go │ │ │ ├── common │ │ │ │ ├── helper.go │ │ │ │ ├── proof │ │ │ │ │ ├── abi.go │ │ │ │ │ ├── block_header_merkle_parts.go │ │ │ │ │ ├── block_header_merkle_parts_test.go │ │ │ │ │ ├── iavl_proof.go │ │ │ │ │ ├── iavl_proof_test.go │ │ │ │ │ ├── multi_store.go │ │ │ │ │ ├── multi_store_test.go │ │ │ │ │ ├── packets.go │ │ │ │ │ ├── proof.go │ │ │ │ │ ├── proof_test.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── signature_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── request_search.go │ │ │ │ └── verify_request.go │ │ │ └── rest │ │ │ │ ├── query.go │ │ │ │ └── rest.go │ │ ├── genesis.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── keeper │ │ │ ├── common_test.go │ │ │ ├── data_source.go │ │ │ ├── data_source_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── modify.go │ │ │ ├── oracle_script.go │ │ │ ├── oracle_script_test.go │ │ │ ├── owasm.go │ │ │ ├── owasm_test.go │ │ │ ├── querier.go │ │ │ ├── querier_test.go │ │ │ ├── report.go │ │ │ ├── report_test.go │ │ │ ├── reporter.go │ │ │ ├── reporter_test.go │ │ │ ├── request.go │ │ │ ├── request_test.go │ │ │ ├── result.go │ │ │ ├── result_test.go │ │ │ ├── validation.go │ │ │ ├── validator_status.go │ │ │ └── validator_status_test.go │ │ ├── module.go │ │ ├── testapp │ │ │ ├── setup.go │ │ │ ├── util.go │ │ │ ├── wasm_1_simple.go │ │ │ ├── wasm_2_return_in_prepare.go │ │ │ ├── wasm_3_do_nothing.go │ │ │ ├── wasm_4_complex.go │ │ │ ├── wasm_56_computation.go │ │ │ ├── wasm_78_large_calldata.go │ │ │ ├── wasm_9_set_data_several_times.go │ │ │ ├── wasm_extras.go │ │ │ └── wasm_util.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── constants.go │ │ │ ├── constructors.go │ │ │ ├── error.go │ │ │ ├── events.go │ │ │ ├── exec_env.go │ │ │ ├── exec_env_test.go │ │ │ ├── expected_keepers.go │ │ │ ├── id.go │ │ │ ├── key.go │ │ │ ├── key_test.go │ │ │ ├── msgs.go │ │ │ ├── msgs_test.go │ │ │ ├── packets.go │ │ │ ├── packets_test.go │ │ │ ├── params.go │ │ │ ├── querier.go │ │ │ ├── reporter.go │ │ │ ├── request.go │ │ │ ├── result.go │ │ │ ├── types.pb.go │ │ │ └── types.proto │ └── supply │ │ └── keeper.go └── yoda │ ├── README.md │ ├── config.go │ ├── context.go │ ├── event.go │ ├── execute.go │ ├── executor │ ├── docker.go │ ├── docker_test.go │ ├── executor.go │ ├── executor_test.go │ ├── multi.go │ ├── multi_test.go │ ├── rest.go │ └── rest_test.go │ ├── gas.go │ ├── handler.go │ ├── keys.go │ ├── logger.go │ ├── main.go │ ├── metrics.go │ ├── run.go │ ├── verify.go │ └── verify_test.go ├── docker-compose.yaml ├── flusher ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── flusher │ ├── __init__.py │ ├── cli.py │ ├── db.py │ ├── handler.py │ ├── init.py │ └── sync.py ├── main.py └── requirements.txt ├── go-owasm ├── .dockerignore ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile.linux ├── Dockerfile.linux.dockerignore ├── Dockerfile.osx ├── Dockerfile.osx.dockerignore ├── Makefile ├── README.md ├── api │ ├── bindings.h │ ├── cgo.go │ ├── common_test.go │ ├── env.go │ ├── error.go │ ├── lib.go │ ├── lib_test.go │ ├── libgo_owasm.dylib │ ├── libgo_owasm.so │ └── span.go ├── build │ ├── build_linux.sh │ ├── build_osx.sh │ └── cargo-config ├── cbindgen.toml ├── go.mod ├── go.sum ├── main.go ├── rust-toolchain ├── rustfmt.toml ├── src │ ├── env.rs │ ├── lib.rs │ ├── span.rs │ └── vm.rs └── wasm │ ├── test.wasm │ └── test.wat ├── helpers ├── README.md └── pyband │ ├── .coverage │ ├── .gitignore │ ├── README.md │ ├── main.py │ ├── publish.sh │ ├── pyband │ ├── __init__.py │ ├── auth.py │ ├── client.py │ ├── constant.py │ ├── data.py │ ├── exceptions.py │ ├── message.py │ ├── obi.py │ ├── transaction.py │ ├── utils.py │ └── wallet.py │ ├── requirements.txt │ ├── setup.py │ └── tests │ ├── __init__.py │ ├── auth_test.py │ ├── client │ ├── client_test.py │ └── send_tx_test.py │ ├── data_test.py │ ├── messages │ ├── message_delegate_test.py │ ├── message_request_test.py │ └── message_send_test.py │ ├── obi_test.py │ ├── transaction_test.py │ ├── utills_test.py │ └── wallet_test.py ├── obi ├── README.md ├── example.long.obi ├── example.short.obi ├── goobi ├── obi-rs │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── obi-derive-internal │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── helpers.rs │ │ │ ├── lib.rs │ │ │ ├── struct_dec.rs │ │ │ ├── struct_enc.rs │ │ │ └── struct_schema.rs │ ├── obi-derive │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── obi │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ ├── dec │ │ ├── hint.rs │ │ └── mod.rs │ │ ├── enc │ │ └── mod.rs │ │ ├── lib.rs │ │ └── schema.rs ├── obi.js │ ├── .gitignore │ ├── .npmignore │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ ├── test.js │ └── yarn.lock └── pyobi │ ├── .gitignore │ ├── README.md │ ├── main.py │ ├── pyobi │ ├── __init__.py │ └── pyobi.py │ ├── requirements.txt │ └── tests │ └── test_pyobi.py ├── owasm ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── rustfmt.toml └── src │ ├── core │ ├── error.rs │ ├── mod.rs │ └── vm.rs │ ├── ext │ ├── cmp.rs │ ├── mod.rs │ └── stats.rs │ ├── lib.rs │ ├── macros.rs │ └── oei │ ├── mod.rs │ └── raw.rs ├── research └── validator-sampling │ ├── data-point │ └── data-point.zip │ └── random │ ├── getcosmosvp.py │ ├── getkavavp.py │ ├── main.go │ └── validators.go ├── runtime ├── .gitignore ├── Makefile ├── docker │ └── Dockerfile ├── google-cloud-functions │ ├── extra_requirements.txt │ ├── google_cloud_function.py │ ├── main.py │ └── main_test.py ├── lambda │ ├── lambda_function.py │ └── pack.sh └── requirements.txt ├── scan ├── .gitignore ├── README.md ├── __tests__ │ ├── Address_test.re │ ├── Bech32_test.re │ ├── ExecutableParser_test.re │ ├── Hash_test.re │ ├── HexUtils_test.re │ ├── HistoryOracleParser_test.re │ ├── JsBuffer_test.re │ ├── Obi_test.re │ ├── PubKey_test.re │ ├── RIPEMD160_test.re │ ├── Route_test.re │ ├── Sha256_test.re │ └── TxCreator_test.re ├── bsconfig.json ├── cypress.json ├── cypress │ ├── integration │ │ ├── all_pages.spec.js │ │ └── send_action.spec.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── graphql_schema.json ├── index.html ├── netlify.toml ├── package.json ├── proxy │ ├── Dockerfile │ └── default.vcl ├── public │ ├── Thumbnail.jpg │ └── favicon.png ├── src │ ├── ApolloClient.re │ ├── App.re │ ├── AppStyle.re │ ├── Colors.re │ ├── Env.re │ ├── Index.re │ ├── Media.re │ ├── Spacing.re │ ├── bindings │ │ ├── AxiosHooks.re │ │ ├── BandChainJS.re │ │ ├── Bech32.re │ │ ├── ChangeCase.re │ │ ├── Copy.re │ │ ├── CosmosJS.re │ │ ├── Countup.re │ │ ├── Crypto.re │ │ ├── Document.re │ │ ├── JsBuffer.re │ │ ├── LedgerJS.re │ │ ├── MarkedJS.re │ │ ├── Obi.re │ │ ├── QRCode.re │ │ ├── RIPEMD160.re │ │ ├── ReactHighlight.re │ │ ├── ReactSelect.re │ │ ├── Secp256k1.re │ │ ├── Semver.re │ │ ├── Sha256.re │ │ └── Tooltip.re │ ├── components │ │ ├── AmountRender.re │ │ ├── Avatar.re │ │ ├── BlockIndexTxsTable.re │ │ ├── ChainIDBadge.re │ │ ├── ChainInfoHighlights.re │ │ ├── CopyRender.re │ │ ├── DataSourceRevisionTable.re │ │ ├── EnhanceTxInput.re │ │ ├── Header.re │ │ ├── HistoricalBondedGraph.re │ │ ├── KVTable.re │ │ ├── LatestBlocks.re │ │ ├── LatestRequests.re │ │ ├── LatestTxTable.re │ │ ├── Loading.re │ │ ├── LoadingCensorBar.re │ │ ├── Modal.re │ │ ├── NavBar.re │ │ ├── NumberCountup.re │ │ ├── OracleScriptRevisionTable.re │ │ ├── Packet.re │ │ ├── Pagination.re │ │ ├── ProgressBar.re │ │ ├── RequestProof.re │ │ ├── RequestStatus.re │ │ ├── SearchBar.re │ │ ├── TimeAgos.re │ │ ├── Timestamp.re │ │ ├── ToggleButton.re │ │ ├── TotalRequestsGraph.re │ │ ├── TxError.re │ │ ├── TxIndexPageTable.re │ │ ├── TxLink.re │ │ ├── TxMessages.re │ │ ├── TxsTable.re │ │ ├── TypeID.re │ │ ├── UserAccount.re │ │ ├── ValidatorMonikerLink.re │ │ ├── ValidatorsTable.re │ │ ├── account │ │ │ ├── AccountIndexDelegations.re │ │ │ ├── AccountIndexRedelegate.re │ │ │ ├── AccountIndexTransactions.re │ │ │ └── AccountIndexUnbonding.re │ │ ├── buttons │ │ │ ├── Button.re │ │ │ ├── CopyButton.re │ │ │ ├── ExtLinkButton.re │ │ │ ├── MaxButton.re │ │ │ └── ShowProofButton.re │ │ ├── charts │ │ │ ├── AccountBarChart.re │ │ │ ├── BlockUptimeChart.re │ │ │ └── OracleDataReportChart.re │ │ ├── data-source │ │ │ ├── DataSourceCode.re │ │ │ ├── DataSourceExecute.re │ │ │ └── DataSourceRequestTable.re │ │ ├── modal │ │ │ ├── QRCodeModal.re │ │ │ ├── SyncingModal.re │ │ │ ├── ValidatorStakingInfo.re │ │ │ ├── WaitingModal.re │ │ │ ├── connect │ │ │ │ ├── ConnectModal.re │ │ │ │ ├── ConnectWithLedger.re │ │ │ │ └── ConnectWithMnemonic.re │ │ │ └── submitTx │ │ │ │ ├── DelegateMsg.re │ │ │ │ ├── PreviewJsonStep.re │ │ │ │ ├── RedelegateMsg.re │ │ │ │ ├── ReinvestMsg.re │ │ │ │ ├── SendMsg.re │ │ │ │ ├── SubmitTxModal.re │ │ │ │ ├── TxResError.re │ │ │ │ ├── UndelegateMsg.re │ │ │ │ ├── VoteMsg.re │ │ │ │ └── WithdrawRewardMsg.re │ │ ├── msgs │ │ │ ├── DataMsg.re │ │ │ ├── Msg.re │ │ │ ├── MsgBadge.re │ │ │ ├── MsgFront.re │ │ │ ├── ProposalMsg.re │ │ │ ├── TokenMsg.re │ │ │ └── ValidatorMsg.re │ │ ├── oracle-script │ │ │ ├── OracleScriptBridgeCode.re │ │ │ ├── OracleScriptCode.re │ │ │ ├── OracleScriptExecute.re │ │ │ ├── OracleScriptExecuteProof.re │ │ │ ├── OracleScriptExecuteResponse.re │ │ │ └── OracleScriptRequestTable.re │ │ ├── proposal │ │ │ ├── DepositorTable.re │ │ │ ├── TurnoutChart.re │ │ │ └── VoteBreakdownTable.re │ │ ├── request │ │ │ └── DataReports.re │ │ ├── tx-index │ │ │ ├── IndexDataMsg.re │ │ │ ├── IndexMsgIcon.re │ │ │ ├── IndexProposalMsg.re │ │ │ ├── IndexTokenMsg.re │ │ │ └── IndexValidatorMsg.re │ │ └── validator │ │ │ ├── DelegatorsTable.re │ │ │ ├── ProposedBlocksTable.re │ │ │ ├── ProposedBlocksTableMobile.re │ │ │ ├── ReportersTable.re │ │ │ └── ReportsTable.re │ ├── contexts │ │ ├── AccountContext.re │ │ ├── ContextHelper.re │ │ ├── GlobalContext.re │ │ ├── ModalContext.re │ │ └── TimeContext.re │ ├── images │ │ ├── Images.re │ │ ├── activeValidatorLogo.svg │ │ ├── band-logo.png │ │ ├── bg.png │ │ ├── close.svg │ │ ├── closeButton.svg │ │ ├── coinmarketcap.svg │ │ ├── copy.svg │ │ ├── cosmosIBC-icon.png │ │ ├── cosmosibc.svg │ │ ├── down-arrow.svg │ │ ├── ethereum.svg │ │ ├── ethereumIcon.png │ │ ├── expired.svg │ │ ├── externalLink.svg │ │ ├── fail.svg │ │ ├── fail2.svg │ │ ├── golang.svg │ │ ├── graph-bg.svg │ │ ├── ibcDirArrow.svg │ │ ├── ibcLogo.svg │ │ ├── inactiveValidatorLogo.svg │ │ ├── kadena.svg │ │ ├── ledger-bandchain.svg │ │ ├── ledger-cosmos.svg │ │ ├── ledger-step1.svg │ │ ├── ledger-step2-bandchain.svg │ │ ├── ledger-step2-cosmos.svg │ │ ├── ledgerIconActive.svg │ │ ├── left-angle.svg │ │ ├── loading_circles.gif │ │ ├── menu.svg │ │ ├── modal-bg.svg │ │ ├── no-account.svg │ │ ├── no-block.svg │ │ ├── no-source.svg │ │ ├── noRevision.png │ │ ├── notFoundBg.svg │ │ ├── pact.svg │ │ ├── pending.svg │ │ ├── right-arrow.svg │ │ ├── search-gray.svg │ │ ├── search-icon.png │ │ ├── solidity.svg │ │ ├── solidityIcon.png │ │ ├── success.svg │ │ ├── success2.svg │ │ ├── thunder-icon.svg │ │ ├── tick.svg │ │ ├── triangle-down.svg │ │ ├── unknown.svg │ │ ├── vyper.svg │ │ └── waiting-modal-bg.svg │ ├── pages │ │ ├── AccountIndexPage.re │ │ ├── BlockHomePage.re │ │ ├── BlockIndexPage.re │ │ ├── DataSourceHomePage.re │ │ ├── DataSourceIndexPage.re │ │ ├── HomePage.re │ │ ├── IBCHomePage.re │ │ ├── NotFound.re │ │ ├── OracleScriptHomePage.re │ │ ├── OracleScriptIndexPage.re │ │ ├── ProposalHomePage.re │ │ ├── ProposalIndexPage.re │ │ ├── RequestHomePage.re │ │ ├── RequestIndexPage.re │ │ ├── TxHomePage.re │ │ ├── TxIndexPage.re │ │ ├── ValidatorHomePage.re │ │ └── ValidatorIndexPage.re │ ├── query │ │ ├── HistoricalBondedQuery.re │ │ ├── HistoricalTotalRequestQuery.re │ │ └── Query.re │ ├── reusable │ │ ├── AddressRender.re │ │ ├── AutoSpacing.re │ │ ├── CTooltip.re │ │ ├── Col.re │ │ ├── CssHelper.re │ │ ├── EmptyContainer.re │ │ ├── HSpacing.re │ │ ├── Heading.re │ │ ├── Icon.re │ │ ├── InfoHL.re │ │ ├── InfoMobileCard.re │ │ ├── Link.re │ │ ├── Markdown.re │ │ ├── MobileCard.re │ │ ├── ProposalBadge.re │ │ ├── PubKeyRender.re │ │ ├── Row.re │ │ ├── SearchInput.re │ │ ├── Section.re │ │ ├── SortableDropdown.re │ │ ├── TBody.re │ │ ├── TElement.re │ │ ├── THead.re │ │ ├── Tab.re │ │ ├── Text.re │ │ └── VSpacing.re │ ├── rpc │ │ ├── CodeHook.re │ │ ├── JsonUtils.re │ │ ├── PriceHook.re │ │ └── ProofHook.re │ ├── subscriptions │ │ ├── AccountSub.re │ │ ├── BlockSub.re │ │ ├── DataSourceRevisionSub.re │ │ ├── DataSourceSub.re │ │ ├── DelegationSub.re │ │ ├── DepositSub.re │ │ ├── GraphQLParser.re │ │ ├── IBCSub.re │ │ ├── OracleScriptRevisionSub.re │ │ ├── OracleScriptSub.re │ │ ├── PacketSub.re │ │ ├── ProposalSub.re │ │ ├── RedelegateSub.re │ │ ├── ReportSub.re │ │ ├── ReporterSub.re │ │ ├── RequestSub.re │ │ ├── Sub.re │ │ ├── TrackingSub.re │ │ ├── TxSub.re │ │ ├── UnbondingSub.re │ │ ├── ValidatorSub.re │ │ └── VoteSub.re │ ├── utils │ │ ├── Address.re │ │ ├── AxiosFaucet.re │ │ ├── AxiosRequest.re │ │ ├── ClickOutside.re │ │ ├── Coin.re │ │ ├── Config.re │ │ ├── Ellipsis.re │ │ ├── ExecutableParser.re │ │ ├── Format.re │ │ ├── Hash.re │ │ ├── HexUtils.re │ │ ├── HistoryOracleParser.re │ │ ├── ID.re │ │ ├── IterList.re │ │ ├── Mobile.re │ │ ├── Opt.re │ │ ├── Os.re │ │ ├── Page.re │ │ ├── Parse.re │ │ ├── Promise.re │ │ ├── PubKey.re │ │ ├── Result.re │ │ ├── Route.re │ │ ├── SubmitMsg.re │ │ └── proof │ │ │ └── NonEVMProof.re │ └── wallet │ │ ├── Ledger.re │ │ ├── Mnemonic.re │ │ ├── TxCreator.re │ │ └── Wallet.re └── yarn.lock ├── scripts └── install.sh └── spec └── README.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/bridge.yaml -------------------------------------------------------------------------------- /.github/workflows/chain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/chain.yaml -------------------------------------------------------------------------------- /.github/workflows/go-owasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/go-owasm.yaml -------------------------------------------------------------------------------- /.github/workflows/owasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/owasm.yaml -------------------------------------------------------------------------------- /.github/workflows/pyband.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/pyband.yaml -------------------------------------------------------------------------------- /.github/workflows/scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.github/workflows/scan.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_UNRELEASED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/CHANGELOG_UNRELEASED.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/README.md -------------------------------------------------------------------------------- /assets/d3n_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/assets/d3n_banner.png -------------------------------------------------------------------------------- /bridges/evm/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /build/ 3 | -------------------------------------------------------------------------------- /bridges/evm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/LICENSE -------------------------------------------------------------------------------- /bridges/evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/README.md -------------------------------------------------------------------------------- /bridges/evm/contracts/BandDataset.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/BandDataset.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/BlockHeaderMerkleParts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/BlockHeaderMerkleParts.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/Bridge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/Bridge.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/BridgeUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/BridgeUtils.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/CacheBridge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/CacheBridge.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/IAVLMerklePath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/IAVLMerklePath.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/Migrations.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/MultiStore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/MultiStore.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/Packets.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/Packets.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/TMSignature.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/TMSignature.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/Utils.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/example/DEX.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/example/DEX.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/interfaces/IBandDataset.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/interfaces/IBandDataset.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/interfaces/IBridge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/interfaces/IBridge.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/interfaces/IBridgeV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/interfaces/IBridgeV2.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/interfaces/ICacheBridge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/interfaces/ICacheBridge.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/libraries/BandDatasetParamsDecoder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/libraries/BandDatasetParamsDecoder.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/libraries/BandDatasetResultDecoder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/libraries/BandDatasetResultDecoder.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/libraries/Strings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/libraries/Strings.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/BlockHeaderMerklePartsMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/BlockHeaderMerklePartsMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/BridgeCacheConsumerMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/BridgeCacheConsumerMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/BridgeMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/BridgeMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/IAVLMerklePathMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/IAVLMerklePathMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/MultiStoreMerklePartsMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/MultiStoreMerklePartsMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/PacketsMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/PacketsMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/TMSignatureMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/TMSignatureMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/mocks/UtilsMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/mocks/UtilsMock.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/obi/Obi.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/obi/Obi.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/obi/Result.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/obi/Result.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/obi/User.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/obi/User.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/reference/IPriceReference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/reference/IPriceReference.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/reference/PriceReferenceProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/reference/PriceReferenceProxy.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/reference/SimplePriceReference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/reference/SimplePriceReference.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/stdref/IStdReference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/stdref/IStdReference.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/stdref/OptimisticStdReference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/stdref/OptimisticStdReference.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/stdref/StdReference.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/stdref/StdReference.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/stdref/StdReferenceBasic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/stdref/StdReferenceBasic.sol -------------------------------------------------------------------------------- /bridges/evm/contracts/stdref/StdReferenceProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/contracts/stdref/StdReferenceProxy.sol -------------------------------------------------------------------------------- /bridges/evm/integration_examples/celo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/integration_examples/celo/README.md -------------------------------------------------------------------------------- /bridges/evm/integration_examples/celo/celloInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/integration_examples/celo/celloInteraction.js -------------------------------------------------------------------------------- /bridges/evm/integration_examples/celo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/integration_examples/celo/package.json -------------------------------------------------------------------------------- /bridges/evm/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /bridges/evm/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /bridges/evm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/package.json -------------------------------------------------------------------------------- /bridges/evm/test/BlockHeaderMerkleParts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/BlockHeaderMerkleParts.test.js -------------------------------------------------------------------------------- /bridges/evm/test/Bridge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/Bridge.test.js -------------------------------------------------------------------------------- /bridges/evm/test/BridgeWithCache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/BridgeWithCache.test.js -------------------------------------------------------------------------------- /bridges/evm/test/IAVLMerklePath.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/IAVLMerklePath.test.js -------------------------------------------------------------------------------- /bridges/evm/test/MultiStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/MultiStore.test.js -------------------------------------------------------------------------------- /bridges/evm/test/Obi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/Obi.test.js -------------------------------------------------------------------------------- /bridges/evm/test/Packet.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/Packet.test.js -------------------------------------------------------------------------------- /bridges/evm/test/TMSignature.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/TMSignature.test.js -------------------------------------------------------------------------------- /bridges/evm/test/Utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/test/Utils.test.js -------------------------------------------------------------------------------- /bridges/evm/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/truffle-config.js -------------------------------------------------------------------------------- /bridges/evm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/evm/yarn.lock -------------------------------------------------------------------------------- /bridges/icon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/.gitignore -------------------------------------------------------------------------------- /bridges/icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/README.md -------------------------------------------------------------------------------- /bridges/icon/bridge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/bridge/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/bridge.py -------------------------------------------------------------------------------- /bridges/icon/bridge/deploy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/deploy_config.json -------------------------------------------------------------------------------- /bridges/icon/bridge/example_send_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/example_send_relay.json -------------------------------------------------------------------------------- /bridges/icon/bridge/example_send_relay_and_verify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/example_send_relay_and_verify.json -------------------------------------------------------------------------------- /bridges/icon/bridge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/package.json -------------------------------------------------------------------------------- /bridges/icon/bridge/pyobi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/pyobi/__init__.py -------------------------------------------------------------------------------- /bridges/icon/bridge/pyobi/pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/pyobi/pyobi.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_iavl_merkle_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_iavl_merkle_path.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_integrate_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_integrate_bridge.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_merkle_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_merkle_parts.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_pyobi.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_tm_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_tm_signatures.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_unit_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_unit_bridge.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_unit_ecrecover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_unit_ecrecover.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_unit_multi_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_unit_multi_store.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_unit_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_unit_sha256.py -------------------------------------------------------------------------------- /bridges/icon/bridge/tests/test_unit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/tests/test_unit_utils.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/__init__.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/iavl_merkle_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/iavl_merkle_path.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/merkle_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/merkle_part.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/multi_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/multi_store.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/secp256k1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/secp256k1.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/sha256.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/tm_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/tm_signature.py -------------------------------------------------------------------------------- /bridges/icon/bridge/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/bridge/utils/utils.py -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/cache_consumer_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/cache_consumer_mock.py -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/deploy_config_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/deploy_config_testnet.json -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/example_send_consume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/example_send_consume.json -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/package.json -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/pyobi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/pyobi/__init__.py -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/pyobi/pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/pyobi/pyobi.py -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/tests/test_integrate_cache_consumer_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/tests/test_integrate_cache_consumer_mock.py -------------------------------------------------------------------------------- /bridges/icon/cache_consumer_mock/tests/test_unit_cache_consumer_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/cache_consumer_mock/tests/test_unit_cache_consumer_mock.py -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/README.md -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/deploy_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/deploy_testnet.json -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/example_send_set_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/example_send_set_multiple.json -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/example_send_set_proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/example_send_set_proxy.json -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/example_send_set_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/example_send_set_single.json -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/package.json -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/simple_price_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/simple_price_db.py -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/tests/test_integrate_simple_price_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/tests/test_integrate_simple_price_db.py -------------------------------------------------------------------------------- /bridges/icon/examples/simple_price_db/tests/test_unit_simple_price_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/examples/simple_price_db/tests/test_unit_simple_price_db.py -------------------------------------------------------------------------------- /bridges/icon/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/pyvenv.cfg -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/deploy_config_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/deploy_config_testnet.json -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/example_send_relay_and_safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/example_send_relay_and_safe.json -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/package.json -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/pyobi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/pyobi/__init__.py -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/pyobi/pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/pyobi/pyobi.py -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/receiver_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/receiver_mock.py -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/tests/test_integrate_receiver_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/tests/test_integrate_receiver_mock.py -------------------------------------------------------------------------------- /bridges/icon/receiver_mock/tests/test_unit_receiver_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/receiver_mock/tests/test_unit_receiver_mock.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/deploy_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/deploy_testnet.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/example_send_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/example_send_relay.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/package.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/std_reference_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/std_reference_basic.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/tests/test_integrate_std_reference_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/tests/test_integrate_std_reference_basic.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_basic/tests/test_unit_std_reference_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_basic/tests/test_unit_std_reference_basic.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/deploy_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/deploy_testnet.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/example_send_set_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/example_send_set_ref.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/package.json -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/std_reference_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/std_reference_proxy.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/tests/test_integrate_std_reference_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/tests/test_integrate_std_reference_proxy.py -------------------------------------------------------------------------------- /bridges/icon/std_reference_proxy/tests/test_unit_std_reference_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/bridges/icon/std_reference_proxy/tests/test_unit_std_reference_proxy.py -------------------------------------------------------------------------------- /chain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/.gitignore -------------------------------------------------------------------------------- /chain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/Dockerfile -------------------------------------------------------------------------------- /chain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/LICENSE -------------------------------------------------------------------------------- /chain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/Makefile -------------------------------------------------------------------------------- /chain/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/app/app.go -------------------------------------------------------------------------------- /chain/app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/app/export.go -------------------------------------------------------------------------------- /chain/app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/app/genesis.go -------------------------------------------------------------------------------- /chain/app/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/app/hook.go -------------------------------------------------------------------------------- /chain/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/build.md -------------------------------------------------------------------------------- /chain/client/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/client/chain.go -------------------------------------------------------------------------------- /chain/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/client/client.go -------------------------------------------------------------------------------- /chain/client/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/client/validators.go -------------------------------------------------------------------------------- /chain/cmd/bandcli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandcli/main.go -------------------------------------------------------------------------------- /chain/cmd/bandcli/multi_send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandcli/multi_send.go -------------------------------------------------------------------------------- /chain/cmd/bandd/genaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/genaccounts.go -------------------------------------------------------------------------------- /chain/cmd/bandd/gends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/gends.go -------------------------------------------------------------------------------- /chain/cmd/bandd/genos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/genos.go -------------------------------------------------------------------------------- /chain/cmd/bandd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/init.go -------------------------------------------------------------------------------- /chain/cmd/bandd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/main.go -------------------------------------------------------------------------------- /chain/cmd/bandd/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandd/migrate.go -------------------------------------------------------------------------------- /chain/cmd/bandevmbot/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandevmbot/abi.go -------------------------------------------------------------------------------- /chain/cmd/bandevmbot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/bandevmbot/main.go -------------------------------------------------------------------------------- /chain/cmd/faucet/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/config.go -------------------------------------------------------------------------------- /chain/cmd/faucet/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/context.go -------------------------------------------------------------------------------- /chain/cmd/faucet/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/handler.go -------------------------------------------------------------------------------- /chain/cmd/faucet/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/keys.go -------------------------------------------------------------------------------- /chain/cmd/faucet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/main.go -------------------------------------------------------------------------------- /chain/cmd/faucet/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/faucet/run.go -------------------------------------------------------------------------------- /chain/cmd/yoda/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/cmd/yoda/main.go -------------------------------------------------------------------------------- /chain/docker-config/add_os_ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/add_os_ds.sh -------------------------------------------------------------------------------- /chain/docker-config/query-node/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/query-node/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/query-node/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/query-node/priv_validator_key.json -------------------------------------------------------------------------------- /chain/docker-config/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/run.sh -------------------------------------------------------------------------------- /chain/docker-config/single-validator/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/single-validator/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/single-validator/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/single-validator/priv_validator_key.json -------------------------------------------------------------------------------- /chain/docker-config/start_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/start_docker.sh -------------------------------------------------------------------------------- /chain/docker-config/validator1/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator1/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator1/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator1/priv_validator_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator2/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator2/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator2/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator2/priv_validator_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator3/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator3/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator3/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator3/priv_validator_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator4/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator4/node_key.json -------------------------------------------------------------------------------- /chain/docker-config/validator4/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/docker-config/validator4/priv_validator_key.json -------------------------------------------------------------------------------- /chain/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/go.mod -------------------------------------------------------------------------------- /chain/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/go.sum -------------------------------------------------------------------------------- /chain/hooks/common/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/common/query.go -------------------------------------------------------------------------------- /chain/hooks/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/common/utils.go -------------------------------------------------------------------------------- /chain/hooks/emitter/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/auth.go -------------------------------------------------------------------------------- /chain/hooks/emitter/bank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/bank.go -------------------------------------------------------------------------------- /chain/hooks/emitter/distribution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/distribution.go -------------------------------------------------------------------------------- /chain/hooks/emitter/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/emitter.go -------------------------------------------------------------------------------- /chain/hooks/emitter/gov.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/gov.go -------------------------------------------------------------------------------- /chain/hooks/emitter/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/handler.go -------------------------------------------------------------------------------- /chain/hooks/emitter/oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/oracle.go -------------------------------------------------------------------------------- /chain/hooks/emitter/slashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/slashing.go -------------------------------------------------------------------------------- /chain/hooks/emitter/staking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/emitter/staking.go -------------------------------------------------------------------------------- /chain/hooks/price/price.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/price/price.go -------------------------------------------------------------------------------- /chain/hooks/price/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/price/types.go -------------------------------------------------------------------------------- /chain/hooks/request/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/request/db.go -------------------------------------------------------------------------------- /chain/hooks/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/hooks/request/request.go -------------------------------------------------------------------------------- /chain/pkg/bandrng/rng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/bandrng/rng.go -------------------------------------------------------------------------------- /chain/pkg/bandrng/rng_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/bandrng/rng_test.go -------------------------------------------------------------------------------- /chain/pkg/bandrng/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/bandrng/sampling.go -------------------------------------------------------------------------------- /chain/pkg/bandrng/sampling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/bandrng/sampling_test.go -------------------------------------------------------------------------------- /chain/pkg/filecache/filecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/filecache/filecache.go -------------------------------------------------------------------------------- /chain/pkg/filecache/filecache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/filecache/filecache_test.go -------------------------------------------------------------------------------- /chain/pkg/gzip/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/gzip/gzip.go -------------------------------------------------------------------------------- /chain/pkg/gzip/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/gzip/gzip_test.go -------------------------------------------------------------------------------- /chain/pkg/obi/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/decode.go -------------------------------------------------------------------------------- /chain/pkg/obi/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/decode_test.go -------------------------------------------------------------------------------- /chain/pkg/obi/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/encode.go -------------------------------------------------------------------------------- /chain/pkg/obi/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/encode_test.go -------------------------------------------------------------------------------- /chain/pkg/obi/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/schema.go -------------------------------------------------------------------------------- /chain/pkg/obi/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/obi/schema_test.go -------------------------------------------------------------------------------- /chain/pkg/requestcache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/pkg/requestcache/cache.go -------------------------------------------------------------------------------- /chain/scripts/generate_genesis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/generate_genesis.sh -------------------------------------------------------------------------------- /chain/scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/protocgen.sh -------------------------------------------------------------------------------- /chain/scripts/protoconstructorgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/protoconstructorgen.py -------------------------------------------------------------------------------- /chain/scripts/start_bandd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/start_bandd.sh -------------------------------------------------------------------------------- /chain/scripts/start_bandd_with_emitter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/start_bandd_with_emitter.sh -------------------------------------------------------------------------------- /chain/scripts/start_yoda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/scripts/start_yoda.sh -------------------------------------------------------------------------------- /chain/third_party/proto/cosmos-proto/cosmos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/third_party/proto/cosmos-proto/cosmos.proto -------------------------------------------------------------------------------- /chain/third_party/proto/cosmos-proto/sdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/third_party/proto/cosmos-proto/sdk.proto -------------------------------------------------------------------------------- /chain/third_party/proto/gogoproto/gogo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/third_party/proto/gogoproto/gogo.proto -------------------------------------------------------------------------------- /chain/x/oracle/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/abci.go -------------------------------------------------------------------------------- /chain/x/oracle/abci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/abci_test.go -------------------------------------------------------------------------------- /chain/x/oracle/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/alias.go -------------------------------------------------------------------------------- /chain/x/oracle/ante/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/ante/ante.go -------------------------------------------------------------------------------- /chain/x/oracle/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/app_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/cli/query.go -------------------------------------------------------------------------------- /chain/x/oracle/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/cli/tx.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/helper.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/abi.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/block_header_merkle_parts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/block_header_merkle_parts.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/block_header_merkle_parts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/block_header_merkle_parts_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/iavl_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/iavl_proof.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/iavl_proof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/iavl_proof_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/multi_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/multi_store.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/multi_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/multi_store_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/packets.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/proof.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/proof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/proof_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/signature.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/signature_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/util.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/proof/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/proof/util_test.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/request_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/request_search.go -------------------------------------------------------------------------------- /chain/x/oracle/client/common/verify_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/common/verify_request.go -------------------------------------------------------------------------------- /chain/x/oracle/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/rest/query.go -------------------------------------------------------------------------------- /chain/x/oracle/client/rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/client/rest/rest.go -------------------------------------------------------------------------------- /chain/x/oracle/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/genesis.go -------------------------------------------------------------------------------- /chain/x/oracle/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/handler.go -------------------------------------------------------------------------------- /chain/x/oracle/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/handler_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/common_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/data_source.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/data_source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/data_source_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/keeper.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/keeper_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/modify.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/oracle_script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/oracle_script.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/oracle_script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/oracle_script_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/owasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/owasm.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/owasm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/owasm_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/querier.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/querier_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/report.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/report_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/reporter.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/reporter_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/request.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/request_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/result.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/result_test.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/validation.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/validator_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/validator_status.go -------------------------------------------------------------------------------- /chain/x/oracle/keeper/validator_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/keeper/validator_status_test.go -------------------------------------------------------------------------------- /chain/x/oracle/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/module.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/setup.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/util.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_1_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_1_simple.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_2_return_in_prepare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_2_return_in_prepare.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_3_do_nothing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_3_do_nothing.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_4_complex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_4_complex.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_56_computation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_56_computation.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_78_large_calldata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_78_large_calldata.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_9_set_data_several_times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_9_set_data_several_times.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_extras.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_extras.go -------------------------------------------------------------------------------- /chain/x/oracle/testapp/wasm_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/testapp/wasm_util.go -------------------------------------------------------------------------------- /chain/x/oracle/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/codec.go -------------------------------------------------------------------------------- /chain/x/oracle/types/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/constants.go -------------------------------------------------------------------------------- /chain/x/oracle/types/constructors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/constructors.go -------------------------------------------------------------------------------- /chain/x/oracle/types/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/error.go -------------------------------------------------------------------------------- /chain/x/oracle/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/events.go -------------------------------------------------------------------------------- /chain/x/oracle/types/exec_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/exec_env.go -------------------------------------------------------------------------------- /chain/x/oracle/types/exec_env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/exec_env_test.go -------------------------------------------------------------------------------- /chain/x/oracle/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/expected_keepers.go -------------------------------------------------------------------------------- /chain/x/oracle/types/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/id.go -------------------------------------------------------------------------------- /chain/x/oracle/types/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/key.go -------------------------------------------------------------------------------- /chain/x/oracle/types/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/key_test.go -------------------------------------------------------------------------------- /chain/x/oracle/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/msgs.go -------------------------------------------------------------------------------- /chain/x/oracle/types/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/msgs_test.go -------------------------------------------------------------------------------- /chain/x/oracle/types/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/packets.go -------------------------------------------------------------------------------- /chain/x/oracle/types/packets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/packets_test.go -------------------------------------------------------------------------------- /chain/x/oracle/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/params.go -------------------------------------------------------------------------------- /chain/x/oracle/types/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/querier.go -------------------------------------------------------------------------------- /chain/x/oracle/types/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/reporter.go -------------------------------------------------------------------------------- /chain/x/oracle/types/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/request.go -------------------------------------------------------------------------------- /chain/x/oracle/types/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/result.go -------------------------------------------------------------------------------- /chain/x/oracle/types/types.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/types.pb.go -------------------------------------------------------------------------------- /chain/x/oracle/types/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/oracle/types/types.proto -------------------------------------------------------------------------------- /chain/x/supply/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/x/supply/keeper.go -------------------------------------------------------------------------------- /chain/yoda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/README.md -------------------------------------------------------------------------------- /chain/yoda/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/config.go -------------------------------------------------------------------------------- /chain/yoda/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/context.go -------------------------------------------------------------------------------- /chain/yoda/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/event.go -------------------------------------------------------------------------------- /chain/yoda/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/execute.go -------------------------------------------------------------------------------- /chain/yoda/executor/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/docker.go -------------------------------------------------------------------------------- /chain/yoda/executor/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/docker_test.go -------------------------------------------------------------------------------- /chain/yoda/executor/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/executor.go -------------------------------------------------------------------------------- /chain/yoda/executor/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/executor_test.go -------------------------------------------------------------------------------- /chain/yoda/executor/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/multi.go -------------------------------------------------------------------------------- /chain/yoda/executor/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/multi_test.go -------------------------------------------------------------------------------- /chain/yoda/executor/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/rest.go -------------------------------------------------------------------------------- /chain/yoda/executor/rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/executor/rest_test.go -------------------------------------------------------------------------------- /chain/yoda/gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/gas.go -------------------------------------------------------------------------------- /chain/yoda/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/handler.go -------------------------------------------------------------------------------- /chain/yoda/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/keys.go -------------------------------------------------------------------------------- /chain/yoda/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/logger.go -------------------------------------------------------------------------------- /chain/yoda/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/main.go -------------------------------------------------------------------------------- /chain/yoda/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/metrics.go -------------------------------------------------------------------------------- /chain/yoda/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/run.go -------------------------------------------------------------------------------- /chain/yoda/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/verify.go -------------------------------------------------------------------------------- /chain/yoda/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/chain/yoda/verify_test.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /flusher/.dockerignore: -------------------------------------------------------------------------------- 1 | /venv 2 | -------------------------------------------------------------------------------- /flusher/.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | -------------------------------------------------------------------------------- /flusher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/Dockerfile -------------------------------------------------------------------------------- /flusher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/README.md -------------------------------------------------------------------------------- /flusher/flusher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/__init__.py -------------------------------------------------------------------------------- /flusher/flusher/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/cli.py -------------------------------------------------------------------------------- /flusher/flusher/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/db.py -------------------------------------------------------------------------------- /flusher/flusher/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/handler.py -------------------------------------------------------------------------------- /flusher/flusher/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/init.py -------------------------------------------------------------------------------- /flusher/flusher/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/flusher/sync.py -------------------------------------------------------------------------------- /flusher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/main.py -------------------------------------------------------------------------------- /flusher/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/flusher/requirements.txt -------------------------------------------------------------------------------- /go-owasm/.dockerignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /go-owasm/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /go-owasm/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Cargo.lock -------------------------------------------------------------------------------- /go-owasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Cargo.toml -------------------------------------------------------------------------------- /go-owasm/Dockerfile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Dockerfile.linux -------------------------------------------------------------------------------- /go-owasm/Dockerfile.linux.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Dockerfile.linux.dockerignore -------------------------------------------------------------------------------- /go-owasm/Dockerfile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Dockerfile.osx -------------------------------------------------------------------------------- /go-owasm/Dockerfile.osx.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Dockerfile.osx.dockerignore -------------------------------------------------------------------------------- /go-owasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/Makefile -------------------------------------------------------------------------------- /go-owasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/README.md -------------------------------------------------------------------------------- /go-owasm/api/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/bindings.h -------------------------------------------------------------------------------- /go-owasm/api/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/cgo.go -------------------------------------------------------------------------------- /go-owasm/api/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/common_test.go -------------------------------------------------------------------------------- /go-owasm/api/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/env.go -------------------------------------------------------------------------------- /go-owasm/api/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/error.go -------------------------------------------------------------------------------- /go-owasm/api/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/lib.go -------------------------------------------------------------------------------- /go-owasm/api/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/lib_test.go -------------------------------------------------------------------------------- /go-owasm/api/libgo_owasm.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/libgo_owasm.dylib -------------------------------------------------------------------------------- /go-owasm/api/libgo_owasm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/libgo_owasm.so -------------------------------------------------------------------------------- /go-owasm/api/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/api/span.go -------------------------------------------------------------------------------- /go-owasm/build/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/build/build_linux.sh -------------------------------------------------------------------------------- /go-owasm/build/build_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/build/build_osx.sh -------------------------------------------------------------------------------- /go-owasm/build/cargo-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/build/cargo-config -------------------------------------------------------------------------------- /go-owasm/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/cbindgen.toml -------------------------------------------------------------------------------- /go-owasm/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/go.mod -------------------------------------------------------------------------------- /go-owasm/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/go.sum -------------------------------------------------------------------------------- /go-owasm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/main.go -------------------------------------------------------------------------------- /go-owasm/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2020-05-30 2 | -------------------------------------------------------------------------------- /go-owasm/rustfmt.toml: -------------------------------------------------------------------------------- 1 | fn_single_line = true 2 | max_width = 120 3 | -------------------------------------------------------------------------------- /go-owasm/src/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/src/env.rs -------------------------------------------------------------------------------- /go-owasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/src/lib.rs -------------------------------------------------------------------------------- /go-owasm/src/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/src/span.rs -------------------------------------------------------------------------------- /go-owasm/src/vm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/src/vm.rs -------------------------------------------------------------------------------- /go-owasm/wasm/test.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/wasm/test.wasm -------------------------------------------------------------------------------- /go-owasm/wasm/test.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/go-owasm/wasm/test.wat -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/pyband/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/.coverage -------------------------------------------------------------------------------- /helpers/pyband/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/.gitignore -------------------------------------------------------------------------------- /helpers/pyband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/README.md -------------------------------------------------------------------------------- /helpers/pyband/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/main.py -------------------------------------------------------------------------------- /helpers/pyband/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/publish.sh -------------------------------------------------------------------------------- /helpers/pyband/pyband/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/__init__.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/auth.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/client.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/constant.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/data.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/exceptions.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/message.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/obi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/obi.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/transaction.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/utils.py -------------------------------------------------------------------------------- /helpers/pyband/pyband/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/pyband/wallet.py -------------------------------------------------------------------------------- /helpers/pyband/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/requirements.txt -------------------------------------------------------------------------------- /helpers/pyband/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/setup.py -------------------------------------------------------------------------------- /helpers/pyband/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/pyband/tests/auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/auth_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/client/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/client/client_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/client/send_tx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/client/send_tx_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/data_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/messages/message_delegate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/messages/message_delegate_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/messages/message_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/messages/message_request_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/messages/message_send_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/messages/message_send_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/obi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/obi_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/transaction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/transaction_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/utills_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/utills_test.py -------------------------------------------------------------------------------- /helpers/pyband/tests/wallet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/helpers/pyband/tests/wallet_test.py -------------------------------------------------------------------------------- /obi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/README.md -------------------------------------------------------------------------------- /obi/example.long.obi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/example.long.obi -------------------------------------------------------------------------------- /obi/example.short.obi: -------------------------------------------------------------------------------- 1 | {symbol:string,multiplier:u8}/{px:u64} 2 | -------------------------------------------------------------------------------- /obi/goobi: -------------------------------------------------------------------------------- 1 | ../chain/pkg/obi -------------------------------------------------------------------------------- /obi/obi-rs/.gitignore: -------------------------------------------------------------------------------- 1 | # Compilation files by Rust. 2 | **/target/ 3 | -------------------------------------------------------------------------------- /obi/obi-rs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/Cargo.lock -------------------------------------------------------------------------------- /obi/obi-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/Cargo.toml -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/Cargo.lock -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/Cargo.toml -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/src/helpers.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/src/lib.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/src/struct_dec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/src/struct_dec.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/src/struct_enc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/src/struct_enc.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive-internal/src/struct_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive-internal/src/struct_schema.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive/Cargo.lock -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive/Cargo.toml -------------------------------------------------------------------------------- /obi/obi-rs/obi-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi-derive/src/lib.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/Cargo.lock -------------------------------------------------------------------------------- /obi/obi-rs/obi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/Cargo.toml -------------------------------------------------------------------------------- /obi/obi-rs/obi/src/dec/hint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/src/dec/hint.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi/src/dec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/src/dec/mod.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi/src/enc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/src/enc/mod.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/src/lib.rs -------------------------------------------------------------------------------- /obi/obi-rs/obi/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi-rs/obi/src/schema.rs -------------------------------------------------------------------------------- /obi/obi.js/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /obi/obi.js/.npmignore: -------------------------------------------------------------------------------- 1 | /src/ 2 | -------------------------------------------------------------------------------- /obi/obi.js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi.js/package-lock.json -------------------------------------------------------------------------------- /obi/obi.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi.js/package.json -------------------------------------------------------------------------------- /obi/obi.js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi.js/src/index.js -------------------------------------------------------------------------------- /obi/obi.js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi.js/test.js -------------------------------------------------------------------------------- /obi/obi.js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/obi.js/yarn.lock -------------------------------------------------------------------------------- /obi/pyobi/.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | /.pytest_cache/ 3 | -------------------------------------------------------------------------------- /obi/pyobi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/pyobi/README.md -------------------------------------------------------------------------------- /obi/pyobi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/pyobi/main.py -------------------------------------------------------------------------------- /obi/pyobi/pyobi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/pyobi/pyobi/__init__.py -------------------------------------------------------------------------------- /obi/pyobi/pyobi/pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/pyobi/pyobi/pyobi.py -------------------------------------------------------------------------------- /obi/pyobi/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==6.0.1 2 | -------------------------------------------------------------------------------- /obi/pyobi/tests/test_pyobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/obi/pyobi/tests/test_pyobi.py -------------------------------------------------------------------------------- /owasm/.gitignore: -------------------------------------------------------------------------------- 1 | **/target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /owasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/Cargo.toml -------------------------------------------------------------------------------- /owasm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/LICENSE -------------------------------------------------------------------------------- /owasm/README.md: -------------------------------------------------------------------------------- 1 | # Owasm 2 | -------------------------------------------------------------------------------- /owasm/rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_small_heuristics = "Max" 2 | tab_spaces = 4 3 | -------------------------------------------------------------------------------- /owasm/src/core/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/core/error.rs -------------------------------------------------------------------------------- /owasm/src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/core/mod.rs -------------------------------------------------------------------------------- /owasm/src/core/vm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/core/vm.rs -------------------------------------------------------------------------------- /owasm/src/ext/cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/ext/cmp.rs -------------------------------------------------------------------------------- /owasm/src/ext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/ext/mod.rs -------------------------------------------------------------------------------- /owasm/src/ext/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/ext/stats.rs -------------------------------------------------------------------------------- /owasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/lib.rs -------------------------------------------------------------------------------- /owasm/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/macros.rs -------------------------------------------------------------------------------- /owasm/src/oei/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/oei/mod.rs -------------------------------------------------------------------------------- /owasm/src/oei/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/owasm/src/oei/raw.rs -------------------------------------------------------------------------------- /research/validator-sampling/data-point/data-point.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/research/validator-sampling/data-point/data-point.zip -------------------------------------------------------------------------------- /research/validator-sampling/random/getcosmosvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/research/validator-sampling/random/getcosmosvp.py -------------------------------------------------------------------------------- /research/validator-sampling/random/getkavavp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/research/validator-sampling/random/getkavavp.py -------------------------------------------------------------------------------- /research/validator-sampling/random/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/research/validator-sampling/random/main.go -------------------------------------------------------------------------------- /research/validator-sampling/random/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/research/validator-sampling/random/validators.go -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/.gitignore -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/docker/Dockerfile -------------------------------------------------------------------------------- /runtime/google-cloud-functions/extra_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/google-cloud-functions/extra_requirements.txt -------------------------------------------------------------------------------- /runtime/google-cloud-functions/google_cloud_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/google-cloud-functions/google_cloud_function.py -------------------------------------------------------------------------------- /runtime/google-cloud-functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/google-cloud-functions/main.py -------------------------------------------------------------------------------- /runtime/google-cloud-functions/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/google-cloud-functions/main_test.py -------------------------------------------------------------------------------- /runtime/lambda/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/lambda/lambda_function.py -------------------------------------------------------------------------------- /runtime/lambda/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/lambda/pack.sh -------------------------------------------------------------------------------- /runtime/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/runtime/requirements.txt -------------------------------------------------------------------------------- /scan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/.gitignore -------------------------------------------------------------------------------- /scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/README.md -------------------------------------------------------------------------------- /scan/__tests__/Address_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Address_test.re -------------------------------------------------------------------------------- /scan/__tests__/Bech32_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Bech32_test.re -------------------------------------------------------------------------------- /scan/__tests__/ExecutableParser_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/ExecutableParser_test.re -------------------------------------------------------------------------------- /scan/__tests__/Hash_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Hash_test.re -------------------------------------------------------------------------------- /scan/__tests__/HexUtils_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/HexUtils_test.re -------------------------------------------------------------------------------- /scan/__tests__/HistoryOracleParser_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/HistoryOracleParser_test.re -------------------------------------------------------------------------------- /scan/__tests__/JsBuffer_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/JsBuffer_test.re -------------------------------------------------------------------------------- /scan/__tests__/Obi_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Obi_test.re -------------------------------------------------------------------------------- /scan/__tests__/PubKey_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/PubKey_test.re -------------------------------------------------------------------------------- /scan/__tests__/RIPEMD160_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/RIPEMD160_test.re -------------------------------------------------------------------------------- /scan/__tests__/Route_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Route_test.re -------------------------------------------------------------------------------- /scan/__tests__/Sha256_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/Sha256_test.re -------------------------------------------------------------------------------- /scan/__tests__/TxCreator_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/__tests__/TxCreator_test.re -------------------------------------------------------------------------------- /scan/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/bsconfig.json -------------------------------------------------------------------------------- /scan/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/cypress.json -------------------------------------------------------------------------------- /scan/cypress/integration/all_pages.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/cypress/integration/all_pages.spec.js -------------------------------------------------------------------------------- /scan/cypress/integration/send_action.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/cypress/integration/send_action.spec.js -------------------------------------------------------------------------------- /scan/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/cypress/support/commands.js -------------------------------------------------------------------------------- /scan/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/cypress/support/index.js -------------------------------------------------------------------------------- /scan/graphql_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/graphql_schema.json -------------------------------------------------------------------------------- /scan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/index.html -------------------------------------------------------------------------------- /scan/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/netlify.toml -------------------------------------------------------------------------------- /scan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/package.json -------------------------------------------------------------------------------- /scan/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/proxy/Dockerfile -------------------------------------------------------------------------------- /scan/proxy/default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/proxy/default.vcl -------------------------------------------------------------------------------- /scan/public/Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/public/Thumbnail.jpg -------------------------------------------------------------------------------- /scan/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/public/favicon.png -------------------------------------------------------------------------------- /scan/src/ApolloClient.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/ApolloClient.re -------------------------------------------------------------------------------- /scan/src/App.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/App.re -------------------------------------------------------------------------------- /scan/src/AppStyle.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/AppStyle.re -------------------------------------------------------------------------------- /scan/src/Colors.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/Colors.re -------------------------------------------------------------------------------- /scan/src/Env.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/Env.re -------------------------------------------------------------------------------- /scan/src/Index.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/Index.re -------------------------------------------------------------------------------- /scan/src/Media.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/Media.re -------------------------------------------------------------------------------- /scan/src/Spacing.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/Spacing.re -------------------------------------------------------------------------------- /scan/src/bindings/AxiosHooks.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/AxiosHooks.re -------------------------------------------------------------------------------- /scan/src/bindings/BandChainJS.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/BandChainJS.re -------------------------------------------------------------------------------- /scan/src/bindings/Bech32.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Bech32.re -------------------------------------------------------------------------------- /scan/src/bindings/ChangeCase.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/ChangeCase.re -------------------------------------------------------------------------------- /scan/src/bindings/Copy.re: -------------------------------------------------------------------------------- 1 | [@bs.module] external copy: string => unit = "clipboard-copy"; 2 | -------------------------------------------------------------------------------- /scan/src/bindings/CosmosJS.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/CosmosJS.re -------------------------------------------------------------------------------- /scan/src/bindings/Countup.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Countup.re -------------------------------------------------------------------------------- /scan/src/bindings/Crypto.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Crypto.re -------------------------------------------------------------------------------- /scan/src/bindings/Document.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Document.re -------------------------------------------------------------------------------- /scan/src/bindings/JsBuffer.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/JsBuffer.re -------------------------------------------------------------------------------- /scan/src/bindings/LedgerJS.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/LedgerJS.re -------------------------------------------------------------------------------- /scan/src/bindings/MarkedJS.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/MarkedJS.re -------------------------------------------------------------------------------- /scan/src/bindings/Obi.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Obi.re -------------------------------------------------------------------------------- /scan/src/bindings/QRCode.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/QRCode.re -------------------------------------------------------------------------------- /scan/src/bindings/RIPEMD160.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/RIPEMD160.re -------------------------------------------------------------------------------- /scan/src/bindings/ReactHighlight.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/ReactHighlight.re -------------------------------------------------------------------------------- /scan/src/bindings/ReactSelect.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/ReactSelect.re -------------------------------------------------------------------------------- /scan/src/bindings/Secp256k1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Secp256k1.re -------------------------------------------------------------------------------- /scan/src/bindings/Semver.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Semver.re -------------------------------------------------------------------------------- /scan/src/bindings/Sha256.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Sha256.re -------------------------------------------------------------------------------- /scan/src/bindings/Tooltip.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/bindings/Tooltip.re -------------------------------------------------------------------------------- /scan/src/components/AmountRender.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/AmountRender.re -------------------------------------------------------------------------------- /scan/src/components/Avatar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Avatar.re -------------------------------------------------------------------------------- /scan/src/components/BlockIndexTxsTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/BlockIndexTxsTable.re -------------------------------------------------------------------------------- /scan/src/components/ChainIDBadge.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ChainIDBadge.re -------------------------------------------------------------------------------- /scan/src/components/ChainInfoHighlights.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ChainInfoHighlights.re -------------------------------------------------------------------------------- /scan/src/components/CopyRender.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/CopyRender.re -------------------------------------------------------------------------------- /scan/src/components/DataSourceRevisionTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/DataSourceRevisionTable.re -------------------------------------------------------------------------------- /scan/src/components/EnhanceTxInput.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/EnhanceTxInput.re -------------------------------------------------------------------------------- /scan/src/components/Header.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Header.re -------------------------------------------------------------------------------- /scan/src/components/HistoricalBondedGraph.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/HistoricalBondedGraph.re -------------------------------------------------------------------------------- /scan/src/components/KVTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/KVTable.re -------------------------------------------------------------------------------- /scan/src/components/LatestBlocks.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/LatestBlocks.re -------------------------------------------------------------------------------- /scan/src/components/LatestRequests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/LatestRequests.re -------------------------------------------------------------------------------- /scan/src/components/LatestTxTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/LatestTxTable.re -------------------------------------------------------------------------------- /scan/src/components/Loading.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Loading.re -------------------------------------------------------------------------------- /scan/src/components/LoadingCensorBar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/LoadingCensorBar.re -------------------------------------------------------------------------------- /scan/src/components/Modal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Modal.re -------------------------------------------------------------------------------- /scan/src/components/NavBar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/NavBar.re -------------------------------------------------------------------------------- /scan/src/components/NumberCountup.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/NumberCountup.re -------------------------------------------------------------------------------- /scan/src/components/OracleScriptRevisionTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/OracleScriptRevisionTable.re -------------------------------------------------------------------------------- /scan/src/components/Packet.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Packet.re -------------------------------------------------------------------------------- /scan/src/components/Pagination.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Pagination.re -------------------------------------------------------------------------------- /scan/src/components/ProgressBar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ProgressBar.re -------------------------------------------------------------------------------- /scan/src/components/RequestProof.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/RequestProof.re -------------------------------------------------------------------------------- /scan/src/components/RequestStatus.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/RequestStatus.re -------------------------------------------------------------------------------- /scan/src/components/SearchBar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/SearchBar.re -------------------------------------------------------------------------------- /scan/src/components/TimeAgos.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TimeAgos.re -------------------------------------------------------------------------------- /scan/src/components/Timestamp.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/Timestamp.re -------------------------------------------------------------------------------- /scan/src/components/ToggleButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ToggleButton.re -------------------------------------------------------------------------------- /scan/src/components/TotalRequestsGraph.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TotalRequestsGraph.re -------------------------------------------------------------------------------- /scan/src/components/TxError.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TxError.re -------------------------------------------------------------------------------- /scan/src/components/TxIndexPageTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TxIndexPageTable.re -------------------------------------------------------------------------------- /scan/src/components/TxLink.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TxLink.re -------------------------------------------------------------------------------- /scan/src/components/TxMessages.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TxMessages.re -------------------------------------------------------------------------------- /scan/src/components/TxsTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TxsTable.re -------------------------------------------------------------------------------- /scan/src/components/TypeID.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/TypeID.re -------------------------------------------------------------------------------- /scan/src/components/UserAccount.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/UserAccount.re -------------------------------------------------------------------------------- /scan/src/components/ValidatorMonikerLink.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ValidatorMonikerLink.re -------------------------------------------------------------------------------- /scan/src/components/ValidatorsTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/ValidatorsTable.re -------------------------------------------------------------------------------- /scan/src/components/account/AccountIndexDelegations.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/account/AccountIndexDelegations.re -------------------------------------------------------------------------------- /scan/src/components/account/AccountIndexRedelegate.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/account/AccountIndexRedelegate.re -------------------------------------------------------------------------------- /scan/src/components/account/AccountIndexTransactions.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/account/AccountIndexTransactions.re -------------------------------------------------------------------------------- /scan/src/components/account/AccountIndexUnbonding.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/account/AccountIndexUnbonding.re -------------------------------------------------------------------------------- /scan/src/components/buttons/Button.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/buttons/Button.re -------------------------------------------------------------------------------- /scan/src/components/buttons/CopyButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/buttons/CopyButton.re -------------------------------------------------------------------------------- /scan/src/components/buttons/ExtLinkButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/buttons/ExtLinkButton.re -------------------------------------------------------------------------------- /scan/src/components/buttons/MaxButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/buttons/MaxButton.re -------------------------------------------------------------------------------- /scan/src/components/buttons/ShowProofButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/buttons/ShowProofButton.re -------------------------------------------------------------------------------- /scan/src/components/charts/AccountBarChart.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/charts/AccountBarChart.re -------------------------------------------------------------------------------- /scan/src/components/charts/BlockUptimeChart.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/charts/BlockUptimeChart.re -------------------------------------------------------------------------------- /scan/src/components/charts/OracleDataReportChart.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/charts/OracleDataReportChart.re -------------------------------------------------------------------------------- /scan/src/components/data-source/DataSourceCode.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/data-source/DataSourceCode.re -------------------------------------------------------------------------------- /scan/src/components/data-source/DataSourceExecute.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/data-source/DataSourceExecute.re -------------------------------------------------------------------------------- /scan/src/components/data-source/DataSourceRequestTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/data-source/DataSourceRequestTable.re -------------------------------------------------------------------------------- /scan/src/components/modal/QRCodeModal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/QRCodeModal.re -------------------------------------------------------------------------------- /scan/src/components/modal/SyncingModal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/SyncingModal.re -------------------------------------------------------------------------------- /scan/src/components/modal/ValidatorStakingInfo.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/ValidatorStakingInfo.re -------------------------------------------------------------------------------- /scan/src/components/modal/WaitingModal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/WaitingModal.re -------------------------------------------------------------------------------- /scan/src/components/modal/connect/ConnectModal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/connect/ConnectModal.re -------------------------------------------------------------------------------- /scan/src/components/modal/connect/ConnectWithLedger.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/connect/ConnectWithLedger.re -------------------------------------------------------------------------------- /scan/src/components/modal/connect/ConnectWithMnemonic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/connect/ConnectWithMnemonic.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/DelegateMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/DelegateMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/PreviewJsonStep.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/PreviewJsonStep.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/RedelegateMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/RedelegateMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/ReinvestMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/ReinvestMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/SendMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/SendMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/SubmitTxModal.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/SubmitTxModal.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/TxResError.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/TxResError.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/UndelegateMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/UndelegateMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/VoteMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/VoteMsg.re -------------------------------------------------------------------------------- /scan/src/components/modal/submitTx/WithdrawRewardMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/modal/submitTx/WithdrawRewardMsg.re -------------------------------------------------------------------------------- /scan/src/components/msgs/DataMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/DataMsg.re -------------------------------------------------------------------------------- /scan/src/components/msgs/Msg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/Msg.re -------------------------------------------------------------------------------- /scan/src/components/msgs/MsgBadge.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/MsgBadge.re -------------------------------------------------------------------------------- /scan/src/components/msgs/MsgFront.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/MsgFront.re -------------------------------------------------------------------------------- /scan/src/components/msgs/ProposalMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/ProposalMsg.re -------------------------------------------------------------------------------- /scan/src/components/msgs/TokenMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/TokenMsg.re -------------------------------------------------------------------------------- /scan/src/components/msgs/ValidatorMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/msgs/ValidatorMsg.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptBridgeCode.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptBridgeCode.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptCode.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptCode.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptExecute.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptExecute.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptExecuteProof.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptExecuteProof.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptExecuteResponse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptExecuteResponse.re -------------------------------------------------------------------------------- /scan/src/components/oracle-script/OracleScriptRequestTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/oracle-script/OracleScriptRequestTable.re -------------------------------------------------------------------------------- /scan/src/components/proposal/DepositorTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/proposal/DepositorTable.re -------------------------------------------------------------------------------- /scan/src/components/proposal/TurnoutChart.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/proposal/TurnoutChart.re -------------------------------------------------------------------------------- /scan/src/components/proposal/VoteBreakdownTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/proposal/VoteBreakdownTable.re -------------------------------------------------------------------------------- /scan/src/components/request/DataReports.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/request/DataReports.re -------------------------------------------------------------------------------- /scan/src/components/tx-index/IndexDataMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/tx-index/IndexDataMsg.re -------------------------------------------------------------------------------- /scan/src/components/tx-index/IndexMsgIcon.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/tx-index/IndexMsgIcon.re -------------------------------------------------------------------------------- /scan/src/components/tx-index/IndexProposalMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/tx-index/IndexProposalMsg.re -------------------------------------------------------------------------------- /scan/src/components/tx-index/IndexTokenMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/tx-index/IndexTokenMsg.re -------------------------------------------------------------------------------- /scan/src/components/tx-index/IndexValidatorMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/tx-index/IndexValidatorMsg.re -------------------------------------------------------------------------------- /scan/src/components/validator/DelegatorsTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/validator/DelegatorsTable.re -------------------------------------------------------------------------------- /scan/src/components/validator/ProposedBlocksTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/validator/ProposedBlocksTable.re -------------------------------------------------------------------------------- /scan/src/components/validator/ProposedBlocksTableMobile.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/validator/ProposedBlocksTableMobile.re -------------------------------------------------------------------------------- /scan/src/components/validator/ReportersTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/validator/ReportersTable.re -------------------------------------------------------------------------------- /scan/src/components/validator/ReportsTable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/components/validator/ReportsTable.re -------------------------------------------------------------------------------- /scan/src/contexts/AccountContext.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/contexts/AccountContext.re -------------------------------------------------------------------------------- /scan/src/contexts/ContextHelper.re: -------------------------------------------------------------------------------- 1 | [@bs.val] external default: 'a = "null"; 2 | -------------------------------------------------------------------------------- /scan/src/contexts/GlobalContext.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/contexts/GlobalContext.re -------------------------------------------------------------------------------- /scan/src/contexts/ModalContext.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/contexts/ModalContext.re -------------------------------------------------------------------------------- /scan/src/contexts/TimeContext.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/contexts/TimeContext.re -------------------------------------------------------------------------------- /scan/src/images/Images.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/Images.re -------------------------------------------------------------------------------- /scan/src/images/activeValidatorLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/activeValidatorLogo.svg -------------------------------------------------------------------------------- /scan/src/images/band-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/band-logo.png -------------------------------------------------------------------------------- /scan/src/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/bg.png -------------------------------------------------------------------------------- /scan/src/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/close.svg -------------------------------------------------------------------------------- /scan/src/images/closeButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/closeButton.svg -------------------------------------------------------------------------------- /scan/src/images/coinmarketcap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/coinmarketcap.svg -------------------------------------------------------------------------------- /scan/src/images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/copy.svg -------------------------------------------------------------------------------- /scan/src/images/cosmosIBC-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/cosmosIBC-icon.png -------------------------------------------------------------------------------- /scan/src/images/cosmosibc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/cosmosibc.svg -------------------------------------------------------------------------------- /scan/src/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/down-arrow.svg -------------------------------------------------------------------------------- /scan/src/images/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ethereum.svg -------------------------------------------------------------------------------- /scan/src/images/ethereumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ethereumIcon.png -------------------------------------------------------------------------------- /scan/src/images/expired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/expired.svg -------------------------------------------------------------------------------- /scan/src/images/externalLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/externalLink.svg -------------------------------------------------------------------------------- /scan/src/images/fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/fail.svg -------------------------------------------------------------------------------- /scan/src/images/fail2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/fail2.svg -------------------------------------------------------------------------------- /scan/src/images/golang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/golang.svg -------------------------------------------------------------------------------- /scan/src/images/graph-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/graph-bg.svg -------------------------------------------------------------------------------- /scan/src/images/ibcDirArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ibcDirArrow.svg -------------------------------------------------------------------------------- /scan/src/images/ibcLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ibcLogo.svg -------------------------------------------------------------------------------- /scan/src/images/inactiveValidatorLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/inactiveValidatorLogo.svg -------------------------------------------------------------------------------- /scan/src/images/kadena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/kadena.svg -------------------------------------------------------------------------------- /scan/src/images/ledger-bandchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledger-bandchain.svg -------------------------------------------------------------------------------- /scan/src/images/ledger-cosmos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledger-cosmos.svg -------------------------------------------------------------------------------- /scan/src/images/ledger-step1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledger-step1.svg -------------------------------------------------------------------------------- /scan/src/images/ledger-step2-bandchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledger-step2-bandchain.svg -------------------------------------------------------------------------------- /scan/src/images/ledger-step2-cosmos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledger-step2-cosmos.svg -------------------------------------------------------------------------------- /scan/src/images/ledgerIconActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/ledgerIconActive.svg -------------------------------------------------------------------------------- /scan/src/images/left-angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/left-angle.svg -------------------------------------------------------------------------------- /scan/src/images/loading_circles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/loading_circles.gif -------------------------------------------------------------------------------- /scan/src/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/menu.svg -------------------------------------------------------------------------------- /scan/src/images/modal-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/modal-bg.svg -------------------------------------------------------------------------------- /scan/src/images/no-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/no-account.svg -------------------------------------------------------------------------------- /scan/src/images/no-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/no-block.svg -------------------------------------------------------------------------------- /scan/src/images/no-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/no-source.svg -------------------------------------------------------------------------------- /scan/src/images/noRevision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/noRevision.png -------------------------------------------------------------------------------- /scan/src/images/notFoundBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/notFoundBg.svg -------------------------------------------------------------------------------- /scan/src/images/pact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/pact.svg -------------------------------------------------------------------------------- /scan/src/images/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/pending.svg -------------------------------------------------------------------------------- /scan/src/images/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/right-arrow.svg -------------------------------------------------------------------------------- /scan/src/images/search-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/search-gray.svg -------------------------------------------------------------------------------- /scan/src/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/search-icon.png -------------------------------------------------------------------------------- /scan/src/images/solidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/solidity.svg -------------------------------------------------------------------------------- /scan/src/images/solidityIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/solidityIcon.png -------------------------------------------------------------------------------- /scan/src/images/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/success.svg -------------------------------------------------------------------------------- /scan/src/images/success2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/success2.svg -------------------------------------------------------------------------------- /scan/src/images/thunder-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/thunder-icon.svg -------------------------------------------------------------------------------- /scan/src/images/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/tick.svg -------------------------------------------------------------------------------- /scan/src/images/triangle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/triangle-down.svg -------------------------------------------------------------------------------- /scan/src/images/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/unknown.svg -------------------------------------------------------------------------------- /scan/src/images/vyper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/vyper.svg -------------------------------------------------------------------------------- /scan/src/images/waiting-modal-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/images/waiting-modal-bg.svg -------------------------------------------------------------------------------- /scan/src/pages/AccountIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/AccountIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/BlockHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/BlockHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/BlockIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/BlockIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/DataSourceHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/DataSourceHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/DataSourceIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/DataSourceIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/HomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/HomePage.re -------------------------------------------------------------------------------- /scan/src/pages/IBCHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/IBCHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/NotFound.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/NotFound.re -------------------------------------------------------------------------------- /scan/src/pages/OracleScriptHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/OracleScriptHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/OracleScriptIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/OracleScriptIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/ProposalHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/ProposalHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/ProposalIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/ProposalIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/RequestHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/RequestHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/RequestIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/RequestIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/TxHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/TxHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/TxIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/TxIndexPage.re -------------------------------------------------------------------------------- /scan/src/pages/ValidatorHomePage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/ValidatorHomePage.re -------------------------------------------------------------------------------- /scan/src/pages/ValidatorIndexPage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/pages/ValidatorIndexPage.re -------------------------------------------------------------------------------- /scan/src/query/HistoricalBondedQuery.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/query/HistoricalBondedQuery.re -------------------------------------------------------------------------------- /scan/src/query/HistoricalTotalRequestQuery.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/query/HistoricalTotalRequestQuery.re -------------------------------------------------------------------------------- /scan/src/query/Query.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/query/Query.re -------------------------------------------------------------------------------- /scan/src/reusable/AddressRender.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/AddressRender.re -------------------------------------------------------------------------------- /scan/src/reusable/AutoSpacing.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/AutoSpacing.re -------------------------------------------------------------------------------- /scan/src/reusable/CTooltip.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/CTooltip.re -------------------------------------------------------------------------------- /scan/src/reusable/Col.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Col.re -------------------------------------------------------------------------------- /scan/src/reusable/CssHelper.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/CssHelper.re -------------------------------------------------------------------------------- /scan/src/reusable/EmptyContainer.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/EmptyContainer.re -------------------------------------------------------------------------------- /scan/src/reusable/HSpacing.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/HSpacing.re -------------------------------------------------------------------------------- /scan/src/reusable/Heading.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Heading.re -------------------------------------------------------------------------------- /scan/src/reusable/Icon.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Icon.re -------------------------------------------------------------------------------- /scan/src/reusable/InfoHL.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/InfoHL.re -------------------------------------------------------------------------------- /scan/src/reusable/InfoMobileCard.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/InfoMobileCard.re -------------------------------------------------------------------------------- /scan/src/reusable/Link.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Link.re -------------------------------------------------------------------------------- /scan/src/reusable/Markdown.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Markdown.re -------------------------------------------------------------------------------- /scan/src/reusable/MobileCard.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/MobileCard.re -------------------------------------------------------------------------------- /scan/src/reusable/ProposalBadge.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/ProposalBadge.re -------------------------------------------------------------------------------- /scan/src/reusable/PubKeyRender.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/PubKeyRender.re -------------------------------------------------------------------------------- /scan/src/reusable/Row.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Row.re -------------------------------------------------------------------------------- /scan/src/reusable/SearchInput.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/SearchInput.re -------------------------------------------------------------------------------- /scan/src/reusable/Section.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Section.re -------------------------------------------------------------------------------- /scan/src/reusable/SortableDropdown.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/SortableDropdown.re -------------------------------------------------------------------------------- /scan/src/reusable/TBody.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/TBody.re -------------------------------------------------------------------------------- /scan/src/reusable/TElement.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/TElement.re -------------------------------------------------------------------------------- /scan/src/reusable/THead.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/THead.re -------------------------------------------------------------------------------- /scan/src/reusable/Tab.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Tab.re -------------------------------------------------------------------------------- /scan/src/reusable/Text.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/Text.re -------------------------------------------------------------------------------- /scan/src/reusable/VSpacing.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/reusable/VSpacing.re -------------------------------------------------------------------------------- /scan/src/rpc/CodeHook.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/rpc/CodeHook.re -------------------------------------------------------------------------------- /scan/src/rpc/JsonUtils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/rpc/JsonUtils.re -------------------------------------------------------------------------------- /scan/src/rpc/PriceHook.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/rpc/PriceHook.re -------------------------------------------------------------------------------- /scan/src/rpc/ProofHook.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/rpc/ProofHook.re -------------------------------------------------------------------------------- /scan/src/subscriptions/AccountSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/AccountSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/BlockSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/BlockSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/DataSourceRevisionSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/DataSourceRevisionSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/DataSourceSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/DataSourceSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/DelegationSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/DelegationSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/DepositSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/DepositSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/GraphQLParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/GraphQLParser.re -------------------------------------------------------------------------------- /scan/src/subscriptions/IBCSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/IBCSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/OracleScriptRevisionSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/OracleScriptRevisionSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/OracleScriptSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/OracleScriptSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/PacketSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/PacketSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/ProposalSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/ProposalSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/RedelegateSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/RedelegateSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/ReportSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/ReportSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/ReporterSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/ReporterSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/RequestSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/RequestSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/Sub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/Sub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/TrackingSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/TrackingSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/TxSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/TxSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/UnbondingSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/UnbondingSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/ValidatorSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/ValidatorSub.re -------------------------------------------------------------------------------- /scan/src/subscriptions/VoteSub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/subscriptions/VoteSub.re -------------------------------------------------------------------------------- /scan/src/utils/Address.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Address.re -------------------------------------------------------------------------------- /scan/src/utils/AxiosFaucet.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/AxiosFaucet.re -------------------------------------------------------------------------------- /scan/src/utils/AxiosRequest.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/AxiosRequest.re -------------------------------------------------------------------------------- /scan/src/utils/ClickOutside.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/ClickOutside.re -------------------------------------------------------------------------------- /scan/src/utils/Coin.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Coin.re -------------------------------------------------------------------------------- /scan/src/utils/Config.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Config.re -------------------------------------------------------------------------------- /scan/src/utils/Ellipsis.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Ellipsis.re -------------------------------------------------------------------------------- /scan/src/utils/ExecutableParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/ExecutableParser.re -------------------------------------------------------------------------------- /scan/src/utils/Format.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Format.re -------------------------------------------------------------------------------- /scan/src/utils/Hash.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Hash.re -------------------------------------------------------------------------------- /scan/src/utils/HexUtils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/HexUtils.re -------------------------------------------------------------------------------- /scan/src/utils/HistoryOracleParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/HistoryOracleParser.re -------------------------------------------------------------------------------- /scan/src/utils/ID.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/ID.re -------------------------------------------------------------------------------- /scan/src/utils/IterList.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/IterList.re -------------------------------------------------------------------------------- /scan/src/utils/Mobile.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Mobile.re -------------------------------------------------------------------------------- /scan/src/utils/Opt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Opt.re -------------------------------------------------------------------------------- /scan/src/utils/Os.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Os.re -------------------------------------------------------------------------------- /scan/src/utils/Page.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Page.re -------------------------------------------------------------------------------- /scan/src/utils/Parse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Parse.re -------------------------------------------------------------------------------- /scan/src/utils/Promise.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Promise.re -------------------------------------------------------------------------------- /scan/src/utils/PubKey.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/PubKey.re -------------------------------------------------------------------------------- /scan/src/utils/Result.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Result.re -------------------------------------------------------------------------------- /scan/src/utils/Route.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/Route.re -------------------------------------------------------------------------------- /scan/src/utils/SubmitMsg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/SubmitMsg.re -------------------------------------------------------------------------------- /scan/src/utils/proof/NonEVMProof.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/utils/proof/NonEVMProof.re -------------------------------------------------------------------------------- /scan/src/wallet/Ledger.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/wallet/Ledger.re -------------------------------------------------------------------------------- /scan/src/wallet/Mnemonic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/wallet/Mnemonic.re -------------------------------------------------------------------------------- /scan/src/wallet/TxCreator.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/wallet/TxCreator.re -------------------------------------------------------------------------------- /scan/src/wallet/Wallet.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/src/wallet/Wallet.re -------------------------------------------------------------------------------- /scan/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scan/yarn.lock -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandprotocol/bandchain/HEAD/spec/README.md --------------------------------------------------------------------------------