├── .cursorignore ├── .dockerignore ├── .gemini ├── README.md └── config.yaml ├── .github ├── CODEOWNERS ├── codecov.yml ├── dependabot.yml ├── issue-labeler-config.yml ├── pull_request_template.md └── workflows │ ├── docker.yml │ ├── e2e-evm.yml │ ├── gh-issues.yml │ ├── golangci-lint.yml │ ├── pr-title-lint.yml │ ├── proto-lint.yml │ ├── release.yml │ ├── test-heavy.yml │ ├── test-sims.yml │ ├── test-unit.yml │ └── upgrade-handler-check.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .nvmrc ├── CHANGELOG.md ├── CHAOSNET.md ├── CLAUDE.md ├── Dockerfile ├── INSTALL.md ├── LEGACY-CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── RELEASE_PROCESS.md ├── api ├── eth │ ├── evm │ │ ├── module │ │ │ └── module.pulsar.go │ │ └── v1 │ │ │ ├── events.pulsar.go │ │ │ ├── evm.pulsar.go │ │ │ ├── genesis.pulsar.go │ │ │ ├── query.pulsar.go │ │ │ ├── query_grpc.pb.go │ │ │ ├── tx.pulsar.go │ │ │ └── tx_grpc.pb.go │ └── types │ │ └── v1 │ │ ├── account.pulsar.go │ │ └── indexer.pulsar.go └── nibiru │ ├── devgas │ └── v1 │ │ ├── devgas.pulsar.go │ │ ├── event.pulsar.go │ │ ├── genesis.pulsar.go │ │ ├── query.pulsar.go │ │ ├── query_grpc.pb.go │ │ ├── tx.pulsar.go │ │ └── tx_grpc.pb.go │ ├── epochs │ ├── module │ │ └── module.pulsar.go │ └── v1 │ │ ├── event.pulsar.go │ │ ├── genesis.pulsar.go │ │ ├── query.pulsar.go │ │ ├── query_grpc.pb.go │ │ └── state.pulsar.go │ ├── genmsg │ └── v1 │ │ └── genmsg.pulsar.go │ ├── inflation │ ├── module │ │ └── module.pulsar.go │ └── v1 │ │ ├── event.pulsar.go │ │ ├── genesis.pulsar.go │ │ ├── inflation.pulsar.go │ │ ├── query.pulsar.go │ │ ├── query_grpc.pb.go │ │ ├── tx.pulsar.go │ │ └── tx_grpc.pb.go │ ├── oracle │ ├── module │ │ └── module.pulsar.go │ └── v1 │ │ ├── event.pulsar.go │ │ ├── genesis.pulsar.go │ │ ├── oracle.pulsar.go │ │ ├── query.pulsar.go │ │ ├── query_grpc.pb.go │ │ ├── state.pulsar.go │ │ ├── tx.pulsar.go │ │ └── tx_grpc.pb.go │ ├── sudo │ ├── module │ │ └── module.pulsar.go │ └── v1 │ │ ├── event.pulsar.go │ │ ├── query.pulsar.go │ │ ├── query_grpc.pb.go │ │ ├── state.pulsar.go │ │ ├── tx.pulsar.go │ │ └── tx_grpc.pb.go │ └── tokenfactory │ ├── module │ └── module.pulsar.go │ └── v1 │ ├── event.pulsar.go │ ├── query.pulsar.go │ ├── query_grpc.pb.go │ ├── state.pulsar.go │ ├── tx.pulsar.go │ └── tx_grpc.pb.go ├── app ├── ante.go ├── ante │ ├── auth_guard_test.go │ ├── authz_guard.go │ ├── commission.go │ ├── commission_test.go │ ├── deduct_fee.go │ ├── deduct_fee_test.go │ ├── errors.go │ ├── fixed_gas.go │ ├── fixed_gas_test.go │ ├── gas.go │ ├── gas_wanted.go │ ├── gas_wanted_test.go │ ├── handler_opts.go │ ├── reject_ethereum_tx_msgs.go │ ├── reject_ethereum_tx_msgs_test.go │ ├── sigverify.go │ └── testutil_test.go ├── app.go ├── app_config.go ├── appconst │ ├── appconst.go │ ├── appconst_test.go │ ├── consensus_config.go │ └── pebbledb.go ├── encoding.go ├── export.go ├── genesis.go ├── ibc_test.go ├── keepers.go ├── keepers │ └── all_keepers.go ├── modules.go ├── modules_test.go ├── prefix.go ├── server │ ├── config │ │ └── server_config.go │ ├── evm_json_rpc.go │ ├── evm_json_rpc_get.html │ ├── evm_tx_indexer_cli.go │ ├── evm_tx_indexer_service.go │ ├── flags.go │ ├── geth_log_handler.go │ ├── start.go │ └── util.go ├── sim │ └── config.go ├── simapp │ ├── README.md │ ├── params.json │ ├── sim_test.go │ └── state_test.go ├── upgrades.go ├── upgrades │ ├── all_upgrades.go │ ├── v1.go │ ├── v2.go │ ├── v2_5_0.go │ ├── v2_5_0_test.go │ ├── v2_7_0.go │ ├── v2_7_0_test.go │ ├── v2_7_0_testnet_stnibi.go │ └── v2_7_0_testnet_stnibi_test.go └── wasmext │ ├── stargate_query.go │ ├── stargate_query_test.go │ ├── wasm.go │ ├── wasm_cli_test │ ├── cli_test.go │ └── testdata │ │ └── cw_nameservice.wasm │ └── wasmext_test.go ├── cliff.toml ├── cmd └── nibid │ ├── base64.go │ ├── decode_base64.go │ ├── decode_base64_test.go │ ├── init.go │ ├── main.go │ ├── root.go │ ├── root_test.go │ ├── testnet.go │ └── testnet_test.go ├── contrib ├── bashlib.sh ├── docker-compose │ ├── README.md │ └── docker-compose-chaosnet.yml ├── make │ ├── build.mk │ ├── chaosnet.mk │ ├── format.mk │ ├── lint.mk │ ├── localnet.mk │ ├── mock.mk │ ├── proto.mk │ ├── simulation.mk │ └── test.mk ├── scripts │ ├── chaosnet.sh │ ├── docker-wrapper.sh │ ├── feat-perp.sh │ ├── localnet.sh │ ├── protocgen-pulsar.sh │ ├── protocgen.sh │ ├── testing │ │ └── stableswap_model.py │ └── upgrade-handler-check.go └── templates │ ├── bdjuno.yaml │ ├── hermes.toml │ ├── nibiru-0-validator-mnemonic │ └── nibiru-1-validator-mnemonic ├── eth ├── account.pb.go ├── assert.go ├── assert_test.go ├── chain_id.go ├── chain_id_test.go ├── codec.go ├── codec_test.go ├── crypto │ ├── codec │ │ ├── amino.go │ │ └── codec.go │ ├── ethsecp256k1 │ │ ├── benchmark_test.go │ │ ├── ethsecp256k1.go │ │ ├── ethsecp256k1_test.go │ │ └── keys.pb.go │ ├── hd │ │ ├── algorithm.go │ │ ├── algorithm_test.go │ │ ├── benchmark_test.go │ │ └── utils_test.go │ ├── keyring │ │ └── options.go │ └── secp256r1 │ │ └── verify.go ├── eip55.go ├── eip55_test.go ├── eip712 │ ├── domain.go │ ├── eip712.go │ ├── eip712_fuzzer_test.go │ ├── eip712_legacy.go │ ├── eip712_test.go │ ├── encoding.go │ ├── encoding_legacy.go │ ├── message.go │ └── types.go ├── encoding │ ├── config.go │ └── config_test.go ├── errors.go ├── eth_account.go ├── eth_account_test.go ├── gas_limit.go ├── gas_limit_test.go ├── hdpath.go ├── indexer.go ├── indexer.pb.go ├── indexer │ ├── evm_tx_indexer.go │ └── evm_tx_indexer_test.go ├── rpc │ ├── addrlocker.go │ ├── addrlocker_test.go │ ├── block.go │ ├── block_test.go │ ├── events_parser.go │ ├── events_parser_test.go │ ├── pubsub │ │ ├── pubsub.go │ │ └── pubsub_test.go │ ├── query_client.go │ ├── rpc.go │ ├── rpc_test.go │ ├── rpcapi │ │ ├── account_info.go │ │ ├── account_info_test.go │ │ ├── api_debug.go │ │ ├── api_eth.go │ │ ├── api_eth_filters.go │ │ ├── api_eth_test.go │ │ ├── api_net.go │ │ ├── api_net_test.go │ │ ├── api_txpool.go │ │ ├── api_web3.go │ │ ├── apis.go │ │ ├── backend.go │ │ ├── backend_suite_test.go │ │ ├── blocks.go │ │ ├── blocks_test.go │ │ ├── call_tx.go │ │ ├── call_tx_test.go │ │ ├── chain_info.go │ │ ├── chain_info_test.go │ │ ├── client_test.go │ │ ├── event_subscriber.go │ │ ├── event_subscriber_test.go │ │ ├── filter_utils.go │ │ ├── filters.go │ │ ├── gas_used_test.go │ │ ├── node_info.go │ │ ├── node_info_test.go │ │ ├── nonce_test.go │ │ ├── subscription.go │ │ ├── tracing.go │ │ ├── tracing_test.go │ │ ├── tx_info.go │ │ ├── tx_info_test.go │ │ ├── tx_logs_test.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── websockets.go │ └── types.go ├── safe_math.go ├── safe_math_test.go ├── state_encoder.go ├── state_encoder_test.go ├── stringify.go └── stringify_test.go ├── evm-e2e ├── .entrypoint.addr ├── .env_sample ├── .gitignore ├── .nvmrc ├── .passkeyfactory.addr ├── README.md ├── bun.lock ├── contracts │ ├── EventsEmitter.sol │ ├── IFunToken.sol │ ├── InfiniteLoopGas.sol │ ├── NibiruEvmUtils.sol │ ├── NibiruOracleChainLinkLike.sol │ ├── SendReceiveNibi.sol │ ├── TestERC20.sol │ ├── TransactionReverter.sol │ └── passkey │ │ ├── EntryPointV06.sol │ │ ├── PasskeyAccount.sol │ │ ├── UserOperation.sol │ │ └── interfaces │ │ └── IEntryPoint.sol ├── hardhat.config.ts ├── jest.config.js ├── justfile ├── package-lock.json ├── package.json ├── passkey-sdk │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── bundler.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── local-bundler.ts │ │ ├── p256-node.ts │ │ ├── passkey-e2e.ts │ │ ├── test-precompile.ts │ │ ├── types.d.ts │ │ ├── userop.ts │ │ ├── utils.ts │ │ └── webauthn.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── prettier.config.js ├── scripts │ ├── deploy-entrypoint.js │ ├── deploy-passkey.js │ ├── passkey-demo-setup.js │ └── start-bundler.sh ├── test │ ├── contract_infinite_loop_gas.test.ts │ ├── contract_send_nibi.test.ts │ ├── debug_queries.test.ts │ ├── erc20.test.ts │ ├── eth_queries.test.ts │ ├── native_transfer.test.ts │ ├── nibiru_oracle.test.ts │ ├── passkey_account.test.ts │ ├── precompile_statedb.test.ts │ ├── setup.ts │ ├── tx_receipt.test.ts │ ├── utils.ts │ └── wrapped_nibiru_wnibi.test.ts └── tsconfig.json ├── evm-forge ├── .editorconfig ├── .env.example ├── .github │ ├── FUNDING.yml │ ├── scripts │ │ └── rename.sh │ └── workflows │ │ ├── ci.yml │ │ └── use-template.yml ├── .gitignore ├── .gitpod.yml ├── .prettierignore ├── .prettierrc.yml ├── .solhint.json ├── LICENSE.md ├── README.md ├── bun.lockb ├── foundry.toml ├── justfile ├── package.json ├── remappings.txt ├── script │ ├── Base.s.sol │ ├── Deploy.s.sol │ └── DeployPasskeyFactory.s.sol ├── src │ ├── Foo.sol │ └── passkey │ │ ├── P256.sol │ │ ├── PasskeyAccount.sol │ │ ├── UserOperation.sol │ │ └── interfaces │ │ └── IEntryPoint.sol └── test │ ├── Foo.t.sol │ └── PasskeyAccount.t.sol ├── go.mod ├── go.sum ├── gosdk ├── README.md ├── broadcast.go ├── clientctx.go ├── export_test.go ├── gosdk.go ├── gosdk_test.go ├── gosdktest │ └── gosdktest.go ├── grpc.go ├── keys.go ├── keys_test.go ├── netinfo.go ├── querier.go └── rpc.go ├── internal ├── cosmos-sdk │ ├── .clang-format │ ├── .cursorignore │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── baseapp │ │ ├── abci.go │ │ ├── abci_test.go │ │ ├── abci_utils.go │ │ ├── abci_utils_test.go │ │ ├── baseapp.go │ │ ├── baseapp_test.go │ │ ├── block_gas_test.go │ │ ├── circuit.go │ │ ├── grpcrouter.go │ │ ├── grpcrouter_helpers.go │ │ ├── grpcrouter_test.go │ │ ├── grpcserver.go │ │ ├── msg_service_router.go │ │ ├── msg_service_router_test.go │ │ ├── options.go │ │ ├── params.go │ │ ├── params_legacy.go │ │ ├── recovery.go │ │ ├── recovery_test.go │ │ ├── state.go │ │ ├── streaming.go │ │ ├── test_helpers.go │ │ ├── testutil │ │ │ ├── buf.gen.yaml │ │ │ ├── buf.lock │ │ │ ├── buf.yaml │ │ │ ├── messages.go │ │ │ ├── messages.pb.go │ │ │ ├── messages.proto │ │ │ └── mock │ │ │ │ └── mocks.go │ │ └── utils_test.go │ ├── client │ │ ├── account_retriever.go │ │ ├── broadcast.go │ │ ├── broadcast_test.go │ │ ├── cmd.go │ │ ├── cmd_test.go │ │ ├── config │ │ │ ├── cmd.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── toml.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── debug │ │ │ └── main.go │ │ ├── docs │ │ │ ├── statik │ │ │ │ ├── init.go │ │ │ │ └── statik.go │ │ │ └── swagger-ui │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── index.html │ │ │ │ ├── oauth2-redirect.html │ │ │ │ └── swagger.yaml │ │ ├── flags │ │ │ ├── flags.go │ │ │ └── flags_test.go │ │ ├── grpc │ │ │ ├── node │ │ │ │ ├── query.pb.go │ │ │ │ ├── query.pb.gw.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── reflection │ │ │ │ ├── reflection.go │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection.pb.gw.go │ │ │ └── tmservice │ │ │ │ ├── block.go │ │ │ │ ├── query.pb.go │ │ │ │ ├── query.pb.gw.go │ │ │ │ ├── service.go │ │ │ │ ├── status.go │ │ │ │ ├── types.go │ │ │ │ ├── types.pb.go │ │ │ │ └── util.go │ │ ├── grpc_query.go │ │ ├── grpc_query_test.go │ │ ├── input │ │ │ ├── input.go │ │ │ └── input_test.go │ │ ├── internal_client_test.go │ │ ├── keys │ │ │ ├── add.go │ │ │ ├── add_ledger_test.go │ │ │ ├── add_test.go │ │ │ ├── delete.go │ │ │ ├── delete_test.go │ │ │ ├── export.go │ │ │ ├── export_test.go │ │ │ ├── import.go │ │ │ ├── import_test.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── migrate.go │ │ │ ├── migrate_test.go │ │ │ ├── mnemonic.go │ │ │ ├── mnemonic_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── rename.go │ │ │ ├── rename_test.go │ │ │ ├── root.go │ │ │ ├── root_test.go │ │ │ ├── show.go │ │ │ ├── show_test.go │ │ │ ├── testdata │ │ │ │ └── keys │ │ │ │ │ └── keys.db │ │ │ │ │ ├── 000136.ldb │ │ │ │ │ ├── 000137.ldb │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── CURRENT.bak │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000167 │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ └── utils.go │ │ ├── prompt_validation.go │ │ ├── prompt_validation_test.go │ │ ├── pruning │ │ │ └── main.go │ │ ├── query.go │ │ ├── rpc │ │ │ ├── block.go │ │ │ ├── rpc_test.go │ │ │ ├── status.go │ │ │ ├── tx.go │ │ │ └── validators.go │ │ ├── snapshot │ │ │ ├── cmd.go │ │ │ ├── delete.go │ │ │ ├── dump.go │ │ │ ├── export.go │ │ │ ├── list.go │ │ │ ├── load.go │ │ │ └── restore.go │ │ ├── tendermint.go │ │ ├── test_helpers.go │ │ ├── testutil │ │ │ └── util.go │ │ ├── tx │ │ │ ├── aux_builder.go │ │ │ ├── aux_builder_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── legacy.go │ │ │ ├── legacy_test.go │ │ │ ├── tx.go │ │ │ └── tx_test.go │ │ ├── tx_config.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── codec │ │ ├── amino.go │ │ ├── amino_codec.go │ │ ├── amino_codec_test.go │ │ ├── any_test.go │ │ ├── codec.go │ │ ├── codec_common_test.go │ │ ├── json.go │ │ ├── legacy │ │ │ ├── amino_msg.go │ │ │ ├── amino_msg_test.go │ │ │ ├── codec.go │ │ │ └── doc.go │ │ ├── proto_codec.go │ │ ├── proto_codec_test.go │ │ ├── types │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── any_internal_test.go │ │ │ ├── any_test.go │ │ │ ├── compat.go │ │ │ ├── compat_test.go │ │ │ ├── doc.go │ │ │ ├── interface_registry.go │ │ │ └── types_test.go │ │ ├── unknownproto │ │ │ ├── benchmarks_test.go │ │ │ ├── doc.go │ │ │ ├── regression_test.go │ │ │ ├── unit_helpers_test.go │ │ │ ├── unknown_fields.go │ │ │ └── unknown_fields_test.go │ │ ├── yaml.go │ │ └── yaml_test.go │ ├── contrib │ │ ├── devtools │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── githooks │ │ │ ├── README.md │ │ │ └── pre-commit │ │ ├── images │ │ │ ├── Makefile │ │ │ ├── simd-dlv │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── wrapper.sh │ │ │ └── simd-env │ │ │ │ ├── Dockerfile │ │ │ │ └── wrapper.sh │ │ ├── localnet_liveness.sh │ │ ├── migrate │ │ │ ├── lib.py │ │ │ └── v0.33.x-to-v0.34.0.py │ │ └── scripts │ │ │ ├── gen-proto-go.sh │ │ │ ├── protocgen-pulsar.sh │ │ │ └── protocgen.sh │ ├── crypto │ │ ├── armor.go │ │ ├── armor_test.go │ │ ├── bcrypt_readme.md │ │ ├── codec │ │ │ ├── amino.go │ │ │ ├── proto.go │ │ │ └── tm.go │ │ ├── hd │ │ │ ├── algo.go │ │ │ ├── algo_test.go │ │ │ ├── doc.go │ │ │ ├── fundraiser_test.go │ │ │ ├── hd.pb.go │ │ │ ├── hdpath.go │ │ │ ├── hdpath_test.go │ │ │ └── testdata │ │ │ │ └── test.json │ │ ├── keyring │ │ │ ├── codec.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── keyring.go │ │ │ ├── keyring_ledger_test.go │ │ │ ├── keyring_test.go │ │ │ ├── keys.toml │ │ │ ├── legacy_info.go │ │ │ ├── migration_test.go │ │ │ ├── output.go │ │ │ ├── output_test.go │ │ │ ├── record.go │ │ │ ├── record.pb.go │ │ │ ├── record_test.go │ │ │ ├── signing_algorithms.go │ │ │ ├── signing_algorithms_test.go │ │ │ ├── testdata │ │ │ │ └── keys │ │ │ │ │ └── keys.db │ │ │ │ │ ├── 000002.ldb │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── CURRENT.bak │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000004 │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── keys │ │ │ ├── bcrypt │ │ │ │ ├── base64.go │ │ │ │ └── bcrypt.go │ │ │ ├── ed25519 │ │ │ │ ├── doc.go │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_test.go │ │ │ │ └── keys.pb.go │ │ │ ├── internal │ │ │ │ ├── benchmarking │ │ │ │ │ └── bench.go │ │ │ │ └── ecdsa │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── privkey.go │ │ │ │ │ ├── privkey_internal_test.go │ │ │ │ │ ├── pubkey.go │ │ │ │ │ └── pubkey_internal_test.go │ │ │ ├── multisig │ │ │ │ ├── amino.go │ │ │ │ ├── codec.go │ │ │ │ ├── keys.pb.go │ │ │ │ ├── multisig.go │ │ │ │ └── multisig_test.go │ │ │ ├── secp256k1 │ │ │ │ ├── bench_test.go │ │ │ │ ├── internal │ │ │ │ │ └── secp256k1 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── curve.go │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── ext.h │ │ │ │ │ │ ├── libsecp256k1 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── TODO │ │ │ │ │ │ ├── autogen.sh │ │ │ │ │ │ ├── build-aux │ │ │ │ │ │ │ └── m4 │ │ │ │ │ │ │ │ ├── ax_jni_include_dir.m4 │ │ │ │ │ │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ │ │ │ │ │ └── bitcoin_secp.m4 │ │ │ │ │ │ ├── configure.ac │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ ├── lax_der_parsing.c │ │ │ │ │ │ │ ├── lax_der_parsing.h │ │ │ │ │ │ │ ├── lax_der_privatekey_parsing.c │ │ │ │ │ │ │ └── lax_der_privatekey_parsing.h │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ ├── secp256k1.h │ │ │ │ │ │ │ ├── secp256k1_ecdh.h │ │ │ │ │ │ │ └── secp256k1_recovery.h │ │ │ │ │ │ ├── libsecp256k1.pc.in │ │ │ │ │ │ ├── obj │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── sage │ │ │ │ │ │ │ ├── group_prover.sage │ │ │ │ │ │ │ ├── secp256k1.sage │ │ │ │ │ │ │ └── weierstrass_prover.sage │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── asm │ │ │ │ │ │ │ └── field_10x26_arm.s │ │ │ │ │ │ │ ├── basic-config.h │ │ │ │ │ │ │ ├── bench.h │ │ │ │ │ │ │ ├── bench_ecdh.c │ │ │ │ │ │ │ ├── bench_internal.c │ │ │ │ │ │ │ ├── bench_recover.c │ │ │ │ │ │ │ ├── bench_schnorr_verify.c │ │ │ │ │ │ │ ├── bench_sign.c │ │ │ │ │ │ │ ├── bench_verify.c │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ │ ├── ecdsa_impl.h │ │ │ │ │ │ │ ├── eckey.h │ │ │ │ │ │ │ ├── eckey_impl.h │ │ │ │ │ │ │ ├── ecmult.h │ │ │ │ │ │ │ ├── ecmult_const.h │ │ │ │ │ │ │ ├── ecmult_const_impl.h │ │ │ │ │ │ │ ├── ecmult_gen.h │ │ │ │ │ │ │ ├── ecmult_gen_impl.h │ │ │ │ │ │ │ ├── ecmult_impl.h │ │ │ │ │ │ │ ├── field.h │ │ │ │ │ │ │ ├── field_10x26.h │ │ │ │ │ │ │ ├── field_10x26_impl.h │ │ │ │ │ │ │ ├── field_5x52.h │ │ │ │ │ │ │ ├── field_5x52_asm_impl.h │ │ │ │ │ │ │ ├── field_5x52_impl.h │ │ │ │ │ │ │ ├── field_5x52_int128_impl.h │ │ │ │ │ │ │ ├── field_impl.h │ │ │ │ │ │ │ ├── gen_context.c │ │ │ │ │ │ │ ├── group.h │ │ │ │ │ │ │ ├── group_impl.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ ├── hash_impl.h │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── org │ │ │ │ │ │ │ │ └── bitcoin │ │ │ │ │ │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ │ │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ │ │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ │ │ │ │ │ └── Secp256k1Context.java │ │ │ │ │ │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ │ │ │ │ │ ├── org_bitcoin_NativeSecp256k1.h │ │ │ │ │ │ │ ├── org_bitcoin_Secp256k1Context.c │ │ │ │ │ │ │ └── org_bitcoin_Secp256k1Context.h │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ │ │ └── recovery │ │ │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ │ │ ├── num.h │ │ │ │ │ │ │ ├── num_gmp.h │ │ │ │ │ │ │ ├── num_gmp_impl.h │ │ │ │ │ │ │ ├── num_impl.h │ │ │ │ │ │ │ ├── scalar.h │ │ │ │ │ │ │ ├── scalar_4x64.h │ │ │ │ │ │ │ ├── scalar_4x64_impl.h │ │ │ │ │ │ │ ├── scalar_8x32.h │ │ │ │ │ │ │ ├── scalar_8x32_impl.h │ │ │ │ │ │ │ ├── scalar_impl.h │ │ │ │ │ │ │ ├── scalar_low.h │ │ │ │ │ │ │ ├── scalar_low_impl.h │ │ │ │ │ │ │ ├── secp256k1.c │ │ │ │ │ │ │ ├── testrand.h │ │ │ │ │ │ │ ├── testrand_impl.h │ │ │ │ │ │ │ ├── tests.c │ │ │ │ │ │ │ ├── tests_exhaustive.c │ │ │ │ │ │ │ └── util.h │ │ │ │ │ │ ├── panic_cb.go │ │ │ │ │ │ ├── scalar_mult_cgo.go │ │ │ │ │ │ ├── scalar_mult_nocgo.go │ │ │ │ │ │ ├── secp256.go │ │ │ │ │ │ └── secp256_test.go │ │ │ │ ├── keys.pb.go │ │ │ │ ├── secp256k1.go │ │ │ │ ├── secp256k1_cgo.go │ │ │ │ ├── secp256k1_cgo_test.go │ │ │ │ ├── secp256k1_internal_test.go │ │ │ │ ├── secp256k1_nocgo.go │ │ │ │ ├── secp256k1_nocgo_test.go │ │ │ │ └── secp256k1_test.go │ │ │ └── secp256r1 │ │ │ │ ├── doc.go │ │ │ │ ├── keys.pb.go │ │ │ │ ├── privkey.go │ │ │ │ ├── privkey_internal_test.go │ │ │ │ ├── pubkey.go │ │ │ │ └── pubkey_internal_test.go │ │ ├── ledger │ │ │ ├── amino.go │ │ │ ├── encode_test.go │ │ │ ├── ledger_mock.go │ │ │ ├── ledger_notavail.go │ │ │ ├── ledger_real.go │ │ │ ├── ledger_secp256k1.go │ │ │ └── ledger_test.go │ │ ├── types │ │ │ ├── compact_bit_array.go │ │ │ ├── compact_bit_array_test.go │ │ │ ├── multisig.pb.go │ │ │ ├── multisig │ │ │ │ ├── multisignature.go │ │ │ │ └── pubkey.go │ │ │ └── types.go │ │ └── xsalsa20symmetric │ │ │ ├── symmetric.go │ │ │ └── symmetric_test.go │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── conv │ │ │ ├── doc.go │ │ │ ├── string.go │ │ │ └── string_test.go │ │ ├── db │ │ │ └── iterator_adapter.go │ │ └── util.go │ ├── justfile │ ├── proto │ │ ├── README.md │ │ ├── amino │ │ │ └── amino.proto │ │ ├── buf.gen.gogo.yaml │ │ ├── buf.gen.pulsar.yaml │ │ ├── buf.gen.swagger.yaml │ │ ├── buf.lock │ │ ├── buf.md │ │ ├── buf.yaml │ │ ├── cosmos │ │ │ ├── app │ │ │ │ ├── runtime │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── config.proto │ │ │ │ │ ├── module.proto │ │ │ │ │ └── query.proto │ │ │ ├── auth │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── auth.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── authz │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authz.proto │ │ │ │ │ ├── event.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── autocli │ │ │ │ └── v1 │ │ │ │ │ ├── options.proto │ │ │ │ │ └── query.proto │ │ │ ├── bank │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authz.proto │ │ │ │ │ ├── bank.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── base │ │ │ │ ├── abci │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── abci.proto │ │ │ │ ├── kv │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── kv.proto │ │ │ │ ├── node │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── query.proto │ │ │ │ ├── query │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── pagination.proto │ │ │ │ ├── reflection │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ └── reflection.proto │ │ │ │ │ └── v2alpha1 │ │ │ │ │ │ └── reflection.proto │ │ │ │ ├── snapshots │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── snapshot.proto │ │ │ │ ├── store │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── commit_info.proto │ │ │ │ │ │ └── listening.proto │ │ │ │ ├── tendermint │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── query.proto │ │ │ │ │ │ └── types.proto │ │ │ │ └── v1beta1 │ │ │ │ │ └── coin.proto │ │ │ ├── capability │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── capability.proto │ │ │ │ │ └── genesis.proto │ │ │ ├── consensus │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1 │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── crisis │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis.proto │ │ │ │ │ └── tx.proto │ │ │ ├── crypto │ │ │ │ ├── ed25519 │ │ │ │ │ └── keys.proto │ │ │ │ ├── hd │ │ │ │ │ └── v1 │ │ │ │ │ │ └── hd.proto │ │ │ │ ├── keyring │ │ │ │ │ └── v1 │ │ │ │ │ │ └── record.proto │ │ │ │ ├── multisig │ │ │ │ │ ├── keys.proto │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── multisig.proto │ │ │ │ ├── secp256k1 │ │ │ │ │ └── keys.proto │ │ │ │ └── secp256r1 │ │ │ │ │ └── keys.proto │ │ │ ├── distribution │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── distribution.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── evidence │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── evidence.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── feegrant │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── feegrant.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── genutil │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ └── genesis.proto │ │ │ ├── gov │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ ├── v1 │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── gov.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── gov.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── group │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1 │ │ │ │ │ ├── events.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ ├── tx.proto │ │ │ │ │ └── types.proto │ │ │ ├── mint │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── mint.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── msg │ │ │ │ └── v1 │ │ │ │ │ └── msg.proto │ │ │ ├── params │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── params.proto │ │ │ │ │ └── query.proto │ │ │ ├── query │ │ │ │ └── v1 │ │ │ │ │ └── query.proto │ │ │ ├── reflection │ │ │ │ └── v1 │ │ │ │ │ └── reflection.proto │ │ │ ├── slashing │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ ├── slashing.proto │ │ │ │ │ └── tx.proto │ │ │ ├── staking │ │ │ │ ├── module │ │ │ │ │ └── v1 │ │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authz.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ ├── staking.proto │ │ │ │ │ └── tx.proto │ │ │ ├── tx │ │ │ │ ├── config │ │ │ │ │ └── v1 │ │ │ │ │ │ └── config.proto │ │ │ │ ├── signing │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── signing.proto │ │ │ │ └── v1beta1 │ │ │ │ │ ├── service.proto │ │ │ │ │ └── tx.proto │ │ │ └── upgrade │ │ │ │ ├── module │ │ │ │ └── v1 │ │ │ │ │ └── module.proto │ │ │ │ └── v1beta1 │ │ │ │ ├── query.proto │ │ │ │ ├── tx.proto │ │ │ │ └── upgrade.proto │ │ └── tendermint │ │ │ ├── abci │ │ │ └── types.proto │ │ │ ├── crypto │ │ │ ├── keys.proto │ │ │ └── proof.proto │ │ │ ├── libs │ │ │ └── bits │ │ │ │ └── types.proto │ │ │ ├── p2p │ │ │ └── types.proto │ │ │ ├── types │ │ │ ├── block.proto │ │ │ ├── evidence.proto │ │ │ ├── params.proto │ │ │ ├── types.proto │ │ │ └── validator.proto │ │ │ └── version │ │ │ └── types.proto │ ├── runtime │ │ ├── app.go │ │ ├── builder.go │ │ ├── module.go │ │ ├── services.go │ │ ├── services │ │ │ ├── app.go │ │ │ ├── autocli.go │ │ │ └── reflection.go │ │ └── types.go │ ├── scripts │ │ ├── README.md │ │ ├── dep-assert.sh │ │ ├── go-mod-tidy-all.sh │ │ ├── go-update-dep-all.sh │ │ ├── linkify_changelog.py │ │ ├── mockgen.sh │ │ ├── protoc-swagger-gen.sh │ │ ├── protocgen-pulsar.sh │ │ ├── protocgen.sh │ │ ├── update-swagger-ui-statik.sh │ │ └── validate-gentxs.sh │ ├── server │ │ ├── README.md │ │ ├── api │ │ │ └── server.go │ │ ├── cmd │ │ │ └── execute.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── toml.go │ │ ├── constructors_test.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── grpc │ │ │ ├── gogoreflection │ │ │ │ ├── doc.go │ │ │ │ ├── fix_registration.go │ │ │ │ ├── fix_registration_test.go │ │ │ │ └── serverreflection.go │ │ │ ├── grpc_web.go │ │ │ ├── grpc_web_test.go │ │ │ ├── reflection │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── reflection.go │ │ │ │ │ ├── reflection.pb.go │ │ │ │ │ └── reflection.pb.gw.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── log │ │ │ └── cmt_logger.go │ │ ├── mock │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── helpers.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ └── tx.go │ │ ├── pruning.go │ │ ├── pruning_test.go │ │ ├── rollback.go │ │ ├── start.go │ │ ├── swagger.go │ │ ├── test_helpers.go │ │ ├── tm_cmds.go │ │ ├── types │ │ │ └── app.go │ │ ├── util.go │ │ └── util_test.go │ ├── snapshots │ │ ├── README.md │ │ ├── chunk.go │ │ ├── chunk_test.go │ │ ├── helpers_test.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ ├── stream.go │ │ └── types │ │ │ ├── convert.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── options.go │ │ │ ├── snapshot.pb.go │ │ │ ├── snapshotter.go │ │ │ └── util.go │ ├── std │ │ ├── codec.go │ │ └── doc.go │ ├── store │ │ ├── cache │ │ │ ├── benchmark_test.go │ │ │ ├── cache.go │ │ │ └── cache_test.go │ │ ├── cachekv │ │ │ ├── bench_helper_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── internal │ │ │ │ ├── btree.go │ │ │ │ ├── btree_test.go │ │ │ │ ├── memiterator.go │ │ │ │ └── mergeiterator.go │ │ │ ├── search_benchmark_test.go │ │ │ ├── search_test.go │ │ │ ├── store.go │ │ │ ├── store_bench_test.go │ │ │ └── store_test.go │ │ ├── cachemulti │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── dbadapter │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── gaskv │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── iavl │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── tree.go │ │ │ └── tree_test.go │ │ ├── internal │ │ │ ├── maps │ │ │ │ ├── bench_test.go │ │ │ │ ├── maps.go │ │ │ │ └── maps_test.go │ │ │ └── proofs │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ ├── create.go │ │ │ │ ├── create_test.go │ │ │ │ └── helpers.go │ │ ├── listenkv │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── mem │ │ │ ├── mem_test.go │ │ │ └── store.go │ │ ├── prefix │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── pruning │ │ │ ├── README.md │ │ │ ├── export_test.go │ │ │ ├── manager.go │ │ │ ├── manager_test.go │ │ │ ├── mock │ │ │ │ └── db_mock.go │ │ │ └── types │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ ├── reexport.go │ │ ├── rootmulti │ │ │ ├── dbadapter.go │ │ │ ├── proof.go │ │ │ ├── proof_test.go │ │ │ ├── snapshot_test.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── store.go │ │ ├── streaming │ │ │ ├── README.md │ │ │ ├── constructor.go │ │ │ ├── constructor_test.go │ │ │ └── file │ │ │ │ ├── README.md │ │ │ │ ├── example_config.toml │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ ├── tracekv │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── transient │ │ │ ├── store.go │ │ │ └── store_test.go │ │ └── types │ │ │ ├── commit_info.go │ │ │ ├── commit_info.pb.go │ │ │ ├── errors.go │ │ │ ├── gas.go │ │ │ ├── gas_test.go │ │ │ ├── iterator.go │ │ │ ├── iterator_test.go │ │ │ ├── listening.go │ │ │ ├── listening.pb.go │ │ │ ├── listening_test.go │ │ │ ├── proof.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── validity.go │ │ │ └── validity_test.go │ ├── telemetry │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ └── wrapper.go │ ├── tests │ │ ├── Makefile │ │ ├── e2e │ │ │ ├── auth │ │ │ │ ├── cli_test.go │ │ │ │ ├── suite.go │ │ │ │ └── vesting │ │ │ │ │ ├── cli_test.go │ │ │ │ │ └── suite.go │ │ │ ├── authz │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ ├── query.go │ │ │ │ └── tx.go │ │ │ ├── bank │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ └── suite.go │ │ │ ├── client │ │ │ │ └── grpc │ │ │ │ │ └── tmservice │ │ │ │ │ └── service_test.go │ │ │ ├── crisis │ │ │ │ ├── cli_test.go │ │ │ │ └── suite.go │ │ │ ├── distribution │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc_query_suite.go │ │ │ │ ├── suite.go │ │ │ │ └── withdraw_all_suite.go │ │ │ ├── evidence │ │ │ │ ├── cli_test.go │ │ │ │ └── suite.go │ │ │ ├── feegrant │ │ │ │ ├── cli_test.go │ │ │ │ └── suite.go │ │ │ ├── genutil │ │ │ │ ├── cli_test.go │ │ │ │ ├── migrate.go │ │ │ │ ├── suite.go │ │ │ │ └── validate_genesis.go │ │ │ ├── gov │ │ │ │ ├── cli_test.go │ │ │ │ ├── deposits.go │ │ │ │ ├── grpc.go │ │ │ │ ├── query.go │ │ │ │ └── tx.go │ │ │ ├── group │ │ │ │ ├── cli_test.go │ │ │ │ ├── query.go │ │ │ │ └── tx.go │ │ │ ├── mint │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ └── suite.go │ │ │ ├── params │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ └── suite.go │ │ │ ├── server │ │ │ │ └── export_test.go │ │ │ ├── slashing │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ └── suite.go │ │ │ ├── staking │ │ │ │ ├── cli_test.go │ │ │ │ ├── grpc.go │ │ │ │ ├── suite.go │ │ │ │ └── test_helpers.go │ │ │ ├── tx │ │ │ │ └── service_test.go │ │ │ └── upgrade │ │ │ │ ├── cli_test.go │ │ │ │ └── suite.go │ │ ├── fixtures │ │ │ └── adr-024-coin-metadata_genesis.json │ │ ├── go.mod │ │ ├── go.sum │ │ └── integration │ │ │ ├── bank │ │ │ └── keeper │ │ │ │ ├── deterministic_test.go │ │ │ │ └── keeper_test.go │ │ │ ├── distribution │ │ │ ├── keeper │ │ │ │ ├── allocation_test.go │ │ │ │ ├── common_test.go │ │ │ │ ├── delegation_test.go │ │ │ │ ├── grpc_query_test.go │ │ │ │ ├── keeper_test.go │ │ │ │ └── msg_server_test.go │ │ │ └── module_test.go │ │ │ ├── evidence │ │ │ └── keeper │ │ │ │ └── infraction_test.go │ │ │ ├── genutil │ │ │ └── gentx_test.go │ │ │ ├── gov │ │ │ ├── common_test.go │ │ │ ├── genesis_test.go │ │ │ ├── keeper │ │ │ │ ├── common_test.go │ │ │ │ ├── grpc_query_test.go │ │ │ │ ├── keeper_test.go │ │ │ │ └── tally_test.go │ │ │ └── module_test.go │ │ │ ├── runtime │ │ │ └── query_test.go │ │ │ ├── slashing │ │ │ └── keeper │ │ │ │ └── keeper_test.go │ │ │ ├── staking │ │ │ └── keeper │ │ │ │ ├── common_test.go │ │ │ │ ├── delegation_test.go │ │ │ │ ├── determinstic_test.go │ │ │ │ ├── genesis_test.go │ │ │ │ ├── grpc_query_test.go │ │ │ │ ├── keeper_test.go │ │ │ │ ├── msg_server_test.go │ │ │ │ ├── params_test.go │ │ │ │ ├── slash_test.go │ │ │ │ ├── unbonding_test.go │ │ │ │ ├── validator_bench_test.go │ │ │ │ └── validator_test.go │ │ │ └── store │ │ │ └── rootmulti │ │ │ └── rollback_test.go │ ├── testutil │ │ ├── account.go │ │ ├── cli │ │ │ ├── cmd.go │ │ │ ├── tm_mocks.go │ │ │ └── tx.go │ │ ├── configurator │ │ │ └── configurator.go │ │ ├── context.go │ │ ├── ioutil.go │ │ ├── ioutil_test.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── list.go │ │ ├── mock │ │ │ ├── account_retriever.go │ │ │ ├── db │ │ │ │ └── types.go │ │ │ ├── grpc_server.go │ │ │ ├── privval.go │ │ │ ├── privval_test.go │ │ │ ├── tendermint_tendermint_libs_log_DB.go │ │ │ ├── tendermint_tm_db_DB.go │ │ │ ├── types_handler.go │ │ │ ├── types_invariant.go │ │ │ ├── types_mock_appmodule.go │ │ │ └── types_module_module.go │ │ ├── network │ │ │ ├── doc.go │ │ │ ├── network.go │ │ │ └── util.go │ │ ├── rest.go │ │ ├── sims │ │ │ ├── address_helpers.go │ │ │ ├── app_helpers.go │ │ │ ├── simulation_helpers.go │ │ │ ├── simulation_helpers_test.go │ │ │ ├── state_helpers.go │ │ │ └── tx_helpers.go │ │ └── testdata │ │ │ ├── README.md │ │ │ ├── animal.go │ │ │ ├── buf.gen.pulsar.yaml │ │ │ ├── buf.gen.yaml │ │ │ ├── buf.lock │ │ │ ├── buf.yaml │ │ │ ├── codec.go │ │ │ ├── grpc_query.go │ │ │ ├── known_values.go │ │ │ ├── msg_server.go │ │ │ ├── query.pb.go │ │ │ ├── table.go │ │ │ ├── testdata.pb.go │ │ │ ├── testpb │ │ │ ├── pulsar_query.go │ │ │ ├── query.proto │ │ │ ├── query.pulsar.go │ │ │ ├── query_grpc.pb.go │ │ │ ├── testdata.proto │ │ │ ├── testdata.pulsar.go │ │ │ ├── tx.proto │ │ │ ├── tx.pulsar.go │ │ │ ├── tx_grpc.pb.go │ │ │ ├── unknonwnproto.proto │ │ │ └── unknonwnproto.pulsar.go │ │ │ ├── tx.go │ │ │ ├── tx.pb.go │ │ │ └── unknonwnproto.pb.go │ ├── tx │ │ ├── go.mod │ │ ├── go.sum │ │ ├── sonar-project.properties │ │ └── textual │ │ │ ├── internal │ │ │ ├── testdata │ │ │ │ ├── README.md │ │ │ │ ├── bytes.json │ │ │ │ ├── coin.json │ │ │ │ ├── coins.json │ │ │ │ ├── decimals.json │ │ │ │ ├── duration.json │ │ │ │ ├── integers.json │ │ │ │ ├── message.json │ │ │ │ ├── string.json │ │ │ │ └── timestamp.json │ │ │ └── testpb │ │ │ │ ├── 1.proto │ │ │ │ ├── 1.pulsar.go │ │ │ │ ├── Makefile │ │ │ │ ├── buf.gen.yaml │ │ │ │ ├── buf.lock │ │ │ │ └── buf.yaml │ │ │ └── valuerenderer │ │ │ ├── bench_test.go │ │ │ ├── bytes.go │ │ │ ├── bytes_test.go │ │ │ ├── coin_test.go │ │ │ ├── coins.go │ │ │ ├── coins_test.go │ │ │ ├── dec.go │ │ │ ├── dec_test.go │ │ │ ├── duration.go │ │ │ ├── duration_test.go │ │ │ ├── int.go │ │ │ ├── int_test.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── protoreflect_list_test.go │ │ │ ├── string.go │ │ │ ├── string_test.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_test.go │ │ │ ├── types.go │ │ │ ├── valuerenderer.go │ │ │ └── valuerenderer_test.go │ ├── types │ │ ├── abci.go │ │ ├── abci.pb.go │ │ ├── address.go │ │ ├── address │ │ │ ├── README.md │ │ │ ├── codec.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── store_key.go │ │ │ └── store_key_test.go │ │ ├── address_race_test.go │ │ ├── address_test.go │ │ ├── bech32 │ │ │ ├── bech32.go │ │ │ ├── bech32_test.go │ │ │ └── legacybech32 │ │ │ │ ├── pk.go │ │ │ │ ├── pk_bench_test.go │ │ │ │ └── pk_test.go │ │ ├── bench_test.go │ │ ├── codec.go │ │ ├── coin.go │ │ ├── coin.pb.go │ │ ├── coin_benchmark_test.go │ │ ├── coin_internal_test.go │ │ ├── coin_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── dec_coin.go │ │ ├── dec_coin_test.go │ │ ├── denom.go │ │ ├── denom_internal_test.go │ │ ├── errors │ │ │ ├── abci.go │ │ │ ├── doc.go │ │ │ └── errors.go │ │ ├── events.go │ │ ├── events_test.go │ │ ├── grpc │ │ │ └── headers.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── invariant.go │ │ ├── invariant_test.go │ │ ├── kv │ │ │ ├── helpers.go │ │ │ ├── kv.go │ │ │ └── kv.pb.go │ │ ├── math.go │ │ ├── mempool │ │ │ ├── mempool.go │ │ │ ├── mempool_test.go │ │ │ ├── noop.go │ │ │ ├── priority_nonce.go │ │ │ ├── priority_nonce_spec.md │ │ │ ├── priority_nonce_test.go │ │ │ ├── sender_nonce.go │ │ │ ├── sender_nonce_property_test.go │ │ │ ├── sender_nonce_test.go │ │ │ └── skip_list_test.go │ │ ├── module │ │ │ ├── configurator.go │ │ │ ├── mock_appmodule_test.go │ │ │ ├── module.go │ │ │ ├── module_int_test.go │ │ │ ├── module_test.go │ │ │ ├── simulation.go │ │ │ └── testutil │ │ │ │ └── codec.go │ │ ├── msgservice │ │ │ ├── msg.pb.go │ │ │ └── msg_service.go │ │ ├── nibiru.go │ │ ├── proto.go │ │ ├── query │ │ │ ├── filtered_pagination.go │ │ │ ├── filtered_pagination_test.go │ │ │ ├── fuzz_test.go │ │ │ ├── pagination.go │ │ │ ├── pagination.pb.go │ │ │ ├── pagination_test.go │ │ │ └── query.pb.go │ │ ├── result.go │ │ ├── result_test.go │ │ ├── router.go │ │ ├── simulation │ │ │ ├── account.go │ │ │ ├── account_test.go │ │ │ ├── config.go │ │ │ ├── rand_util.go │ │ │ ├── rand_util_test.go │ │ │ ├── transition_matrix.go │ │ │ └── types.go │ │ ├── staking.go │ │ ├── staking_test.go │ │ ├── store.go │ │ ├── store_internal_test.go │ │ ├── store_test.go │ │ ├── tx │ │ │ ├── amino │ │ │ │ └── amino.pb.go │ │ │ ├── direct_aux.go │ │ │ ├── direct_aux_test.go │ │ │ ├── ext.go │ │ │ ├── msgs.go │ │ │ ├── service.pb.go │ │ │ ├── service.pb.gw.go │ │ │ ├── signing │ │ │ │ ├── signature.go │ │ │ │ ├── signature_data.go │ │ │ │ └── signing.pb.go │ │ │ ├── tips.go │ │ │ ├── tx.pb.go │ │ │ └── types.go │ │ ├── tx_msg.go │ │ ├── tx_msg_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── version │ │ ├── command.go │ │ ├── version.go │ │ └── version_test.go │ └── x │ │ ├── README.md │ │ ├── auth │ │ ├── README.md │ │ ├── ante │ │ │ ├── ante.go │ │ │ ├── ante_test.go │ │ │ ├── basic.go │ │ │ ├── basic_test.go │ │ │ ├── expected_keepers.go │ │ │ ├── ext.go │ │ │ ├── ext_test.go │ │ │ ├── fee.go │ │ │ ├── fee_test.go │ │ │ ├── feegrant_test.go │ │ │ ├── setup.go │ │ │ ├── setup_test.go │ │ │ ├── sigverify.go │ │ │ ├── sigverify_benchmark_test.go │ │ │ ├── sigverify_test.go │ │ │ ├── testutil │ │ │ │ └── expected_keepers_mocks.go │ │ │ ├── testutil_test.go │ │ │ └── validator_tx_fee.go │ │ ├── autocli.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── broadcast.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── tips.go │ │ │ │ ├── tx_multisign.go │ │ │ │ ├── tx_sign.go │ │ │ │ └── validate_sigs.go │ │ │ ├── testutil │ │ │ │ └── helpers.go │ │ │ ├── tx.go │ │ │ └── tx_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── helpers │ │ │ └── genaccounts.go │ │ ├── keeper │ │ │ ├── account.go │ │ │ ├── bech32_codec.go │ │ │ ├── deterministic_test.go │ │ │ ├── genesis.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_bench_test.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── params.go │ │ │ └── params_test.go │ │ ├── migrations │ │ │ ├── legacytx │ │ │ │ ├── amino_signing.go │ │ │ │ ├── amino_signing_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── config_test.go │ │ │ │ ├── stdsig_test.go │ │ │ │ ├── stdsign.go │ │ │ │ ├── stdsignmsg.go │ │ │ │ ├── stdtx.go │ │ │ │ ├── stdtx_builder.go │ │ │ │ └── stdtx_test.go │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── v3 │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v4 │ │ │ │ ├── migrate.go │ │ │ │ └── migrate_test.go │ │ ├── module.go │ │ ├── module_test.go │ │ ├── posthandler │ │ │ └── post.go │ │ ├── signing │ │ │ ├── handler_map.go │ │ │ ├── handler_map_test.go │ │ │ ├── sig_verifiable_tx.go │ │ │ ├── sign_mode_handler.go │ │ │ ├── verify.go │ │ │ └── verify_test.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ └── expected_keepers_mocks.go │ │ ├── tx │ │ │ ├── README.md │ │ │ ├── aux_test.go │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── config.go │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── config_test.go │ │ │ ├── decoder.go │ │ │ ├── direct.go │ │ │ ├── direct_aux.go │ │ │ ├── direct_aux_test.go │ │ │ ├── direct_test.go │ │ │ ├── encode_decode_test.go │ │ │ ├── encoder.go │ │ │ ├── legacy_amino_json.go │ │ │ ├── legacy_amino_json_test.go │ │ │ ├── mode_handler.go │ │ │ ├── query.go │ │ │ ├── service.go │ │ │ ├── sigs.go │ │ │ ├── sigs_test.go │ │ │ └── testutil │ │ │ │ └── suite.go │ │ ├── types │ │ │ ├── account.go │ │ │ ├── account_retriever.go │ │ │ ├── account_retriever_test.go │ │ │ ├── account_test.go │ │ │ ├── auth.pb.go │ │ │ ├── codec.go │ │ │ ├── credentials.go │ │ │ ├── credentials_test.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_test.go │ │ │ ├── keys.go │ │ │ ├── msgs.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── params_test.go │ │ │ ├── permissions.go │ │ │ ├── permissions_test.go │ │ │ ├── querier.go │ │ │ ├── query.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ └── tx.pb.go │ │ └── vesting │ │ │ ├── README.md │ │ │ ├── client │ │ │ └── cli │ │ │ │ └── tx.go │ │ │ ├── exported │ │ │ └── exported.go │ │ │ ├── module.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── testutil │ │ │ └── expected_keepers_mocks.go │ │ │ └── types │ │ │ ├── codec.go │ │ │ ├── constants.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis_test.go │ │ │ ├── msgs.go │ │ │ ├── period.go │ │ │ ├── test_common.go │ │ │ ├── tx.pb.go │ │ │ ├── vesting.pb.go │ │ │ ├── vesting_account.go │ │ │ └── vesting_account_test.go │ │ ├── authz │ │ ├── README.md │ │ ├── authorization_grant.go │ │ ├── authorization_grant_test.go │ │ ├── authorizations.go │ │ ├── authz.pb.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ │ └── testutil │ │ │ │ └── helpers.go │ │ ├── codec.go │ │ ├── codec │ │ │ ├── cdc.go │ │ │ └── doc.go │ │ ├── errors.go │ │ ├── event.pb.go │ │ ├── expected_keepers.go │ │ ├── generic_authorization.go │ │ ├── generic_authorization_test.go │ │ ├── genesis.go │ │ ├── genesis.pb.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ └── msg_server_test.go │ │ ├── keys.go │ │ ├── migrations │ │ │ └── v2 │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ ├── module │ │ │ ├── abci.go │ │ │ ├── abci_test.go │ │ │ └── module.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── proto_desc.go │ │ ├── query.pb.go │ │ ├── query.pb.gw.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ └── operations_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ ├── bank_helpers.go │ │ │ └── expected_keepers_mocks.go │ │ └── tx.pb.go │ │ ├── bank │ │ ├── README.md │ │ ├── app_test.go │ │ ├── bench_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── invariants.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── msg_service_test.go │ │ │ ├── send.go │ │ │ └── view.go │ │ ├── migrations │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── v3 │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v4 │ │ │ │ ├── gen_state.go │ │ │ │ ├── gen_state_test.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── expected_keepers_mocks.go │ │ │ └── helpers.go │ │ └── types │ │ │ ├── authz.pb.go │ │ │ ├── balance.go │ │ │ ├── balance_test.go │ │ │ ├── bank.pb.go │ │ │ ├── codec.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── metadata.go │ │ │ ├── metadata_test.go │ │ │ ├── msgs.go │ │ │ ├── msgs_test.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── params_test.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── send_authorization.go │ │ │ ├── send_authorization_test.go │ │ │ ├── tx.pb.go │ │ │ └── vesting.go │ │ ├── capability │ │ ├── README.md │ │ ├── capability_test.go │ │ ├── genesis.go │ │ ├── genesis_test.go │ │ ├── keeper │ │ │ ├── keeper.go │ │ │ └── keeper_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ └── genesis_test.go │ │ ├── testutil │ │ │ └── app_config.go │ │ └── types │ │ │ ├── capability.pb.go │ │ │ ├── errors.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── consensus │ │ ├── README.md │ │ ├── exported │ │ │ └── exported.go │ │ ├── keeper │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── msg_server.go │ │ │ └── msg_server_test.go │ │ ├── module.go │ │ ├── testutil │ │ │ ├── expected_keepers_mocks.go │ │ │ └── helpers.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── keys.go │ │ │ ├── msgs.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ └── tx.pb.go │ │ ├── crisis │ │ ├── README.md │ │ ├── abci.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrator.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── params.go │ │ │ └── params_test.go │ │ ├── migrations │ │ │ └── v2 │ │ │ │ ├── migrate.go │ │ │ │ └── migrate_test.go │ │ ├── module.go │ │ ├── testutil │ │ │ └── expected_keepers_mocks.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── keys.go │ │ │ ├── legacy_params.go │ │ │ ├── msgs.go │ │ │ ├── route.go │ │ │ └── tx.pb.go │ │ ├── distribution │ │ ├── README.md │ │ ├── abci.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── query.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ │ ├── common │ │ │ │ ├── common.go │ │ │ │ └── common_test.go │ │ │ └── testutil │ │ │ │ └── helpers.go │ │ ├── doc.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── keeper │ │ │ ├── alias_functions.go │ │ │ ├── allocation.go │ │ │ ├── allocation_test.go │ │ │ ├── common_test.go │ │ │ ├── delegation.go │ │ │ ├── delegation_test.go │ │ │ ├── fee_pool.go │ │ │ ├── genesis.go │ │ │ ├── grpc_query.go │ │ │ ├── hooks.go │ │ │ ├── invariants.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── params.go │ │ │ ├── params_test.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── migrations │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── helpers.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v3 │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── migrate.go │ │ │ │ └── migrate_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ ├── expected_keepers_mocks.go │ │ │ └── staking_helper.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── common_test.go │ │ │ ├── delegator.go │ │ │ ├── distribution.pb.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── fee_pool.go │ │ │ ├── fee_pool_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── keys.go │ │ │ ├── msg.go │ │ │ ├── msg_test.go │ │ │ ├── params.go │ │ │ ├── params_internal_test.go │ │ │ ├── params_legacy.go │ │ │ ├── params_test.go │ │ │ ├── proposal.go │ │ │ ├── querier.go │ │ │ ├── query.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── tx.pb.go │ │ │ └── validator.go │ │ ├── evidence │ │ ├── README.md │ │ ├── abci.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ └── tx.go │ │ │ └── evidence_handler.go │ │ ├── doc.go │ │ ├── exported │ │ │ └── evidence.go │ │ ├── genesis.go │ │ ├── genesis_test.go │ │ ├── keeper │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── infraction.go │ │ │ ├── init_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── msg_server.go │ │ │ └── msg_server_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ └── genesis_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ └── expected_keepers_mocks.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── evidence.go │ │ │ ├── evidence.pb.go │ │ │ ├── evidence_test.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_test.go │ │ │ ├── keys.go │ │ │ ├── msgs.go │ │ │ ├── msgs_test.go │ │ │ ├── params.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── router.go │ │ │ ├── router_test.go │ │ │ └── tx.pb.go │ │ ├── feegrant │ │ ├── README.md │ │ ├── basic_fee.go │ │ ├── basic_fee_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ ├── codec.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── events.go │ │ ├── expected_keepers.go │ │ ├── feegrant.pb.go │ │ ├── fees.go │ │ ├── filtered_fee.go │ │ ├── filtered_fee_test.go │ │ ├── genesis.go │ │ ├── genesis.pb.go │ │ ├── grant.go │ │ ├── grant_test.go │ │ ├── keeper │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ └── msg_server_test.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── migrations │ │ │ └── v2 │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ ├── module │ │ │ ├── abci.go │ │ │ ├── abci_test.go │ │ │ └── module.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── periodic_fee.go │ │ ├── periodic_fee_test.go │ │ ├── query.pb.go │ │ ├── query.pb.gw.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ └── operations_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ └── expected_keepers_mocks.go │ │ └── tx.pb.go │ │ ├── genutil │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── collect.go │ │ │ │ ├── core_genesis_cmd.go │ │ │ │ ├── genaccount.go │ │ │ │ ├── genaccount_test.go │ │ │ │ ├── gentx.go │ │ │ │ ├── gentx_test.go │ │ │ │ ├── init.go │ │ │ │ ├── init_test.go │ │ │ │ ├── migrate.go │ │ │ │ ├── migrate_test.go │ │ │ │ ├── validate_genesis.go │ │ │ │ └── validate_genesis_test.go │ │ │ └── testutil │ │ │ │ └── helpers.go │ │ ├── collect.go │ │ ├── collect_test.go │ │ ├── doc.go │ │ ├── genesis.go │ │ ├── gentx.go │ │ ├── gentx_test.go │ │ ├── migrations │ │ │ ├── v043 │ │ │ │ └── migrate.go │ │ │ ├── v046 │ │ │ │ └── migrate.go │ │ │ └── v047 │ │ │ │ └── migrate.go │ │ ├── module.go │ │ ├── testutil │ │ │ └── expected_keepers_mocks.go │ │ ├── types │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_state.go │ │ │ ├── genesis_state_test.go │ │ │ └── types.go │ │ ├── utils.go │ │ └── utils_test.go │ │ ├── gov │ │ ├── README.md │ │ ├── abci.go │ │ ├── abci_internal_test.go │ │ ├── abci_test.go │ │ ├── autocli.go │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── prompt.go │ │ │ │ ├── prompt_test.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ ├── tx_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── proposal_handler.go │ │ │ ├── testutil │ │ │ │ └── helpers.go │ │ │ └── utils │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ ├── codec │ │ │ ├── cdc.go │ │ │ └── doc.go │ │ ├── common_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── genesis.go │ │ ├── genesis_test.go │ │ ├── keeper │ │ │ ├── common_test.go │ │ │ ├── deposit.go │ │ │ ├── deposit_test.go │ │ │ ├── export_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── hooks_test.go │ │ │ ├── internal_test.go │ │ │ ├── invariants.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── params.go │ │ │ ├── proposal.go │ │ │ ├── proposal_test.go │ │ │ ├── tally.go │ │ │ ├── vote.go │ │ │ └── vote_test.go │ │ ├── migrations │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── v3 │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v4 │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── expected_keepers.go │ │ │ └── expected_keepers_mocks.go │ │ └── types │ │ │ ├── config.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── hooks.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── metadata.go │ │ │ ├── v1 │ │ │ ├── codec.go │ │ │ ├── content.go │ │ │ ├── deposit.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── genesis_test.go │ │ │ ├── gov.pb.go │ │ │ ├── msgs.go │ │ │ ├── msgs_test.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── proposal.go │ │ │ ├── proposals_test.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── tally.go │ │ │ ├── tx.pb.go │ │ │ └── vote.go │ │ │ └── v1beta1 │ │ │ ├── codec.go │ │ │ ├── content.go │ │ │ ├── deposit.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── gov.pb.go │ │ │ ├── msgs.go │ │ │ ├── msgs_test.go │ │ │ ├── params.go │ │ │ ├── proposal.go │ │ │ ├── proposals_test.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── router.go │ │ │ ├── tally.go │ │ │ ├── tx.pb.go │ │ │ └── vote.go │ │ ├── group │ │ ├── README.md │ │ ├── client │ │ │ └── cli │ │ │ │ ├── prompt.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ ├── tx_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ ├── codec.go │ │ ├── codec │ │ │ ├── cdc.go │ │ │ └── doc.go │ │ ├── config.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── math.go │ │ │ └── orm.go │ │ ├── events.pb.go │ │ ├── expected_keepers.go │ │ ├── genesis.go │ │ ├── genesis.pb.go │ │ ├── genesis_test.go │ │ ├── internal │ │ │ ├── math │ │ │ │ ├── dec.go │ │ │ │ └── dec_test.go │ │ │ └── orm │ │ │ │ ├── README.md │ │ │ │ ├── auto_uint64.go │ │ │ │ ├── auto_uint64_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── generators_test.go │ │ │ │ ├── genesis.go │ │ │ │ ├── genesis_test.go │ │ │ │ ├── index.go │ │ │ │ ├── index_property_test.go │ │ │ │ ├── index_test.go │ │ │ │ ├── indexer.go │ │ │ │ ├── indexer_test.go │ │ │ │ ├── iterator.go │ │ │ │ ├── iterator_property_test.go │ │ │ │ ├── iterator_test.go │ │ │ │ ├── key_codec.go │ │ │ │ ├── key_codec_test.go │ │ │ │ ├── orm_scenario_test.go │ │ │ │ ├── primary_key.go │ │ │ │ ├── primary_key_property_test.go │ │ │ │ ├── primary_key_test.go │ │ │ │ ├── sequence.go │ │ │ │ ├── sequence_property_test.go │ │ │ │ ├── sequence_test.go │ │ │ │ ├── table.go │ │ │ │ ├── table_test.go │ │ │ │ ├── testsupport.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── invariants.go │ │ │ ├── invariants_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── proposal_executor.go │ │ │ ├── tally.go │ │ │ └── tally_test.go │ │ ├── keys.go │ │ ├── migrations │ │ │ └── v2 │ │ │ │ ├── gen_state.go │ │ │ │ ├── gen_state_test.go │ │ │ │ ├── migrate.go │ │ │ │ └── migrate_test.go │ │ ├── module │ │ │ ├── abci.go │ │ │ ├── abci_test.go │ │ │ └── module.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── proposal.go │ │ ├── proposal_test.go │ │ ├── query.pb.go │ │ ├── query.pb.gw.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ └── operations_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ ├── expected_keepers.go │ │ │ └── expected_keepers_mocks.go │ │ ├── tx.pb.go │ │ ├── types.go │ │ ├── types.pb.go │ │ ├── types_test.go │ │ └── typesupport.go │ │ ├── mint │ │ ├── README.md │ │ ├── abci.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── query.go │ │ │ │ └── query_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrator.go │ │ │ ├── msg_server.go │ │ │ └── msg_server_test.go │ │ ├── migrations │ │ │ └── v2 │ │ │ │ ├── migrate.go │ │ │ │ └── migrator_test.go │ │ ├── module.go │ │ ├── module_test.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ └── expected_keepers_mocks.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── keys.go │ │ │ ├── mint.pb.go │ │ │ ├── minter.go │ │ │ ├── minter_test.go │ │ │ ├── msgs.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ └── tx.pb.go │ │ ├── params │ │ ├── README.md │ │ ├── client │ │ │ ├── cli │ │ │ │ ├── query.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ │ ├── proposal_handler.go │ │ │ └── utils │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ ├── doc.go │ │ ├── keeper │ │ │ ├── common_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── keeper.go │ │ │ └── keeper_test.go │ │ ├── module.go │ │ ├── proposal_handler.go │ │ ├── proposal_handler_test.go │ │ ├── simulation │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ └── staking_keeper_mock.go │ │ └── types │ │ │ ├── common_test.go │ │ │ ├── consensus_params_legacy.go │ │ │ ├── deref_test.go │ │ │ ├── doc.go │ │ │ ├── keys.go │ │ │ ├── paramset.go │ │ │ ├── proposal │ │ │ ├── codec.go │ │ │ ├── errors.go │ │ │ ├── keys.go │ │ │ ├── params.pb.go │ │ │ ├── proposal.go │ │ │ ├── proposal_test.go │ │ │ ├── query.pb.go │ │ │ └── query.pb.gw.go │ │ │ ├── querier.go │ │ │ ├── subspace.go │ │ │ ├── subspace_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── simulation │ │ ├── client │ │ │ └── cli │ │ │ │ └── flags.go │ │ ├── doc.go │ │ ├── event_stats.go │ │ ├── expected_keepers.go │ │ ├── log.go │ │ ├── mock_tendermint.go │ │ ├── operation.go │ │ ├── params.go │ │ ├── params_test.go │ │ ├── simulate.go │ │ ├── transition_matrix.go │ │ └── util.go │ │ ├── slashing │ │ ├── README.md │ │ ├── abci.go │ │ ├── abci_test.go │ │ ├── app_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── flags.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ └── tx_test.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── init_test.go │ │ ├── keeper │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks_test.go │ │ │ ├── infractions.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── params.go │ │ │ ├── params_test.go │ │ │ ├── signing_info.go │ │ │ ├── signing_info_test.go │ │ │ ├── slash_redelegation_test.go │ │ │ └── unjail.go │ │ ├── migrations │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v3 │ │ │ │ ├── migrate.go │ │ │ │ └── migrator_test.go │ │ ├── module.go │ │ ├── simulation │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ ├── expected_keepers_mocks.go │ │ │ └── params.go │ │ └── types │ │ │ ├── codec.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── keys.go │ │ │ ├── msg.go │ │ │ ├── msg_test.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── signing_info.go │ │ │ ├── slashing.pb.go │ │ │ └── tx.pb.go │ │ ├── staking │ │ ├── README.md │ │ ├── abci.go │ │ ├── app_test.go │ │ ├── bench_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ ├── flags.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tx.go │ │ │ │ ├── tx_test.go │ │ │ │ └── utils.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── genesis.go │ │ ├── genesis_test.go │ │ ├── keeper │ │ │ ├── alias_functions.go │ │ │ ├── delegation.go │ │ │ ├── delegation_test.go │ │ │ ├── genesis.go │ │ │ ├── grpc_query.go │ │ │ ├── grpc_query_test.go │ │ │ ├── historical_info.go │ │ │ ├── historical_info_test.go │ │ │ ├── invariants.go │ │ │ ├── keeper.go │ │ │ ├── keeper_test.go │ │ │ ├── migrations.go │ │ │ ├── msg_server.go │ │ │ ├── msg_server_test.go │ │ │ ├── params.go │ │ │ ├── pool.go │ │ │ ├── power_reduction.go │ │ │ ├── power_reduction_test.go │ │ │ ├── query_utils.go │ │ │ ├── slash.go │ │ │ ├── slash_test.go │ │ │ ├── test_common.go │ │ │ ├── unbonding.go │ │ │ ├── unbonding_test.go │ │ │ ├── val_state_change.go │ │ │ ├── validator.go │ │ │ └── validator_test.go │ │ ├── migrations │ │ │ ├── v1 │ │ │ │ └── types.go │ │ │ ├── v2 │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── v3 │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── v4 │ │ │ │ ├── keys.go │ │ │ │ ├── migrations_test.go │ │ │ │ └── store.go │ │ ├── module.go │ │ ├── module_test.go │ │ ├── simulation │ │ │ ├── common_test.go │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── operations.go │ │ │ ├── operations_test.go │ │ │ ├── proposals.go │ │ │ └── proposals_test.go │ │ ├── testutil │ │ │ ├── app_config.go │ │ │ ├── expected_keepers_mocks.go │ │ │ ├── helpers.go │ │ │ ├── tm.go │ │ │ └── validator.go │ │ └── types │ │ │ ├── authz.go │ │ │ ├── authz.pb.go │ │ │ ├── authz_test.go │ │ │ ├── codec.go │ │ │ ├── commission.go │ │ │ ├── commission_test.go │ │ │ ├── data_test.go │ │ │ ├── delegation.go │ │ │ ├── delegation_test.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── expected_keepers.go │ │ │ ├── exported.go │ │ │ ├── genesis.go │ │ │ ├── genesis.pb.go │ │ │ ├── historical_info.go │ │ │ ├── historical_info_test.go │ │ │ ├── hooks.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── msg.go │ │ │ ├── msg_test.go │ │ │ ├── params.go │ │ │ ├── params_legacy.go │ │ │ ├── params_test.go │ │ │ ├── pool.go │ │ │ ├── querier.go │ │ │ ├── query.pb.go │ │ │ ├── query.pb.gw.go │ │ │ ├── staking.pb.go │ │ │ ├── tx.pb.go │ │ │ ├── validator.go │ │ │ └── validator_test.go │ │ └── upgrade │ │ ├── README.md │ │ ├── abci.go │ │ ├── abci_test.go │ │ ├── client │ │ ├── cli │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── tx.go │ │ │ └── tx_test.go │ │ └── proposal_handler.go │ │ ├── doc.go │ │ ├── exported │ │ └── exported.go │ │ ├── handler.go │ │ ├── keeper │ │ ├── grpc_query.go │ │ ├── grpc_query_test.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ ├── migrations.go │ │ ├── migrations_test.go │ │ ├── msg_server.go │ │ └── msg_server_test.go │ │ ├── module.go │ │ ├── plan │ │ ├── downloader.go │ │ ├── downloader_test.go │ │ ├── info.go │ │ └── info_test.go │ │ └── types │ │ ├── codec.go │ │ ├── handler.go │ │ ├── keys.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── plan.go │ │ ├── plan_test.go │ │ ├── proposal.go │ │ ├── proposal_test.go │ │ ├── querier.go │ │ ├── query.pb.go │ │ ├── query.pb.gw.go │ │ ├── storeloader.go │ │ ├── storeloader_test.go │ │ ├── tx.pb.go │ │ └── upgrade.pb.go └── wasmd │ ├── .codecov.yml │ ├── .dockerignore │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CODING_GUIDELINES.md │ ├── Dockerfile │ ├── EVENTS.md │ ├── INTEGRATION.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── UPGRADING.md │ ├── api_migration.md │ ├── app │ ├── ante.go │ ├── app.go │ ├── app_test.go │ ├── encoding.go │ ├── export.go │ ├── genesis.go │ ├── params │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── proto.go │ │ └── weights.go │ ├── sim_test.go │ ├── test_helpers.go │ ├── test_support.go │ ├── upgrades.go │ └── wasm.go │ ├── benchmarks │ ├── app_test.go │ ├── bench_test.go │ ├── cw20_test.go │ └── testdata │ │ ├── cw1_whitelist.wasm │ │ ├── cw20_base.wasm │ │ ├── download_releases.sh │ │ └── version.txt │ ├── buf.work.yaml │ ├── cmd │ ├── contract_tests │ │ └── main.go │ └── wasmd │ │ ├── main.go │ │ ├── root.go │ │ └── testnet.go │ ├── contrib │ ├── devtools │ │ ├── Makefile │ │ └── README.md │ ├── local │ │ ├── 01-accounts.sh │ │ ├── 02-contracts.sh │ │ ├── 03-grpc-queries.sh │ │ ├── 04-gov.sh │ │ ├── README.md │ │ ├── setup_wasmd.sh │ │ └── start_node.sh │ ├── prometheus │ │ ├── README.md │ │ └── prometheus.yaml │ ├── prototools-docker │ │ ├── Dockerfile │ │ └── README.md │ └── relayer-tests │ │ ├── .gitignore │ │ ├── README.md │ │ ├── configs │ │ └── wasmd │ │ │ ├── chains │ │ │ ├── ibc-0.json │ │ │ └── ibc-1.json │ │ │ └── paths │ │ │ └── demo.json │ │ ├── init_two_chainz_relayer.sh │ │ ├── one_chain.sh │ │ └── test_ibc_transfer.sh │ ├── docker │ ├── run_wasmd.sh │ ├── setup_and_run.sh │ └── setup_wasmd.sh │ ├── docs │ ├── README.md │ └── proto │ │ ├── proto-docs.md │ │ └── protodoc-markdown.tmpl │ ├── go.mod │ ├── go.sum │ ├── proto │ ├── buf.gen.doc.yml │ ├── buf.gen.gogo.yml │ ├── buf.lock │ ├── buf.md │ ├── buf.yaml │ └── cosmwasm │ │ └── wasm │ │ └── v1 │ │ ├── authz.proto │ │ ├── genesis.proto │ │ ├── ibc.proto │ │ ├── query.proto │ │ ├── tx.proto │ │ └── types.proto │ ├── scripts │ ├── README.md │ ├── protoc-swagger-gen.sh │ └── protocgen.sh │ ├── tests │ ├── e2e │ │ ├── README.md │ │ ├── gov_test.go │ │ ├── grants_test.go │ │ ├── group_test.go │ │ ├── ibc_fees_test.go │ │ ├── ica_test.go │ │ ├── reflect_helper.go │ │ └── testdata │ │ │ ├── cw20_base.wasm.gz │ │ │ └── cw20_ics20.wasm.gz │ └── system │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── basic_test.go │ │ ├── cli.go │ │ ├── cli_test.go │ │ ├── fraud_test.go │ │ ├── genesis_io.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main_test.go │ │ ├── permissioned_test.go │ │ ├── rpc_client.go │ │ ├── staking_test.go │ │ ├── system.go │ │ └── testdata │ │ ├── download_releases.sh │ │ ├── hackatom.wasm.gzip │ │ ├── reflect.wasm.gzip │ │ └── version.txt │ └── x │ └── wasm │ ├── Governance.md │ ├── IBC.md │ ├── README.md │ ├── alias.go │ ├── client │ └── cli │ │ ├── gov_tx.go │ │ ├── gov_tx_test.go │ │ ├── new_tx.go │ │ ├── query.go │ │ ├── tx.go │ │ ├── tx_test.go │ │ └── utils.go │ ├── common_test.go │ ├── exported │ └── exported.go │ ├── genesis_test.go │ ├── ibc.go │ ├── ibc_integration_test.go │ ├── ibc_reflect_test.go │ ├── ibc_test.go │ ├── ibctesting │ ├── README.md │ ├── chain.go │ ├── coordinator.go │ ├── endpoint.go │ ├── event_utils.go │ ├── faucet.go │ ├── path.go │ └── wasm.go │ ├── ioutils │ ├── ioutil.go │ ├── ioutil_test.go │ ├── utils.go │ └── utils_test.go │ ├── keeper │ ├── addresses.go │ ├── addresses_test.go │ ├── ante.go │ ├── ante_test.go │ ├── api.go │ ├── authz_policy.go │ ├── authz_policy_test.go │ ├── bench_test.go │ ├── contract_keeper.go │ ├── contract_keeper_test.go │ ├── events.go │ ├── events_test.go │ ├── genesis.go │ ├── genesis_test.go │ ├── handler_plugin.go │ ├── handler_plugin_encoders.go │ ├── handler_plugin_encoders_test.go │ ├── handler_plugin_test.go │ ├── ibc.go │ ├── ibc_test.go │ ├── keeper.go │ ├── keeper_cgo.go │ ├── keeper_no_cgo.go │ ├── keeper_test.go │ ├── metrics.go │ ├── migrations.go │ ├── migrations_integration_test.go │ ├── msg_dispatcher.go │ ├── msg_dispatcher_test.go │ ├── msg_server.go │ ├── msg_server_integration_test.go │ ├── msg_server_test.go │ ├── options.go │ ├── options_test.go │ ├── querier.go │ ├── querier_test.go │ ├── query_plugin_integration_test.go │ ├── query_plugins.go │ ├── query_plugins_test.go │ ├── recurse_test.go │ ├── reflect_test.go │ ├── relay.go │ ├── relay_test.go │ ├── snapshotter.go │ ├── snapshotter_integration_test.go │ ├── staking_test.go │ ├── submsg_test.go │ ├── test_common.go │ ├── test_fuzz.go │ ├── testdata │ │ ├── broken_crc.gzip │ │ ├── burner.wasm │ │ ├── contracts.go │ │ ├── cyberpunk.wasm │ │ ├── download_releases.sh │ │ ├── genesis.json │ │ ├── hackatom.wasm │ │ ├── hackatom.wasm.gzip │ │ ├── ibc_reflect.wasm │ │ ├── ibc_reflect_send.wasm │ │ ├── reflect.wasm │ │ ├── reflect.wasm.v1_0 │ │ ├── reflect_1_1.wasm │ │ ├── staking.wasm │ │ └── version.txt │ └── wasmtesting │ │ ├── extension_mocks.go │ │ ├── gas_register.go │ │ ├── message_router.go │ │ ├── messenger.go │ │ ├── mock_engine.go │ │ ├── mock_keepers.go │ │ ├── msg_dispatcher.go │ │ ├── query_handler.go │ │ └── store.go │ ├── migrations │ ├── v1 │ │ ├── store.go │ │ └── store_test.go │ ├── v2 │ │ ├── store.go │ │ └── store_test.go │ └── v3 │ │ ├── legacy_types.go │ │ ├── store.go │ │ └── store_test.go │ ├── module.go │ ├── module_test.go │ ├── relay_pingpong_test.go │ ├── relay_test.go │ ├── simulation │ ├── genesis.go │ ├── operations.go │ └── proposals.go │ ├── testdata │ └── escrow_0.7.wasm │ └── types │ ├── authz.go │ ├── authz.pb.go │ ├── authz_policy.go │ ├── authz_test.go │ ├── codec.go │ ├── context.go │ ├── errors.go │ ├── errors_test.go │ ├── events.go │ ├── expected_keepers.go │ ├── exported_keepers.go │ ├── feature_flag.go │ ├── gas_register.go │ ├── gas_register_test.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── iavl_range_test.go │ ├── ibc.pb.go │ ├── json_matching.go │ ├── json_matching_test.go │ ├── keys.go │ ├── keys_test.go │ ├── params.go │ ├── params_legacy.go │ ├── params_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── test_fixtures.go │ ├── testdata │ └── reflect.wasm │ ├── tx.go │ ├── tx.pb.go │ ├── tx_test.go │ ├── types.go │ ├── types.pb.go │ ├── types_test.go │ ├── validation.go │ └── wasmer_engine.go ├── justfile ├── passkey-app ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.tsx │ ├── components │ │ ├── Sidebar.tsx │ │ └── Step.tsx │ ├── main.tsx │ ├── passkey │ │ └── webauthn.ts │ ├── styles.css │ ├── types.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.d.ts ├── vite.config.js └── vite.config.ts ├── prettier.config.js ├── proto ├── buf-gen-swagger.ts ├── buf-gen-swagger.yaml ├── buf.gen.gogo.yaml ├── buf.gen.pulsar.yaml ├── buf.gen.py.yaml ├── buf.gen.rs.sh ├── buf.gen.rs.yaml ├── buf.gen.ts.yaml ├── buf.lock ├── buf.yaml ├── bun.lock ├── eth │ ├── evm │ │ ├── module │ │ │ └── module.proto │ │ └── v1 │ │ │ ├── events.proto │ │ │ ├── evm.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ └── types │ │ └── v1 │ │ ├── account.proto │ │ └── indexer.proto ├── nibiru │ ├── devgas │ │ └── v1 │ │ │ ├── devgas.proto │ │ │ ├── event.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── epochs │ │ ├── module │ │ │ └── module.proto │ │ └── v1 │ │ │ ├── event.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── state.proto │ ├── genmsg │ │ └── v1 │ │ │ └── genmsg.proto │ ├── inflation │ │ ├── module │ │ │ └── module.proto │ │ └── v1 │ │ │ ├── event.proto │ │ │ ├── genesis.proto │ │ │ ├── inflation.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── oracle │ │ ├── module │ │ │ └── module.proto │ │ └── v1 │ │ │ ├── event.proto │ │ │ ├── genesis.proto │ │ │ ├── oracle.proto │ │ │ ├── query.proto │ │ │ ├── state.proto │ │ │ └── tx.proto │ ├── sudo │ │ ├── module │ │ │ └── module.proto │ │ └── v1 │ │ │ ├── event.proto │ │ │ ├── query.proto │ │ │ ├── state.proto │ │ │ └── tx.proto │ └── tokenfactory │ │ ├── module │ │ └── module.proto │ │ └── v1 │ │ ├── event.proto │ │ ├── query.proto │ │ ├── state.proto │ │ └── tx.proto ├── package.json └── tsconfig.json ├── sai-trading ├── .gitignore ├── README.md ├── artifacts-lock.toml ├── artifacts │ ├── PerpVaultEvmInterface.json │ ├── build-info.txt │ ├── checksums.txt │ ├── oracle.wasm │ ├── out-wasm-all.txt │ ├── perp.wasm │ ├── vault.wasm │ └── vault_token_minter.wasm ├── bun.lock ├── cmd │ └── trader │ │ └── main.go ├── e2e_deploy.ts ├── go.mod ├── go.sum ├── justfile ├── main.go ├── package.json ├── pnpm-lock.yaml ├── sample_txs │ ├── README.md │ ├── close_trade.json │ ├── init_oracle.json │ ├── init_perp.json │ ├── init_vault.json │ ├── init_vault_token_minter.json │ ├── lp_deposit.json │ ├── open_limit_order.json │ ├── open_trade.json │ ├── out-deploy.txt │ ├── setup_market.json │ ├── setup_prices.json │ ├── signed.json │ ├── trigger_limit_order.json │ └── trigger_stop_loss.json ├── services │ └── evmtrader │ │ ├── config.go │ │ ├── erc20.go │ │ ├── event_parser.go │ │ ├── evm_trader.go │ │ ├── querier.go │ │ ├── trade_builder.go │ │ ├── trade_params.go │ │ ├── transaction.go │ │ └── types.go ├── tsconfig.json └── tutil │ ├── tutil.go │ └── tutil_test.go ├── scripts └── passkey-demo.sh ├── security-reports ├── 2023-05-Nibiru-Salus-Penetration-Testing-Report-V2-脱敏.pdf ├── 2023-07-Nibiru-Zellic-Audit-Report.pdf ├── 2023-09-30-Nibiru-ITN2-Chain-Halt.md └── README.md ├── token-registry ├── CHANGELOG.md ├── README.md ├── cosmos_assetlist.go ├── cosmos_assetlist_test.go ├── document_hash │ └── main.go ├── githubify.go ├── img │ ├── 000_nibiru-evm.png │ ├── 000_nibiru-evm.svg │ ├── 000_nibiru.png │ ├── 000_nibiru.svg │ ├── 001_stnibi-bank.png │ ├── 001_stnibi-evm.png │ ├── 001_stnibi-evm.svg │ ├── 002_usdc-arb.png │ ├── 002_usdc-noble.png │ ├── 002_usdc.png │ ├── 002_usdc.svg │ ├── 003_astrovault-axv-bank.png │ ├── 003_astrovault-axv.png │ ├── 003_astrovault-axv.svg │ ├── 004_astrovault-xnibi.svg │ ├── 005_eth.svg │ ├── 006_usdt.svg │ ├── 007_mim.png │ ├── 007_mim_usdc.png │ ├── 007_susda-avalon.png │ ├── 007_usda-avalon.png │ ├── 008_cbbtc.png │ ├── 009_ubtc.png │ ├── 010_ynethx.svg │ ├── 011_aave.svg │ ├── 012_ada.svg │ ├── 013_apt.svg │ ├── 014_arb.svg │ ├── 015_aster.svg │ ├── 016_avax.svg │ ├── 017_bnb.svg │ ├── 018_bonk.svg │ ├── 019_doge.svg │ ├── 020_ena.svg │ ├── 021_fartcoin.png │ ├── 022_hype.svg │ ├── 023_ip.png │ ├── 024_kaito.svg │ ├── 025_link.svg │ ├── 026_ltc.svg │ ├── 027_mnt.svg │ ├── 028_near.svg │ ├── 029_pengu.png │ ├── 030_pol.svg │ ├── 031_pump.png │ ├── 032_purr.png │ ├── 033_shib.svg │ ├── 034_sol.svg │ ├── 035_sui.svg │ ├── 036_ton.svg │ ├── 037_trump.png │ ├── 038_trx.svg │ ├── 039_usd1.png │ ├── 040_virtual.svg │ ├── 041_xrp.svg │ ├── 042_zec.svg │ └── 043_monad.svg ├── main │ └── main.go ├── nibiru-web-app.png ├── official_bank_coins.json ├── official_erc20s.json ├── official_tokens.go ├── official_tokens_test.go └── token.go └── x ├── README.md ├── bank ├── README.md ├── app_test.go ├── bench_test.go ├── client │ └── cli │ │ ├── query.go │ │ ├── query_test.go │ │ ├── suite_test.go │ │ ├── tx.go │ │ └── tx_test.go ├── exported │ └── exported.go ├── keeper │ ├── genesis.go │ ├── genesis_test.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── invariants.go │ ├── keeper.go │ ├── keeper_test.go │ ├── migrations.go │ ├── msg_server.go │ ├── msg_service_test.go │ ├── nibiru_ext.go │ ├── nibiru_ext_test.go │ ├── send.go │ └── view.go ├── migrations │ ├── v1 │ │ └── types.go │ ├── v2 │ │ ├── json.go │ │ ├── json_test.go │ │ ├── keys.go │ │ ├── store.go │ │ └── store_test.go │ ├── v3 │ │ ├── keys.go │ │ ├── store.go │ │ └── store_test.go │ └── v4 │ │ ├── gen_state.go │ │ ├── gen_state_test.go │ │ ├── store.go │ │ └── store_test.go ├── module.go ├── simulation │ ├── genesis.go │ ├── genesis_test.go │ ├── operations.go │ ├── operations_test.go │ ├── proposals.go │ └── proposals_test.go └── testutil │ ├── expected_keepers_mocks.go │ └── helpers.go ├── collections ├── README.md ├── collections.go ├── collections_test.go ├── examples │ ├── 1.go │ ├── 2.go │ └── 3.go ├── indexed_map.go ├── indexed_map_test.go ├── indexers.go ├── indexers_test.go ├── item.go ├── item_test.go ├── iter.go ├── iter_test.go ├── keys.go ├── keys_pair.go ├── keys_pair_test.go ├── keys_test.go ├── keyset.go ├── keyset_test.go ├── map.go ├── map_test.go ├── sequence.go ├── sequence_test.go ├── utils_test.go ├── value_encoder.go └── value_encoder_test.go ├── devgas └── v1 │ ├── README.md │ ├── ante │ ├── ante.go │ ├── ante_test.go │ └── expected_keepers.go │ ├── client │ └── cli │ │ ├── cli_test.go │ │ ├── query.go │ │ └── tx.go │ ├── exported │ └── exported.go │ ├── genesis.go │ ├── genesis_test.go │ ├── keeper │ ├── feeshare.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── params.go │ ├── store.go │ └── testdata │ │ └── reflect.wasm │ ├── module.go │ ├── module_test.go │ ├── simulation │ └── genesis.go │ └── types │ ├── codec.go │ ├── codec_test.go │ ├── devgas.go │ ├── devgas.pb.go │ ├── devgas_test.go │ ├── errors.go │ ├── event.pb.go │ ├── expected_keepers.go │ ├── export.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── msg.go │ ├── msg_test.go │ ├── params.go │ ├── params_legacy.go │ ├── params_legacy_test.go │ ├── params_test.go │ ├── query.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── tx.pb.gw.go ├── epochs ├── README.md ├── abci.go ├── abci_test.go ├── client │ ├── cli │ │ ├── query.go │ │ └── tx.go │ └── rest │ │ └── rest.go ├── genesis.go ├── genesis_test.go ├── integration │ └── action │ │ └── epoch.go ├── keeper │ ├── epoch.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── hooks.go │ ├── hooks_test.go │ ├── keeper.go │ └── keeper_test.go ├── module.go ├── simulation │ └── genesis.go └── types │ ├── epochinfo.go │ ├── epochinfo_test.go │ ├── errors.go │ ├── event.pb.go │ ├── export.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── hooks.go │ ├── hooks_test.go │ ├── identifier.go │ ├── identifier_test.go │ ├── keys.go │ ├── query.pb.go │ ├── query.pb.gw.go │ └── state.pb.go ├── evm ├── README.md ├── chain_config.go ├── chain_config_test.go ├── cli │ ├── cli_setup_test.go │ ├── cli_test.go │ ├── query.go │ └── tx.go ├── codec.go ├── const.go ├── deps.go ├── embeds │ ├── .gitignore │ ├── HACKING.md │ ├── README.md │ ├── abi │ │ ├── ChainLinkAggregatorV3Interface.json │ │ ├── ERC20.json │ │ ├── ERC20Minter.json │ │ ├── ERC20MinterWithMetadataUpdates.json │ │ ├── ErisEvm.json │ │ ├── IFunToken.json │ │ ├── INibiruEvm.json │ │ ├── IOracle.json │ │ ├── IWasm.json │ │ ├── NibiruOracleChainLinkLike.json │ │ ├── NibiruOracleChainLinkMulti.json │ │ ├── SafeDelegateCall.json │ │ └── WNIBI.json │ ├── artifacts │ │ └── contracts │ │ │ ├── ERC20Minter.sol │ │ │ └── ERC20Minter.json │ │ │ ├── ERC20MinterWithMetadataUpdates.sol │ │ │ └── ERC20MinterWithMetadataUpdates.json │ │ │ ├── ErisEvm.sol │ │ │ ├── ErisEvm.json │ │ │ └── SafeDelegateCall.json │ │ │ ├── IFunToken.sol │ │ │ └── IFunToken.json │ │ │ ├── IOracle.sol │ │ │ ├── ChainLinkAggregatorV3Interface.json │ │ │ └── IOracle.json │ │ │ ├── MKR.sol │ │ │ ├── DSAuth.json │ │ │ ├── DSAuthEvents.json │ │ │ ├── DSAuthority.json │ │ │ ├── DSMath.json │ │ │ ├── DSNote.json │ │ │ ├── DSStop.json │ │ │ ├── DSThing.json │ │ │ ├── DSToken.json │ │ │ ├── DSTokenBase.json │ │ │ └── ERC20.json │ │ │ ├── NibiruEvmUtils.sol │ │ │ └── INibiruEvm.json │ │ │ ├── NibiruOracleChainLinkLike.sol │ │ │ └── NibiruOracleChainLinkLike.json │ │ │ ├── NibiruOracleChainLinkLikeMulti.sol │ │ │ └── NibiruOracleChainLinkMulti.json │ │ │ ├── TestDirtyStateAttack4.sol │ │ │ └── TestDirtyStateAttack4.json │ │ │ ├── TestDirtyStateAttack5.sol │ │ │ └── TestDirtyStateAttack5.json │ │ │ ├── TestERC20.sol │ │ │ └── TestERC20.json │ │ │ ├── TestERC20MaliciousName.sol │ │ │ └── TestERC20MaliciousName.json │ │ │ ├── TestERC20MaliciousTransfer.sol │ │ │ └── TestERC20MaliciousTransfer.json │ │ │ ├── TestERC20TransferThenPrecompileSend.sol │ │ │ └── TestERC20TransferThenPrecompileSend.json │ │ │ ├── TestERC20TransferWithFee.sol │ │ │ └── TestERC20TransferWithFee.json │ │ │ ├── TestFunTokenPrecompileLocalGas.sol │ │ │ └── TestFunTokenPrecompileLocalGas.json │ │ │ ├── TestInfiniteRecursionERC20.sol │ │ │ └── TestInfiniteRecursionERC20.json │ │ │ ├── TestNativeSendThenPrecompileSend.sol │ │ │ └── TestNativeSendThenPrecompileSend.json │ │ │ ├── TestPrecompileSelfCallRevert.sol │ │ │ └── TestPrecompileSelfCallRevert.json │ │ │ ├── TestPrecompileSendToBankThenERC20Transfer.sol │ │ │ └── TestPrecompileSendToBankThenERC20Transfer.json │ │ │ ├── TestRandom.sol │ │ │ └── TestRandom.json │ │ │ ├── WNIBI.sol │ │ │ └── WNIBI.json │ │ │ └── Wasm.sol │ │ │ └── IWasm.json │ ├── contracts │ │ ├── ERC20Minter.sol │ │ ├── ERC20MinterWithMetadataUpdates.sol │ │ ├── ErisEvm.sol │ │ ├── IFunToken.sol │ │ ├── IOracle.sol │ │ ├── MKR.sol │ │ ├── NibiruEvmUtils.sol │ │ ├── NibiruOracleChainLinkLike.sol │ │ ├── NibiruOracleChainLinkLikeMulti.sol │ │ ├── TestDirtyStateAttack4.sol │ │ ├── TestDirtyStateAttack5.sol │ │ ├── TestERC20.sol │ │ ├── TestERC20MaliciousName.sol │ │ ├── TestERC20MaliciousTransfer.sol │ │ ├── TestERC20TransferThenPrecompileSend.sol │ │ ├── TestERC20TransferWithFee.sol │ │ ├── TestFunTokenPrecompileLocalGas.sol │ │ ├── TestInfiniteRecursionERC20.sol │ │ ├── TestNativeSendThenPrecompileSend.sol │ │ ├── TestPrecompileSelfCallRevert.sol │ │ ├── TestPrecompileSendToBankThenERC20Transfer.sol │ │ ├── TestRandom.sol │ │ ├── WNIBI.sol │ │ └── Wasm.sol │ ├── embeds.go │ ├── embeds_test.go │ ├── gen-abi │ │ └── main.go │ ├── hardhat.config.js │ ├── package.json │ └── yarn.lock ├── errors.go ├── events.go ├── events.pb.go ├── evm.go ├── evm.pb.go ├── evm_test.go ├── evmante │ ├── all_evmante.go │ ├── all_evmante_test.go │ ├── evmante_can_transfer.go │ ├── evmante_can_transfer_test.go │ ├── evmante_emit_event.go │ ├── evmante_emit_event_test.go │ ├── evmante_gas_consume.go │ ├── evmante_gas_consume_test.go │ ├── evmante_increment_sender_seq.go │ ├── evmante_increment_sender_seq_test.go │ ├── evmante_mempool_fees.go │ ├── evmante_mempool_fees_test.go │ ├── evmante_sigverify.go │ ├── evmante_sigverify_test.go │ ├── evmante_validate_basic.go │ ├── evmante_validate_basic_test.go │ └── suite_test.go ├── evmmodule │ ├── module.go │ └── module_test.go ├── evmstate │ ├── bank_extension_test.go │ ├── call_contract.go │ ├── doc.go │ ├── erc20.go │ ├── erc20_test.go │ ├── erc20_unit_test.go │ ├── evm_state.go │ ├── funtoken_from_coin.go │ ├── funtoken_from_coin_test.go │ ├── funtoken_from_erc20.go │ ├── funtoken_from_erc20_test.go │ ├── funtoken_state.go │ ├── funtoken_state_test.go │ ├── gas_fees.go │ ├── gas_fees_test.go │ ├── genesis.go │ ├── genesis_test.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── hooks.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_convert_coin_to_evm.go │ ├── msg_convert_coin_to_evm_test.go │ ├── msg_convert_evm_to_coin.go │ ├── msg_convert_evm_to_coin_test.go │ ├── msg_ethereum_tx_test.go │ ├── msg_server.go │ ├── msg_update_params.go │ ├── random_test.go │ ├── sdb_access_list.go │ ├── sdb_config.go │ ├── sdb_debug.go │ ├── sdb_ext_keeper.go │ ├── sdb_ext_keeper_test.go │ ├── sdb_interfaces.go │ ├── sdb_internal_test.go │ ├── sdb_journal_test.go │ ├── sdb_state_object.go │ ├── sdb_statedb.go │ ├── sdb_statedb_test.go │ └── vm_config.go ├── evmtest │ ├── erc20.go │ ├── eth.go │ ├── eth_test.go │ ├── evmante.go │ ├── log_lite.go │ ├── signer.go │ ├── smart_contract.go │ ├── smart_contract_test.go │ ├── test_deps.go │ ├── tx.go │ ├── tx_test.go │ └── upgrades.go ├── genesis.go ├── genesis.pb.go ├── genesis_test.go ├── json_tx_args.go ├── json_tx_args_test.go ├── logs.go ├── logs_test.go ├── msg.go ├── msg_test.go ├── params.go ├── precompile │ ├── README.md │ ├── errors.go │ ├── funtoken.go │ ├── funtoken_test.go │ ├── nibiru_evm_utils.go │ ├── nibiru_evm_utils_test.go │ ├── oracle.go │ ├── oracle_test.go │ ├── p256.go │ ├── p256_test.go │ ├── precompile.go │ ├── test │ │ ├── bank_transfer.wasm │ │ ├── counter.wasm │ │ ├── export.go │ │ ├── hello_world_counter.wasm │ │ ├── infinite_loop.wasm │ │ ├── staking.wasm │ │ └── wasteful_gas.wasm │ ├── wasm.go │ ├── wasm_parse.go │ └── wasm_test.go ├── query.go ├── query.pb.go ├── query.pb.gw.go ├── state.go ├── state_test.go ├── tx.go ├── tx.pb.go ├── tx.pb.gw.go ├── tx_data.go ├── tx_data_access_list.go ├── tx_data_access_list_test.go ├── tx_data_dynamic_fee.go ├── tx_data_dynamic_fee_test.go ├── tx_data_legacy.go ├── tx_data_legacy_test.go ├── tx_data_test.go ├── tx_test.go └── vmtracer.go ├── genmsg ├── genesis.go ├── genesis_test.go ├── integration_test.go ├── module.go └── v1 │ └── genmsg.pb.go ├── inflation ├── client │ └── cli │ │ ├── query.go │ │ └── tx.go ├── doc.go ├── genesis.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── hooks.go │ ├── hooks_test.go │ ├── inflation.go │ ├── inflation_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── params.go │ ├── sudo.go │ └── sudo_test.go ├── module.go ├── simulation │ └── genesis.go └── types │ ├── codec.go │ ├── event.pb.go │ ├── events.go │ ├── export.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── inflation.pb.go │ ├── inflation_calculation.go │ ├── inflation_calculation_test.go │ ├── interfaces.go │ ├── keys.go │ ├── msgs.go │ ├── params.go │ ├── params_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── tx.pb.gw.go ├── nutil ├── README.md ├── address.go ├── address_test.go ├── asset │ ├── pair.go │ ├── pair_test.go │ └── registry.go ├── big_u256.go ├── big_u256_test.go ├── codec.go ├── constants.go ├── dec.go ├── dec_test.go ├── denoms │ └── denoms.go ├── error.go ├── error_test.go ├── ewma │ ├── ewma.go │ ├── ewma_test.go │ └── testdata │ │ └── ewma.csv ├── flags │ └── flags.go ├── nmath │ └── nmath.go ├── omap │ ├── impl.go │ ├── omap.go │ └── omap_test.go ├── paginate.go ├── paginate_test.go ├── set │ ├── set.go │ └── set_test.go ├── testutil │ ├── README.md │ ├── action │ │ ├── account.go │ │ ├── block.go │ │ └── testcase.go │ ├── assertion │ │ ├── balances.go │ │ └── gas.go │ ├── cases.go │ ├── cases_test.go │ ├── client_ctx.go │ ├── const.go │ ├── events.go │ ├── events_test.go │ ├── genesis │ │ ├── genesis.go │ │ └── sudo_genesis.go │ ├── log.go │ ├── nullify.go │ ├── path.go │ ├── sample.go │ ├── testapp │ │ └── testapp.go │ ├── testnetwork │ │ ├── doc.go │ │ ├── exec_query_cmd.go │ │ ├── logger.go │ │ ├── network.go │ │ ├── network_config.go │ │ ├── network_test.go │ │ ├── start_node.go │ │ ├── tx.go │ │ ├── tx_test.go │ │ ├── util.go │ │ └── validator_node.go │ └── testutil_test.go └── unsafe_conv_string.go ├── oracle ├── README.md ├── abci.go ├── abci_test.go ├── cli │ ├── gen_pricefeeder_delegation.go │ ├── gen_pricefeeder_delegation_test.go │ ├── query.go │ └── tx.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── app_test.go │ ├── ballot.go │ ├── ballot_test.go │ ├── edit_params_test.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── hooks.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── params.go │ ├── params_test.go │ ├── reward.go │ ├── reward_test.go │ ├── slash.go │ ├── slash_test.go │ ├── test_utils.go │ ├── update_exchange_rates.go │ ├── update_exchange_rates_test.go │ ├── whitelist.go │ └── whitelist_test.go ├── module.go ├── simulation │ ├── decoder.go │ ├── decoder_test.go │ ├── genesis.go │ └── operations.go └── types │ ├── ballot.go │ ├── ballot_test.go │ ├── codec.go │ ├── core.go │ ├── errors.go │ ├── event.pb.go │ ├── expected_keeper.go │ ├── export.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── hash.go │ ├── hash_test.go │ ├── keys.go │ ├── msgs.go │ ├── msgs_test.go │ ├── oracle.pb.go │ ├── params.go │ ├── params_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── state.pb.go │ ├── test_utils.go │ ├── tx.pb.go │ ├── tx.pb.gw.go │ ├── vote.go │ └── vote_test.go ├── sudo ├── actions.go ├── cli │ ├── cli.go │ ├── cli_setup_test.go │ ├── cli_test.go │ ├── gen_root.go │ └── gen_root_test.go ├── codec.go ├── doc.go ├── errors.go ├── event.pb.go ├── export.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── genesis_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── querier.go │ └── querier_test.go ├── keys.go ├── msgs.go ├── msgs_test.go ├── query.pb.go ├── query.pb.gw.go ├── simulation │ └── genesis.go ├── state.go ├── state.pb.go ├── sudomodule │ ├── module.go │ └── module_test.go ├── tx.pb.go └── tx.pb.gw.go └── tokenfactory ├── cli ├── cli_test.go ├── query.go └── tx.go ├── fixture ├── fixture.go └── nibi_stargate.wasm ├── keeper ├── genesis.go ├── genesis_test.go ├── grpc_query.go ├── grpc_query_test.go ├── keeper.go ├── keeper_test.go ├── msg_server.go ├── msg_server_test.go ├── store.go ├── store_test.go └── wasm_test.go ├── module.go ├── module_test.go ├── simulation └── genesis.go └── types ├── codec.go ├── codec_test.go ├── errors.go ├── event.pb.go ├── expected_keepers.go ├── export.go ├── genesis.go ├── keys.go ├── query.pb.go ├── query.pb.gw.go ├── state.go ├── state.pb.go ├── state_test.go ├── tx.pb.go ├── tx_msgs.go └── tx_msgs_test.go /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.cursorignore -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gemini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.gemini/README.md -------------------------------------------------------------------------------- /.gemini/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.gemini/config.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @NibiruChain/backend -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue-labeler-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/issue-labeler-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-evm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/e2e-evm.yml -------------------------------------------------------------------------------- /.github/workflows/gh-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/gh-issues.yml -------------------------------------------------------------------------------- /.github/workflows/proto-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/proto-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-heavy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/test-heavy.yml -------------------------------------------------------------------------------- /.github/workflows/test-sims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/test-sims.yml -------------------------------------------------------------------------------- /.github/workflows/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.github/workflows/test-unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHAOSNET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/CHAOSNET.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LEGACY-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/LEGACY-CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /api/eth/evm/v1/events.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/events.pulsar.go -------------------------------------------------------------------------------- /api/eth/evm/v1/evm.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/evm.pulsar.go -------------------------------------------------------------------------------- /api/eth/evm/v1/genesis.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/genesis.pulsar.go -------------------------------------------------------------------------------- /api/eth/evm/v1/query.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/query.pulsar.go -------------------------------------------------------------------------------- /api/eth/evm/v1/query_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/query_grpc.pb.go -------------------------------------------------------------------------------- /api/eth/evm/v1/tx.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/tx.pulsar.go -------------------------------------------------------------------------------- /api/eth/evm/v1/tx_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/evm/v1/tx_grpc.pb.go -------------------------------------------------------------------------------- /api/eth/types/v1/account.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/types/v1/account.pulsar.go -------------------------------------------------------------------------------- /api/eth/types/v1/indexer.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/eth/types/v1/indexer.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/devgas/v1/tx.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/devgas/v1/tx.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/devgas/v1/tx_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/devgas/v1/tx_grpc.pb.go -------------------------------------------------------------------------------- /api/nibiru/oracle/v1/tx.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/oracle/v1/tx.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/oracle/v1/tx_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/oracle/v1/tx_grpc.pb.go -------------------------------------------------------------------------------- /api/nibiru/sudo/v1/event.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/sudo/v1/event.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/sudo/v1/query.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/sudo/v1/query.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/sudo/v1/state.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/sudo/v1/state.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/sudo/v1/tx.pulsar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/sudo/v1/tx.pulsar.go -------------------------------------------------------------------------------- /api/nibiru/sudo/v1/tx_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/api/nibiru/sudo/v1/tx_grpc.pb.go -------------------------------------------------------------------------------- /app/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante.go -------------------------------------------------------------------------------- /app/ante/auth_guard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/auth_guard_test.go -------------------------------------------------------------------------------- /app/ante/authz_guard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/authz_guard.go -------------------------------------------------------------------------------- /app/ante/commission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/commission.go -------------------------------------------------------------------------------- /app/ante/commission_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/commission_test.go -------------------------------------------------------------------------------- /app/ante/deduct_fee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/deduct_fee.go -------------------------------------------------------------------------------- /app/ante/deduct_fee_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/deduct_fee_test.go -------------------------------------------------------------------------------- /app/ante/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/errors.go -------------------------------------------------------------------------------- /app/ante/fixed_gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/fixed_gas.go -------------------------------------------------------------------------------- /app/ante/fixed_gas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/fixed_gas_test.go -------------------------------------------------------------------------------- /app/ante/gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/gas.go -------------------------------------------------------------------------------- /app/ante/gas_wanted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/gas_wanted.go -------------------------------------------------------------------------------- /app/ante/gas_wanted_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/gas_wanted_test.go -------------------------------------------------------------------------------- /app/ante/handler_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/handler_opts.go -------------------------------------------------------------------------------- /app/ante/sigverify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/sigverify.go -------------------------------------------------------------------------------- /app/ante/testutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ante/testutil_test.go -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/app.go -------------------------------------------------------------------------------- /app/app_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/app_config.go -------------------------------------------------------------------------------- /app/appconst/appconst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/appconst/appconst.go -------------------------------------------------------------------------------- /app/appconst/appconst_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/appconst/appconst_test.go -------------------------------------------------------------------------------- /app/appconst/consensus_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/appconst/consensus_config.go -------------------------------------------------------------------------------- /app/appconst/pebbledb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/appconst/pebbledb.go -------------------------------------------------------------------------------- /app/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/encoding.go -------------------------------------------------------------------------------- /app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/export.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/ibc_test.go -------------------------------------------------------------------------------- /app/keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/keepers.go -------------------------------------------------------------------------------- /app/keepers/all_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/keepers/all_keepers.go -------------------------------------------------------------------------------- /app/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/modules.go -------------------------------------------------------------------------------- /app/modules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/modules_test.go -------------------------------------------------------------------------------- /app/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/prefix.go -------------------------------------------------------------------------------- /app/server/config/server_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/config/server_config.go -------------------------------------------------------------------------------- /app/server/evm_json_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/evm_json_rpc.go -------------------------------------------------------------------------------- /app/server/evm_json_rpc_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/evm_json_rpc_get.html -------------------------------------------------------------------------------- /app/server/evm_tx_indexer_cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/evm_tx_indexer_cli.go -------------------------------------------------------------------------------- /app/server/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/flags.go -------------------------------------------------------------------------------- /app/server/geth_log_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/geth_log_handler.go -------------------------------------------------------------------------------- /app/server/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/start.go -------------------------------------------------------------------------------- /app/server/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/server/util.go -------------------------------------------------------------------------------- /app/sim/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/sim/config.go -------------------------------------------------------------------------------- /app/simapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/simapp/README.md -------------------------------------------------------------------------------- /app/simapp/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/simapp/params.json -------------------------------------------------------------------------------- /app/simapp/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/simapp/sim_test.go -------------------------------------------------------------------------------- /app/simapp/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/simapp/state_test.go -------------------------------------------------------------------------------- /app/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/all_upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/all_upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v1.go -------------------------------------------------------------------------------- /app/upgrades/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v2.go -------------------------------------------------------------------------------- /app/upgrades/v2_5_0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v2_5_0.go -------------------------------------------------------------------------------- /app/upgrades/v2_5_0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v2_5_0_test.go -------------------------------------------------------------------------------- /app/upgrades/v2_7_0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v2_7_0.go -------------------------------------------------------------------------------- /app/upgrades/v2_7_0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/upgrades/v2_7_0_test.go -------------------------------------------------------------------------------- /app/wasmext/stargate_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/wasmext/stargate_query.go -------------------------------------------------------------------------------- /app/wasmext/stargate_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/wasmext/stargate_query_test.go -------------------------------------------------------------------------------- /app/wasmext/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/wasmext/wasm.go -------------------------------------------------------------------------------- /app/wasmext/wasmext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/app/wasmext/wasmext_test.go -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cliff.toml -------------------------------------------------------------------------------- /cmd/nibid/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/base64.go -------------------------------------------------------------------------------- /cmd/nibid/decode_base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/decode_base64.go -------------------------------------------------------------------------------- /cmd/nibid/decode_base64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/decode_base64_test.go -------------------------------------------------------------------------------- /cmd/nibid/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/init.go -------------------------------------------------------------------------------- /cmd/nibid/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/main.go -------------------------------------------------------------------------------- /cmd/nibid/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/root.go -------------------------------------------------------------------------------- /cmd/nibid/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/root_test.go -------------------------------------------------------------------------------- /cmd/nibid/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/testnet.go -------------------------------------------------------------------------------- /cmd/nibid/testnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/cmd/nibid/testnet_test.go -------------------------------------------------------------------------------- /contrib/bashlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/bashlib.sh -------------------------------------------------------------------------------- /contrib/docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/docker-compose/README.md -------------------------------------------------------------------------------- /contrib/make/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/build.mk -------------------------------------------------------------------------------- /contrib/make/chaosnet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/chaosnet.mk -------------------------------------------------------------------------------- /contrib/make/format.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/format.mk -------------------------------------------------------------------------------- /contrib/make/lint.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/lint.mk -------------------------------------------------------------------------------- /contrib/make/localnet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/localnet.mk -------------------------------------------------------------------------------- /contrib/make/mock.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/mock.mk -------------------------------------------------------------------------------- /contrib/make/proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/proto.mk -------------------------------------------------------------------------------- /contrib/make/simulation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/simulation.mk -------------------------------------------------------------------------------- /contrib/make/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/make/test.mk -------------------------------------------------------------------------------- /contrib/scripts/chaosnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/scripts/chaosnet.sh -------------------------------------------------------------------------------- /contrib/scripts/docker-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/scripts/docker-wrapper.sh -------------------------------------------------------------------------------- /contrib/scripts/feat-perp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/scripts/feat-perp.sh -------------------------------------------------------------------------------- /contrib/scripts/localnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/scripts/localnet.sh -------------------------------------------------------------------------------- /contrib/scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/scripts/protocgen.sh -------------------------------------------------------------------------------- /contrib/templates/bdjuno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/templates/bdjuno.yaml -------------------------------------------------------------------------------- /contrib/templates/hermes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/contrib/templates/hermes.toml -------------------------------------------------------------------------------- /eth/account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/account.pb.go -------------------------------------------------------------------------------- /eth/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/assert.go -------------------------------------------------------------------------------- /eth/assert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/assert_test.go -------------------------------------------------------------------------------- /eth/chain_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/chain_id.go -------------------------------------------------------------------------------- /eth/chain_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/chain_id_test.go -------------------------------------------------------------------------------- /eth/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/codec.go -------------------------------------------------------------------------------- /eth/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/codec_test.go -------------------------------------------------------------------------------- /eth/crypto/codec/amino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/codec/amino.go -------------------------------------------------------------------------------- /eth/crypto/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/codec/codec.go -------------------------------------------------------------------------------- /eth/crypto/ethsecp256k1/keys.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/ethsecp256k1/keys.pb.go -------------------------------------------------------------------------------- /eth/crypto/hd/algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/hd/algorithm.go -------------------------------------------------------------------------------- /eth/crypto/hd/algorithm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/hd/algorithm_test.go -------------------------------------------------------------------------------- /eth/crypto/hd/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/hd/benchmark_test.go -------------------------------------------------------------------------------- /eth/crypto/hd/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/hd/utils_test.go -------------------------------------------------------------------------------- /eth/crypto/keyring/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/keyring/options.go -------------------------------------------------------------------------------- /eth/crypto/secp256r1/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/crypto/secp256r1/verify.go -------------------------------------------------------------------------------- /eth/eip55.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip55.go -------------------------------------------------------------------------------- /eth/eip55_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip55_test.go -------------------------------------------------------------------------------- /eth/eip712/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/domain.go -------------------------------------------------------------------------------- /eth/eip712/eip712.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/eip712.go -------------------------------------------------------------------------------- /eth/eip712/eip712_fuzzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/eip712_fuzzer_test.go -------------------------------------------------------------------------------- /eth/eip712/eip712_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/eip712_legacy.go -------------------------------------------------------------------------------- /eth/eip712/eip712_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/eip712_test.go -------------------------------------------------------------------------------- /eth/eip712/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/encoding.go -------------------------------------------------------------------------------- /eth/eip712/encoding_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/encoding_legacy.go -------------------------------------------------------------------------------- /eth/eip712/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/message.go -------------------------------------------------------------------------------- /eth/eip712/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eip712/types.go -------------------------------------------------------------------------------- /eth/encoding/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/encoding/config.go -------------------------------------------------------------------------------- /eth/encoding/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/encoding/config_test.go -------------------------------------------------------------------------------- /eth/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/errors.go -------------------------------------------------------------------------------- /eth/eth_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eth_account.go -------------------------------------------------------------------------------- /eth/eth_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/eth_account_test.go -------------------------------------------------------------------------------- /eth/gas_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/gas_limit.go -------------------------------------------------------------------------------- /eth/gas_limit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/gas_limit_test.go -------------------------------------------------------------------------------- /eth/hdpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/hdpath.go -------------------------------------------------------------------------------- /eth/indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/indexer.go -------------------------------------------------------------------------------- /eth/indexer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/indexer.pb.go -------------------------------------------------------------------------------- /eth/indexer/evm_tx_indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/indexer/evm_tx_indexer.go -------------------------------------------------------------------------------- /eth/indexer/evm_tx_indexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/indexer/evm_tx_indexer_test.go -------------------------------------------------------------------------------- /eth/rpc/addrlocker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/addrlocker.go -------------------------------------------------------------------------------- /eth/rpc/addrlocker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/addrlocker_test.go -------------------------------------------------------------------------------- /eth/rpc/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/block.go -------------------------------------------------------------------------------- /eth/rpc/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/block_test.go -------------------------------------------------------------------------------- /eth/rpc/events_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/events_parser.go -------------------------------------------------------------------------------- /eth/rpc/events_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/events_parser_test.go -------------------------------------------------------------------------------- /eth/rpc/pubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/pubsub/pubsub.go -------------------------------------------------------------------------------- /eth/rpc/pubsub/pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/pubsub/pubsub_test.go -------------------------------------------------------------------------------- /eth/rpc/query_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/query_client.go -------------------------------------------------------------------------------- /eth/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpc.go -------------------------------------------------------------------------------- /eth/rpc/rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpc_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/account_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/account_info.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_debug.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_eth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_eth.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_eth_filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_eth_filters.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_eth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_eth_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_net.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_net_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_txpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_txpool.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/api_web3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/api_web3.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/apis.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/backend.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/blocks.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/blocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/blocks_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/call_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/call_tx.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/call_tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/call_tx_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/chain_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/chain_info.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/chain_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/chain_info_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/client_test.go: -------------------------------------------------------------------------------- 1 | package rpcapi_test 2 | -------------------------------------------------------------------------------- /eth/rpc/rpcapi/event_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/event_subscriber.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/filter_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/filter_utils.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/filters.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/gas_used_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/gas_used_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/node_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/node_info.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/node_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/node_info_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/nonce_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/nonce_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/subscription.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/tracing.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/tracing_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/tx_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/tx_info.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/tx_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/tx_info_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/tx_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/tx_logs_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/utils.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/utils_test.go -------------------------------------------------------------------------------- /eth/rpc/rpcapi/websockets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/rpcapi/websockets.go -------------------------------------------------------------------------------- /eth/rpc/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/rpc/types.go -------------------------------------------------------------------------------- /eth/safe_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/safe_math.go -------------------------------------------------------------------------------- /eth/safe_math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/safe_math_test.go -------------------------------------------------------------------------------- /eth/state_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/state_encoder.go -------------------------------------------------------------------------------- /eth/state_encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/state_encoder_test.go -------------------------------------------------------------------------------- /eth/stringify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/stringify.go -------------------------------------------------------------------------------- /eth/stringify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/eth/stringify_test.go -------------------------------------------------------------------------------- /evm-e2e/.entrypoint.addr: -------------------------------------------------------------------------------- 1 | 0x31cB3eE2aC481dbF1fc85a3Ab1Aad925Af4b3b5a -------------------------------------------------------------------------------- /evm-e2e/.env_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/.env_sample -------------------------------------------------------------------------------- /evm-e2e/.gitignore: -------------------------------------------------------------------------------- 1 | types 2 | artifacts 3 | cache 4 | .env 5 | -------------------------------------------------------------------------------- /evm-e2e/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /evm-e2e/.passkeyfactory.addr: -------------------------------------------------------------------------------- 1 | 0xF4434B66C39dA329a7230Faf919Ea65d3aCeB0AA -------------------------------------------------------------------------------- /evm-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/README.md -------------------------------------------------------------------------------- /evm-e2e/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/bun.lock -------------------------------------------------------------------------------- /evm-e2e/contracts/IFunToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/contracts/IFunToken.sol -------------------------------------------------------------------------------- /evm-e2e/contracts/TestERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/contracts/TestERC20.sol -------------------------------------------------------------------------------- /evm-e2e/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/hardhat.config.ts -------------------------------------------------------------------------------- /evm-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/jest.config.js -------------------------------------------------------------------------------- /evm-e2e/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/justfile -------------------------------------------------------------------------------- /evm-e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/package-lock.json -------------------------------------------------------------------------------- /evm-e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/package.json -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/package.json -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/src/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/src/bundler.ts -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/src/index.ts -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/src/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module "cbor-web"; 2 | -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/src/userop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/src/userop.ts -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/src/utils.ts -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/tsconfig.json -------------------------------------------------------------------------------- /evm-e2e/passkey-sdk/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/passkey-sdk/tsup.config.ts -------------------------------------------------------------------------------- /evm-e2e/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/prettier.config.js -------------------------------------------------------------------------------- /evm-e2e/scripts/deploy-passkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/scripts/deploy-passkey.js -------------------------------------------------------------------------------- /evm-e2e/scripts/start-bundler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/scripts/start-bundler.sh -------------------------------------------------------------------------------- /evm-e2e/test/debug_queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/debug_queries.test.ts -------------------------------------------------------------------------------- /evm-e2e/test/erc20.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/erc20.test.ts -------------------------------------------------------------------------------- /evm-e2e/test/eth_queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/eth_queries.test.ts -------------------------------------------------------------------------------- /evm-e2e/test/nibiru_oracle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/nibiru_oracle.test.ts -------------------------------------------------------------------------------- /evm-e2e/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/setup.ts -------------------------------------------------------------------------------- /evm-e2e/test/tx_receipt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/tx_receipt.test.ts -------------------------------------------------------------------------------- /evm-e2e/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/test/utils.ts -------------------------------------------------------------------------------- /evm-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-e2e/tsconfig.json -------------------------------------------------------------------------------- /evm-forge/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.editorconfig -------------------------------------------------------------------------------- /evm-forge/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.env.example -------------------------------------------------------------------------------- /evm-forge/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.github/workflows/ci.yml -------------------------------------------------------------------------------- /evm-forge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.gitignore -------------------------------------------------------------------------------- /evm-forge/.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.gitpod.yml -------------------------------------------------------------------------------- /evm-forge/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.prettierignore -------------------------------------------------------------------------------- /evm-forge/.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.prettierrc.yml -------------------------------------------------------------------------------- /evm-forge/.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/.solhint.json -------------------------------------------------------------------------------- /evm-forge/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/LICENSE.md -------------------------------------------------------------------------------- /evm-forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/README.md -------------------------------------------------------------------------------- /evm-forge/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/bun.lockb -------------------------------------------------------------------------------- /evm-forge/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/foundry.toml -------------------------------------------------------------------------------- /evm-forge/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/justfile -------------------------------------------------------------------------------- /evm-forge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/package.json -------------------------------------------------------------------------------- /evm-forge/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/remappings.txt -------------------------------------------------------------------------------- /evm-forge/script/Base.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/script/Base.s.sol -------------------------------------------------------------------------------- /evm-forge/script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/script/Deploy.s.sol -------------------------------------------------------------------------------- /evm-forge/src/Foo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/src/Foo.sol -------------------------------------------------------------------------------- /evm-forge/src/passkey/P256.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/src/passkey/P256.sol -------------------------------------------------------------------------------- /evm-forge/test/Foo.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/evm-forge/test/Foo.t.sol -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/go.sum -------------------------------------------------------------------------------- /gosdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/README.md -------------------------------------------------------------------------------- /gosdk/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/broadcast.go -------------------------------------------------------------------------------- /gosdk/clientctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/clientctx.go -------------------------------------------------------------------------------- /gosdk/export_test.go: -------------------------------------------------------------------------------- 1 | package gosdk 2 | -------------------------------------------------------------------------------- /gosdk/gosdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/gosdk.go -------------------------------------------------------------------------------- /gosdk/gosdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/gosdk_test.go -------------------------------------------------------------------------------- /gosdk/gosdktest/gosdktest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/gosdktest/gosdktest.go -------------------------------------------------------------------------------- /gosdk/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/grpc.go -------------------------------------------------------------------------------- /gosdk/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/keys.go -------------------------------------------------------------------------------- /gosdk/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/keys_test.go -------------------------------------------------------------------------------- /gosdk/netinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/netinfo.go -------------------------------------------------------------------------------- /gosdk/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/querier.go -------------------------------------------------------------------------------- /gosdk/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/gosdk/rpc.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/.clang-format -------------------------------------------------------------------------------- /internal/cosmos-sdk/.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/.cursorignore -------------------------------------------------------------------------------- /internal/cosmos-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/.gitignore -------------------------------------------------------------------------------- /internal/cosmos-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/Makefile -------------------------------------------------------------------------------- /internal/cosmos-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/README.md -------------------------------------------------------------------------------- /internal/cosmos-sdk/client/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/client/cmd.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/client/keys/testdata/keys/keys.db/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000167 2 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/client/keys/testdata/keys/keys.db/CURRENT.bak: -------------------------------------------------------------------------------- 1 | MANIFEST-000165 2 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/client/keys/testdata/keys/keys.db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/codec/amino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/codec/amino.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/codec/codec.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/codec/json.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/codec/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/codec/yaml.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/crypto/keyring/testdata/keys/keys.db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/crypto/keys/secp256k1/internal/secp256k1/libsecp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/go.mod -------------------------------------------------------------------------------- /internal/cosmos-sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/go.sum -------------------------------------------------------------------------------- /internal/cosmos-sdk/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/justfile -------------------------------------------------------------------------------- /internal/cosmos-sdk/proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/proto/buf.lock -------------------------------------------------------------------------------- /internal/cosmos-sdk/proto/buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/proto/buf.md -------------------------------------------------------------------------------- /internal/cosmos-sdk/proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/proto/buf.yaml -------------------------------------------------------------------------------- /internal/cosmos-sdk/runtime/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/runtime/app.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/server/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/server/doc.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/server/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/server/util.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/std/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/std/codec.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/std/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/std/doc.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/store/store.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/tests/Makefile -------------------------------------------------------------------------------- /internal/cosmos-sdk/tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/tests/go.mod -------------------------------------------------------------------------------- /internal/cosmos-sdk/tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/tests/go.sum -------------------------------------------------------------------------------- /internal/cosmos-sdk/tx/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/tx/go.mod -------------------------------------------------------------------------------- /internal/cosmos-sdk/tx/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/tx/go.sum -------------------------------------------------------------------------------- /internal/cosmos-sdk/tx/textual/internal/testpb/Makefile: -------------------------------------------------------------------------------- 1 | codegen: 2 | @(buf generate) 3 | -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/abci.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/codec.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/coin.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/denom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/denom.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/kv/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/kv/kv.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/math.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/proto.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/store.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/types/utils.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/x/README.md -------------------------------------------------------------------------------- /internal/cosmos-sdk/x/gov/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/x/gov/abci.go -------------------------------------------------------------------------------- /internal/cosmos-sdk/x/mint/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/cosmos-sdk/x/mint/abci.go -------------------------------------------------------------------------------- /internal/wasmd/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/.codecov.yml -------------------------------------------------------------------------------- /internal/wasmd/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/.dockerignore -------------------------------------------------------------------------------- /internal/wasmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/.gitignore -------------------------------------------------------------------------------- /internal/wasmd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/CHANGELOG.md -------------------------------------------------------------------------------- /internal/wasmd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/Dockerfile -------------------------------------------------------------------------------- /internal/wasmd/EVENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/EVENTS.md -------------------------------------------------------------------------------- /internal/wasmd/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/INTEGRATION.md -------------------------------------------------------------------------------- /internal/wasmd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/LICENSE -------------------------------------------------------------------------------- /internal/wasmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/Makefile -------------------------------------------------------------------------------- /internal/wasmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/README.md -------------------------------------------------------------------------------- /internal/wasmd/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/UPGRADING.md -------------------------------------------------------------------------------- /internal/wasmd/api_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/api_migration.md -------------------------------------------------------------------------------- /internal/wasmd/app/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/ante.go -------------------------------------------------------------------------------- /internal/wasmd/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/app.go -------------------------------------------------------------------------------- /internal/wasmd/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/app_test.go -------------------------------------------------------------------------------- /internal/wasmd/app/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/encoding.go -------------------------------------------------------------------------------- /internal/wasmd/app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/export.go -------------------------------------------------------------------------------- /internal/wasmd/app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/genesis.go -------------------------------------------------------------------------------- /internal/wasmd/app/params/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/params/doc.go -------------------------------------------------------------------------------- /internal/wasmd/app/params/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/params/proto.go -------------------------------------------------------------------------------- /internal/wasmd/app/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/sim_test.go -------------------------------------------------------------------------------- /internal/wasmd/app/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/test_helpers.go -------------------------------------------------------------------------------- /internal/wasmd/app/test_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/test_support.go -------------------------------------------------------------------------------- /internal/wasmd/app/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/upgrades.go -------------------------------------------------------------------------------- /internal/wasmd/app/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/app/wasm.go -------------------------------------------------------------------------------- /internal/wasmd/benchmarks/testdata/version.txt: -------------------------------------------------------------------------------- 1 | v0.10.0-soon4 2 | -------------------------------------------------------------------------------- /internal/wasmd/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/buf.work.yaml -------------------------------------------------------------------------------- /internal/wasmd/cmd/wasmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/cmd/wasmd/main.go -------------------------------------------------------------------------------- /internal/wasmd/cmd/wasmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/cmd/wasmd/root.go -------------------------------------------------------------------------------- /internal/wasmd/contrib/relayer-tests/.gitignore: -------------------------------------------------------------------------------- 1 | # Testing 2 | .relayer 3 | data 4 | -------------------------------------------------------------------------------- /internal/wasmd/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/docs/README.md -------------------------------------------------------------------------------- /internal/wasmd/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/go.mod -------------------------------------------------------------------------------- /internal/wasmd/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/go.sum -------------------------------------------------------------------------------- /internal/wasmd/proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/proto/buf.lock -------------------------------------------------------------------------------- /internal/wasmd/proto/buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/proto/buf.md -------------------------------------------------------------------------------- /internal/wasmd/proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/proto/buf.yaml -------------------------------------------------------------------------------- /internal/wasmd/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/scripts/README.md -------------------------------------------------------------------------------- /internal/wasmd/tests/system/.gitignore: -------------------------------------------------------------------------------- 1 | /testnet 2 | -------------------------------------------------------------------------------- /internal/wasmd/tests/system/testdata/version.txt: -------------------------------------------------------------------------------- 1 | v1.2.3 2 | -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/IBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/x/wasm/IBC.md -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/x/wasm/README.md -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/x/wasm/alias.go -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/x/wasm/ibc.go -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/keeper/testdata/version.txt: -------------------------------------------------------------------------------- 1 | v1.4.0 2 | -------------------------------------------------------------------------------- /internal/wasmd/x/wasm/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/internal/wasmd/x/wasm/module.go -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/justfile -------------------------------------------------------------------------------- /passkey-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/README.md -------------------------------------------------------------------------------- /passkey-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/index.html -------------------------------------------------------------------------------- /passkey-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/package-lock.json -------------------------------------------------------------------------------- /passkey-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/package.json -------------------------------------------------------------------------------- /passkey-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/src/App.tsx -------------------------------------------------------------------------------- /passkey-app/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/src/main.tsx -------------------------------------------------------------------------------- /passkey-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/src/styles.css -------------------------------------------------------------------------------- /passkey-app/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/src/types.ts -------------------------------------------------------------------------------- /passkey-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/src/vite-env.d.ts -------------------------------------------------------------------------------- /passkey-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/tsconfig.json -------------------------------------------------------------------------------- /passkey-app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/tsconfig.node.json -------------------------------------------------------------------------------- /passkey-app/vite.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/vite.config.d.ts -------------------------------------------------------------------------------- /passkey-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/vite.config.js -------------------------------------------------------------------------------- /passkey-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/passkey-app/vite.config.ts -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/prettier.config.js -------------------------------------------------------------------------------- /proto/buf-gen-swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf-gen-swagger.ts -------------------------------------------------------------------------------- /proto/buf-gen-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf-gen-swagger.yaml -------------------------------------------------------------------------------- /proto/buf.gen.gogo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.gogo.yaml -------------------------------------------------------------------------------- /proto/buf.gen.pulsar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.pulsar.yaml -------------------------------------------------------------------------------- /proto/buf.gen.py.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.py.yaml -------------------------------------------------------------------------------- /proto/buf.gen.rs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.rs.sh -------------------------------------------------------------------------------- /proto/buf.gen.rs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.rs.yaml -------------------------------------------------------------------------------- /proto/buf.gen.ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.gen.ts.yaml -------------------------------------------------------------------------------- /proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.lock -------------------------------------------------------------------------------- /proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/buf.yaml -------------------------------------------------------------------------------- /proto/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/bun.lock -------------------------------------------------------------------------------- /proto/eth/evm/v1/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/evm/v1/events.proto -------------------------------------------------------------------------------- /proto/eth/evm/v1/evm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/evm/v1/evm.proto -------------------------------------------------------------------------------- /proto/eth/evm/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/evm/v1/genesis.proto -------------------------------------------------------------------------------- /proto/eth/evm/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/evm/v1/query.proto -------------------------------------------------------------------------------- /proto/eth/evm/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/evm/v1/tx.proto -------------------------------------------------------------------------------- /proto/eth/types/v1/account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/types/v1/account.proto -------------------------------------------------------------------------------- /proto/eth/types/v1/indexer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/eth/types/v1/indexer.proto -------------------------------------------------------------------------------- /proto/nibiru/devgas/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/devgas/v1/tx.proto -------------------------------------------------------------------------------- /proto/nibiru/oracle/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/oracle/v1/tx.proto -------------------------------------------------------------------------------- /proto/nibiru/sudo/v1/event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/sudo/v1/event.proto -------------------------------------------------------------------------------- /proto/nibiru/sudo/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/sudo/v1/query.proto -------------------------------------------------------------------------------- /proto/nibiru/sudo/v1/state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/sudo/v1/state.proto -------------------------------------------------------------------------------- /proto/nibiru/sudo/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/nibiru/sudo/v1/tx.proto -------------------------------------------------------------------------------- /proto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/package.json -------------------------------------------------------------------------------- /proto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/proto/tsconfig.json -------------------------------------------------------------------------------- /sai-trading/.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/solidity/build-info 2 | *.dbg.json 3 | 4 | .env 5 | -------------------------------------------------------------------------------- /sai-trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/README.md -------------------------------------------------------------------------------- /sai-trading/artifacts-lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/artifacts-lock.toml -------------------------------------------------------------------------------- /sai-trading/artifacts/perp.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/artifacts/perp.wasm -------------------------------------------------------------------------------- /sai-trading/artifacts/vault.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/artifacts/vault.wasm -------------------------------------------------------------------------------- /sai-trading/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/bun.lock -------------------------------------------------------------------------------- /sai-trading/cmd/trader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/cmd/trader/main.go -------------------------------------------------------------------------------- /sai-trading/e2e_deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/e2e_deploy.ts -------------------------------------------------------------------------------- /sai-trading/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/go.mod -------------------------------------------------------------------------------- /sai-trading/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/go.sum -------------------------------------------------------------------------------- /sai-trading/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/justfile -------------------------------------------------------------------------------- /sai-trading/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/main.go -------------------------------------------------------------------------------- /sai-trading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/package.json -------------------------------------------------------------------------------- /sai-trading/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/pnpm-lock.yaml -------------------------------------------------------------------------------- /sai-trading/sample_txs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/sample_txs/README.md -------------------------------------------------------------------------------- /sai-trading/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/tsconfig.json -------------------------------------------------------------------------------- /sai-trading/tutil/tutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/tutil/tutil.go -------------------------------------------------------------------------------- /sai-trading/tutil/tutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/sai-trading/tutil/tutil_test.go -------------------------------------------------------------------------------- /scripts/passkey-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/scripts/passkey-demo.sh -------------------------------------------------------------------------------- /security-reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/security-reports/README.md -------------------------------------------------------------------------------- /token-registry/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/CHANGELOG.md -------------------------------------------------------------------------------- /token-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/README.md -------------------------------------------------------------------------------- /token-registry/githubify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/githubify.go -------------------------------------------------------------------------------- /token-registry/img/002_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/002_usdc.png -------------------------------------------------------------------------------- /token-registry/img/002_usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/002_usdc.svg -------------------------------------------------------------------------------- /token-registry/img/005_eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/005_eth.svg -------------------------------------------------------------------------------- /token-registry/img/006_usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/006_usdt.svg -------------------------------------------------------------------------------- /token-registry/img/007_mim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/007_mim.png -------------------------------------------------------------------------------- /token-registry/img/008_cbbtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/008_cbbtc.png -------------------------------------------------------------------------------- /token-registry/img/009_ubtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/009_ubtc.png -------------------------------------------------------------------------------- /token-registry/img/011_aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/011_aave.svg -------------------------------------------------------------------------------- /token-registry/img/012_ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/012_ada.svg -------------------------------------------------------------------------------- /token-registry/img/013_apt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/013_apt.svg -------------------------------------------------------------------------------- /token-registry/img/014_arb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/014_arb.svg -------------------------------------------------------------------------------- /token-registry/img/015_aster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/015_aster.svg -------------------------------------------------------------------------------- /token-registry/img/016_avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/016_avax.svg -------------------------------------------------------------------------------- /token-registry/img/017_bnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/017_bnb.svg -------------------------------------------------------------------------------- /token-registry/img/018_bonk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/018_bonk.svg -------------------------------------------------------------------------------- /token-registry/img/019_doge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/019_doge.svg -------------------------------------------------------------------------------- /token-registry/img/020_ena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/020_ena.svg -------------------------------------------------------------------------------- /token-registry/img/022_hype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/022_hype.svg -------------------------------------------------------------------------------- /token-registry/img/023_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/023_ip.png -------------------------------------------------------------------------------- /token-registry/img/024_kaito.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/024_kaito.svg -------------------------------------------------------------------------------- /token-registry/img/025_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/025_link.svg -------------------------------------------------------------------------------- /token-registry/img/026_ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/026_ltc.svg -------------------------------------------------------------------------------- /token-registry/img/027_mnt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/027_mnt.svg -------------------------------------------------------------------------------- /token-registry/img/028_near.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/028_near.svg -------------------------------------------------------------------------------- /token-registry/img/029_pengu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/029_pengu.png -------------------------------------------------------------------------------- /token-registry/img/030_pol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/030_pol.svg -------------------------------------------------------------------------------- /token-registry/img/031_pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/031_pump.png -------------------------------------------------------------------------------- /token-registry/img/032_purr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/032_purr.png -------------------------------------------------------------------------------- /token-registry/img/033_shib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/033_shib.svg -------------------------------------------------------------------------------- /token-registry/img/034_sol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/034_sol.svg -------------------------------------------------------------------------------- /token-registry/img/035_sui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/035_sui.svg -------------------------------------------------------------------------------- /token-registry/img/036_ton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/036_ton.svg -------------------------------------------------------------------------------- /token-registry/img/037_trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/037_trump.png -------------------------------------------------------------------------------- /token-registry/img/038_trx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/038_trx.svg -------------------------------------------------------------------------------- /token-registry/img/039_usd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/039_usd1.png -------------------------------------------------------------------------------- /token-registry/img/041_xrp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/041_xrp.svg -------------------------------------------------------------------------------- /token-registry/img/042_zec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/042_zec.svg -------------------------------------------------------------------------------- /token-registry/img/043_monad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/img/043_monad.svg -------------------------------------------------------------------------------- /token-registry/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/main/main.go -------------------------------------------------------------------------------- /token-registry/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/token-registry/token.go -------------------------------------------------------------------------------- /x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/README.md -------------------------------------------------------------------------------- /x/bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/README.md -------------------------------------------------------------------------------- /x/bank/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/app_test.go -------------------------------------------------------------------------------- /x/bank/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/bench_test.go -------------------------------------------------------------------------------- /x/bank/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/client/cli/query.go -------------------------------------------------------------------------------- /x/bank/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/client/cli/query_test.go -------------------------------------------------------------------------------- /x/bank/client/cli/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/client/cli/suite_test.go -------------------------------------------------------------------------------- /x/bank/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/client/cli/tx.go -------------------------------------------------------------------------------- /x/bank/client/cli/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/client/cli/tx_test.go -------------------------------------------------------------------------------- /x/bank/exported/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/exported/exported.go -------------------------------------------------------------------------------- /x/bank/keeper/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/genesis.go -------------------------------------------------------------------------------- /x/bank/keeper/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/genesis_test.go -------------------------------------------------------------------------------- /x/bank/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/bank/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/bank/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/invariants.go -------------------------------------------------------------------------------- /x/bank/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/keeper.go -------------------------------------------------------------------------------- /x/bank/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/bank/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/migrations.go -------------------------------------------------------------------------------- /x/bank/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/msg_server.go -------------------------------------------------------------------------------- /x/bank/keeper/nibiru_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/nibiru_ext.go -------------------------------------------------------------------------------- /x/bank/keeper/nibiru_ext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/nibiru_ext_test.go -------------------------------------------------------------------------------- /x/bank/keeper/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/send.go -------------------------------------------------------------------------------- /x/bank/keeper/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/keeper/view.go -------------------------------------------------------------------------------- /x/bank/migrations/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v1/types.go -------------------------------------------------------------------------------- /x/bank/migrations/v2/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v2/json.go -------------------------------------------------------------------------------- /x/bank/migrations/v2/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v2/keys.go -------------------------------------------------------------------------------- /x/bank/migrations/v2/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v2/store.go -------------------------------------------------------------------------------- /x/bank/migrations/v3/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v3/keys.go -------------------------------------------------------------------------------- /x/bank/migrations/v3/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v3/store.go -------------------------------------------------------------------------------- /x/bank/migrations/v4/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/migrations/v4/store.go -------------------------------------------------------------------------------- /x/bank/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/module.go -------------------------------------------------------------------------------- /x/bank/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/simulation/genesis.go -------------------------------------------------------------------------------- /x/bank/simulation/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/simulation/operations.go -------------------------------------------------------------------------------- /x/bank/simulation/proposals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/simulation/proposals.go -------------------------------------------------------------------------------- /x/bank/testutil/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/bank/testutil/helpers.go -------------------------------------------------------------------------------- /x/collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/README.md -------------------------------------------------------------------------------- /x/collections/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/collections.go -------------------------------------------------------------------------------- /x/collections/examples/1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/examples/1.go -------------------------------------------------------------------------------- /x/collections/examples/2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/examples/2.go -------------------------------------------------------------------------------- /x/collections/examples/3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/examples/3.go -------------------------------------------------------------------------------- /x/collections/indexed_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/indexed_map.go -------------------------------------------------------------------------------- /x/collections/indexers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/indexers.go -------------------------------------------------------------------------------- /x/collections/indexers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/indexers_test.go -------------------------------------------------------------------------------- /x/collections/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/item.go -------------------------------------------------------------------------------- /x/collections/item_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/item_test.go -------------------------------------------------------------------------------- /x/collections/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/iter.go -------------------------------------------------------------------------------- /x/collections/iter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/iter_test.go -------------------------------------------------------------------------------- /x/collections/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keys.go -------------------------------------------------------------------------------- /x/collections/keys_pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keys_pair.go -------------------------------------------------------------------------------- /x/collections/keys_pair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keys_pair_test.go -------------------------------------------------------------------------------- /x/collections/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keys_test.go -------------------------------------------------------------------------------- /x/collections/keyset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keyset.go -------------------------------------------------------------------------------- /x/collections/keyset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/keyset_test.go -------------------------------------------------------------------------------- /x/collections/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/map.go -------------------------------------------------------------------------------- /x/collections/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/map_test.go -------------------------------------------------------------------------------- /x/collections/sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/sequence.go -------------------------------------------------------------------------------- /x/collections/sequence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/sequence_test.go -------------------------------------------------------------------------------- /x/collections/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/utils_test.go -------------------------------------------------------------------------------- /x/collections/value_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/collections/value_encoder.go -------------------------------------------------------------------------------- /x/devgas/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/README.md -------------------------------------------------------------------------------- /x/devgas/v1/ante/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/ante/ante.go -------------------------------------------------------------------------------- /x/devgas/v1/ante/ante_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/ante/ante_test.go -------------------------------------------------------------------------------- /x/devgas/v1/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/client/cli/query.go -------------------------------------------------------------------------------- /x/devgas/v1/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/client/cli/tx.go -------------------------------------------------------------------------------- /x/devgas/v1/exported/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/exported/exported.go -------------------------------------------------------------------------------- /x/devgas/v1/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/genesis.go -------------------------------------------------------------------------------- /x/devgas/v1/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/genesis_test.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/feeshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/feeshare.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/keeper.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/msg_server.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/params.go -------------------------------------------------------------------------------- /x/devgas/v1/keeper/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/keeper/store.go -------------------------------------------------------------------------------- /x/devgas/v1/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/module.go -------------------------------------------------------------------------------- /x/devgas/v1/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/module_test.go -------------------------------------------------------------------------------- /x/devgas/v1/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/codec.go -------------------------------------------------------------------------------- /x/devgas/v1/types/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/codec_test.go -------------------------------------------------------------------------------- /x/devgas/v1/types/devgas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/devgas.go -------------------------------------------------------------------------------- /x/devgas/v1/types/devgas.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/devgas.pb.go -------------------------------------------------------------------------------- /x/devgas/v1/types/devgas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/devgas_test.go -------------------------------------------------------------------------------- /x/devgas/v1/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/errors.go -------------------------------------------------------------------------------- /x/devgas/v1/types/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/event.pb.go -------------------------------------------------------------------------------- /x/devgas/v1/types/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/export.go -------------------------------------------------------------------------------- /x/devgas/v1/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/genesis.go -------------------------------------------------------------------------------- /x/devgas/v1/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/genesis.pb.go -------------------------------------------------------------------------------- /x/devgas/v1/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/keys.go -------------------------------------------------------------------------------- /x/devgas/v1/types/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/msg.go -------------------------------------------------------------------------------- /x/devgas/v1/types/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/msg_test.go -------------------------------------------------------------------------------- /x/devgas/v1/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/params.go -------------------------------------------------------------------------------- /x/devgas/v1/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/params_test.go -------------------------------------------------------------------------------- /x/devgas/v1/types/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/query.go -------------------------------------------------------------------------------- /x/devgas/v1/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/query.pb.go -------------------------------------------------------------------------------- /x/devgas/v1/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/devgas/v1/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/tx.pb.go -------------------------------------------------------------------------------- /x/devgas/v1/types/tx.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/devgas/v1/types/tx.pb.gw.go -------------------------------------------------------------------------------- /x/epochs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/README.md -------------------------------------------------------------------------------- /x/epochs/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/abci.go -------------------------------------------------------------------------------- /x/epochs/abci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/abci_test.go -------------------------------------------------------------------------------- /x/epochs/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/client/cli/query.go -------------------------------------------------------------------------------- /x/epochs/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/client/cli/tx.go -------------------------------------------------------------------------------- /x/epochs/client/rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/client/rest/rest.go -------------------------------------------------------------------------------- /x/epochs/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/genesis.go -------------------------------------------------------------------------------- /x/epochs/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/genesis_test.go -------------------------------------------------------------------------------- /x/epochs/keeper/epoch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/epoch.go -------------------------------------------------------------------------------- /x/epochs/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/epochs/keeper/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/hooks.go -------------------------------------------------------------------------------- /x/epochs/keeper/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/hooks_test.go -------------------------------------------------------------------------------- /x/epochs/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/keeper.go -------------------------------------------------------------------------------- /x/epochs/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/epochs/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/module.go -------------------------------------------------------------------------------- /x/epochs/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/simulation/genesis.go -------------------------------------------------------------------------------- /x/epochs/types/epochinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/epochinfo.go -------------------------------------------------------------------------------- /x/epochs/types/epochinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/epochinfo_test.go -------------------------------------------------------------------------------- /x/epochs/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/errors.go -------------------------------------------------------------------------------- /x/epochs/types/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/event.pb.go -------------------------------------------------------------------------------- /x/epochs/types/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/export.go -------------------------------------------------------------------------------- /x/epochs/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/genesis.go -------------------------------------------------------------------------------- /x/epochs/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/genesis.pb.go -------------------------------------------------------------------------------- /x/epochs/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/genesis_test.go -------------------------------------------------------------------------------- /x/epochs/types/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/hooks.go -------------------------------------------------------------------------------- /x/epochs/types/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/hooks_test.go -------------------------------------------------------------------------------- /x/epochs/types/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/identifier.go -------------------------------------------------------------------------------- /x/epochs/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/keys.go -------------------------------------------------------------------------------- /x/epochs/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/query.pb.go -------------------------------------------------------------------------------- /x/epochs/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/epochs/types/state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/epochs/types/state.pb.go -------------------------------------------------------------------------------- /x/evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/README.md -------------------------------------------------------------------------------- /x/evm/chain_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/chain_config.go -------------------------------------------------------------------------------- /x/evm/chain_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/chain_config_test.go -------------------------------------------------------------------------------- /x/evm/cli/cli_setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/cli/cli_setup_test.go -------------------------------------------------------------------------------- /x/evm/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/cli/cli_test.go -------------------------------------------------------------------------------- /x/evm/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/cli/query.go -------------------------------------------------------------------------------- /x/evm/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/cli/tx.go -------------------------------------------------------------------------------- /x/evm/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/codec.go -------------------------------------------------------------------------------- /x/evm/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/const.go -------------------------------------------------------------------------------- /x/evm/deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/deps.go -------------------------------------------------------------------------------- /x/evm/embeds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/.gitignore -------------------------------------------------------------------------------- /x/evm/embeds/HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/HACKING.md -------------------------------------------------------------------------------- /x/evm/embeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/README.md -------------------------------------------------------------------------------- /x/evm/embeds/abi/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/ERC20.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/ErisEvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/ErisEvm.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/IFunToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/IFunToken.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/INibiruEvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/INibiruEvm.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/IOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/IOracle.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/IWasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/IWasm.json -------------------------------------------------------------------------------- /x/evm/embeds/abi/SafeDelegateCall.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /x/evm/embeds/abi/WNIBI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/abi/WNIBI.json -------------------------------------------------------------------------------- /x/evm/embeds/contracts/MKR.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/contracts/MKR.sol -------------------------------------------------------------------------------- /x/evm/embeds/contracts/WNIBI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/contracts/WNIBI.sol -------------------------------------------------------------------------------- /x/evm/embeds/contracts/Wasm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/contracts/Wasm.sol -------------------------------------------------------------------------------- /x/evm/embeds/embeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/embeds.go -------------------------------------------------------------------------------- /x/evm/embeds/embeds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/embeds_test.go -------------------------------------------------------------------------------- /x/evm/embeds/gen-abi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/gen-abi/main.go -------------------------------------------------------------------------------- /x/evm/embeds/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/hardhat.config.js -------------------------------------------------------------------------------- /x/evm/embeds/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/package.json -------------------------------------------------------------------------------- /x/evm/embeds/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/embeds/yarn.lock -------------------------------------------------------------------------------- /x/evm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/errors.go -------------------------------------------------------------------------------- /x/evm/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/events.go -------------------------------------------------------------------------------- /x/evm/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/events.pb.go -------------------------------------------------------------------------------- /x/evm/evm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evm.go -------------------------------------------------------------------------------- /x/evm/evm.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evm.pb.go -------------------------------------------------------------------------------- /x/evm/evm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evm_test.go -------------------------------------------------------------------------------- /x/evm/evmante/all_evmante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmante/all_evmante.go -------------------------------------------------------------------------------- /x/evm/evmante/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmante/suite_test.go -------------------------------------------------------------------------------- /x/evm/evmmodule/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmmodule/module.go -------------------------------------------------------------------------------- /x/evm/evmmodule/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmmodule/module_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/call_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/call_contract.go -------------------------------------------------------------------------------- /x/evm/evmstate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/doc.go -------------------------------------------------------------------------------- /x/evm/evmstate/erc20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/erc20.go -------------------------------------------------------------------------------- /x/evm/evmstate/erc20_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/erc20_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/evm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/evm_state.go -------------------------------------------------------------------------------- /x/evm/evmstate/funtoken_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/funtoken_state.go -------------------------------------------------------------------------------- /x/evm/evmstate/gas_fees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/gas_fees.go -------------------------------------------------------------------------------- /x/evm/evmstate/gas_fees_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/gas_fees_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/genesis.go -------------------------------------------------------------------------------- /x/evm/evmstate/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/genesis_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/grpc_query.go -------------------------------------------------------------------------------- /x/evm/evmstate/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/hooks.go -------------------------------------------------------------------------------- /x/evm/evmstate/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/keeper.go -------------------------------------------------------------------------------- /x/evm/evmstate/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/keeper_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/msg_server.go -------------------------------------------------------------------------------- /x/evm/evmstate/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/random_test.go -------------------------------------------------------------------------------- /x/evm/evmstate/sdb_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/sdb_config.go -------------------------------------------------------------------------------- /x/evm/evmstate/sdb_debug.go: -------------------------------------------------------------------------------- 1 | package evmstate 2 | 3 | // Copyright (c) 2023-2024 Nibi, Inc. 4 | -------------------------------------------------------------------------------- /x/evm/evmstate/sdb_ext_keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/sdb_ext_keeper.go -------------------------------------------------------------------------------- /x/evm/evmstate/sdb_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/sdb_interfaces.go -------------------------------------------------------------------------------- /x/evm/evmstate/sdb_statedb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/sdb_statedb.go -------------------------------------------------------------------------------- /x/evm/evmstate/vm_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmstate/vm_config.go -------------------------------------------------------------------------------- /x/evm/evmtest/erc20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/erc20.go -------------------------------------------------------------------------------- /x/evm/evmtest/eth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/eth.go -------------------------------------------------------------------------------- /x/evm/evmtest/eth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/eth_test.go -------------------------------------------------------------------------------- /x/evm/evmtest/evmante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/evmante.go -------------------------------------------------------------------------------- /x/evm/evmtest/log_lite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/log_lite.go -------------------------------------------------------------------------------- /x/evm/evmtest/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/signer.go -------------------------------------------------------------------------------- /x/evm/evmtest/smart_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/smart_contract.go -------------------------------------------------------------------------------- /x/evm/evmtest/test_deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/test_deps.go -------------------------------------------------------------------------------- /x/evm/evmtest/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/tx.go -------------------------------------------------------------------------------- /x/evm/evmtest/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/tx_test.go -------------------------------------------------------------------------------- /x/evm/evmtest/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/evmtest/upgrades.go -------------------------------------------------------------------------------- /x/evm/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/genesis.go -------------------------------------------------------------------------------- /x/evm/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/genesis.pb.go -------------------------------------------------------------------------------- /x/evm/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/genesis_test.go -------------------------------------------------------------------------------- /x/evm/json_tx_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/json_tx_args.go -------------------------------------------------------------------------------- /x/evm/json_tx_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/json_tx_args_test.go -------------------------------------------------------------------------------- /x/evm/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/logs.go -------------------------------------------------------------------------------- /x/evm/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/logs_test.go -------------------------------------------------------------------------------- /x/evm/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/msg.go -------------------------------------------------------------------------------- /x/evm/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/msg_test.go -------------------------------------------------------------------------------- /x/evm/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/params.go -------------------------------------------------------------------------------- /x/evm/precompile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/README.md -------------------------------------------------------------------------------- /x/evm/precompile/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/errors.go -------------------------------------------------------------------------------- /x/evm/precompile/funtoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/funtoken.go -------------------------------------------------------------------------------- /x/evm/precompile/oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/oracle.go -------------------------------------------------------------------------------- /x/evm/precompile/oracle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/oracle_test.go -------------------------------------------------------------------------------- /x/evm/precompile/p256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/p256.go -------------------------------------------------------------------------------- /x/evm/precompile/p256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/p256_test.go -------------------------------------------------------------------------------- /x/evm/precompile/precompile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/precompile.go -------------------------------------------------------------------------------- /x/evm/precompile/test/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/test/export.go -------------------------------------------------------------------------------- /x/evm/precompile/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/wasm.go -------------------------------------------------------------------------------- /x/evm/precompile/wasm_parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/wasm_parse.go -------------------------------------------------------------------------------- /x/evm/precompile/wasm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/precompile/wasm_test.go -------------------------------------------------------------------------------- /x/evm/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/query.go -------------------------------------------------------------------------------- /x/evm/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/query.pb.go -------------------------------------------------------------------------------- /x/evm/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/query.pb.gw.go -------------------------------------------------------------------------------- /x/evm/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/state.go -------------------------------------------------------------------------------- /x/evm/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/state_test.go -------------------------------------------------------------------------------- /x/evm/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx.go -------------------------------------------------------------------------------- /x/evm/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx.pb.go -------------------------------------------------------------------------------- /x/evm/tx.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx.pb.gw.go -------------------------------------------------------------------------------- /x/evm/tx_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data.go -------------------------------------------------------------------------------- /x/evm/tx_data_access_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data_access_list.go -------------------------------------------------------------------------------- /x/evm/tx_data_dynamic_fee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data_dynamic_fee.go -------------------------------------------------------------------------------- /x/evm/tx_data_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data_legacy.go -------------------------------------------------------------------------------- /x/evm/tx_data_legacy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data_legacy_test.go -------------------------------------------------------------------------------- /x/evm/tx_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_data_test.go -------------------------------------------------------------------------------- /x/evm/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/tx_test.go -------------------------------------------------------------------------------- /x/evm/vmtracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/evm/vmtracer.go -------------------------------------------------------------------------------- /x/genmsg/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/genmsg/genesis.go -------------------------------------------------------------------------------- /x/genmsg/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/genmsg/genesis_test.go -------------------------------------------------------------------------------- /x/genmsg/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/genmsg/integration_test.go -------------------------------------------------------------------------------- /x/genmsg/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/genmsg/module.go -------------------------------------------------------------------------------- /x/genmsg/v1/genmsg.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/genmsg/v1/genmsg.pb.go -------------------------------------------------------------------------------- /x/inflation/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/client/cli/query.go -------------------------------------------------------------------------------- /x/inflation/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/client/cli/tx.go -------------------------------------------------------------------------------- /x/inflation/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/doc.go -------------------------------------------------------------------------------- /x/inflation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/genesis.go -------------------------------------------------------------------------------- /x/inflation/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/inflation/keeper/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/hooks.go -------------------------------------------------------------------------------- /x/inflation/keeper/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/hooks_test.go -------------------------------------------------------------------------------- /x/inflation/keeper/inflation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/inflation.go -------------------------------------------------------------------------------- /x/inflation/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/keeper.go -------------------------------------------------------------------------------- /x/inflation/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/msg_server.go -------------------------------------------------------------------------------- /x/inflation/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/params.go -------------------------------------------------------------------------------- /x/inflation/keeper/sudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/sudo.go -------------------------------------------------------------------------------- /x/inflation/keeper/sudo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/keeper/sudo_test.go -------------------------------------------------------------------------------- /x/inflation/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/module.go -------------------------------------------------------------------------------- /x/inflation/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/codec.go -------------------------------------------------------------------------------- /x/inflation/types/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/event.pb.go -------------------------------------------------------------------------------- /x/inflation/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/events.go -------------------------------------------------------------------------------- /x/inflation/types/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/export.go -------------------------------------------------------------------------------- /x/inflation/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/genesis.go -------------------------------------------------------------------------------- /x/inflation/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/genesis.pb.go -------------------------------------------------------------------------------- /x/inflation/types/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/interfaces.go -------------------------------------------------------------------------------- /x/inflation/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/keys.go -------------------------------------------------------------------------------- /x/inflation/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/msgs.go -------------------------------------------------------------------------------- /x/inflation/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/params.go -------------------------------------------------------------------------------- /x/inflation/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/params_test.go -------------------------------------------------------------------------------- /x/inflation/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/query.pb.go -------------------------------------------------------------------------------- /x/inflation/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/inflation/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/tx.pb.go -------------------------------------------------------------------------------- /x/inflation/types/tx.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/inflation/types/tx.pb.gw.go -------------------------------------------------------------------------------- /x/nutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/README.md -------------------------------------------------------------------------------- /x/nutil/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/address.go -------------------------------------------------------------------------------- /x/nutil/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/address_test.go -------------------------------------------------------------------------------- /x/nutil/asset/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/asset/pair.go -------------------------------------------------------------------------------- /x/nutil/asset/pair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/asset/pair_test.go -------------------------------------------------------------------------------- /x/nutil/asset/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/asset/registry.go -------------------------------------------------------------------------------- /x/nutil/big_u256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/big_u256.go -------------------------------------------------------------------------------- /x/nutil/big_u256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/big_u256_test.go -------------------------------------------------------------------------------- /x/nutil/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/codec.go -------------------------------------------------------------------------------- /x/nutil/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/constants.go -------------------------------------------------------------------------------- /x/nutil/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/dec.go -------------------------------------------------------------------------------- /x/nutil/dec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/dec_test.go -------------------------------------------------------------------------------- /x/nutil/denoms/denoms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/denoms/denoms.go -------------------------------------------------------------------------------- /x/nutil/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/error.go -------------------------------------------------------------------------------- /x/nutil/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/error_test.go -------------------------------------------------------------------------------- /x/nutil/ewma/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/ewma/ewma.go -------------------------------------------------------------------------------- /x/nutil/ewma/ewma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/ewma/ewma_test.go -------------------------------------------------------------------------------- /x/nutil/ewma/testdata/ewma.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/ewma/testdata/ewma.csv -------------------------------------------------------------------------------- /x/nutil/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/flags/flags.go -------------------------------------------------------------------------------- /x/nutil/nmath/nmath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/nmath/nmath.go -------------------------------------------------------------------------------- /x/nutil/omap/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/omap/impl.go -------------------------------------------------------------------------------- /x/nutil/omap/omap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/omap/omap.go -------------------------------------------------------------------------------- /x/nutil/omap/omap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/omap/omap_test.go -------------------------------------------------------------------------------- /x/nutil/paginate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/paginate.go -------------------------------------------------------------------------------- /x/nutil/paginate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/paginate_test.go -------------------------------------------------------------------------------- /x/nutil/set/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/set/set.go -------------------------------------------------------------------------------- /x/nutil/set/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/set/set_test.go -------------------------------------------------------------------------------- /x/nutil/testutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/README.md -------------------------------------------------------------------------------- /x/nutil/testutil/action/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/action/block.go -------------------------------------------------------------------------------- /x/nutil/testutil/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/cases.go -------------------------------------------------------------------------------- /x/nutil/testutil/cases_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/cases_test.go -------------------------------------------------------------------------------- /x/nutil/testutil/client_ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/client_ctx.go -------------------------------------------------------------------------------- /x/nutil/testutil/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/const.go -------------------------------------------------------------------------------- /x/nutil/testutil/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/events.go -------------------------------------------------------------------------------- /x/nutil/testutil/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/events_test.go -------------------------------------------------------------------------------- /x/nutil/testutil/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/log.go -------------------------------------------------------------------------------- /x/nutil/testutil/nullify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/nullify.go -------------------------------------------------------------------------------- /x/nutil/testutil/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/path.go -------------------------------------------------------------------------------- /x/nutil/testutil/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/testutil/sample.go -------------------------------------------------------------------------------- /x/nutil/unsafe_conv_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/nutil/unsafe_conv_string.go -------------------------------------------------------------------------------- /x/oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/README.md -------------------------------------------------------------------------------- /x/oracle/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/abci.go -------------------------------------------------------------------------------- /x/oracle/abci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/abci_test.go -------------------------------------------------------------------------------- /x/oracle/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/cli/query.go -------------------------------------------------------------------------------- /x/oracle/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/cli/tx.go -------------------------------------------------------------------------------- /x/oracle/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/genesis.go -------------------------------------------------------------------------------- /x/oracle/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/genesis_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/app_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/ballot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/ballot.go -------------------------------------------------------------------------------- /x/oracle/keeper/ballot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/ballot_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/oracle/keeper/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/hooks.go -------------------------------------------------------------------------------- /x/oracle/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/keeper.go -------------------------------------------------------------------------------- /x/oracle/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/msg_server.go -------------------------------------------------------------------------------- /x/oracle/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/params.go -------------------------------------------------------------------------------- /x/oracle/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/params_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/reward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/reward.go -------------------------------------------------------------------------------- /x/oracle/keeper/reward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/reward_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/slash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/slash.go -------------------------------------------------------------------------------- /x/oracle/keeper/slash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/slash_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/test_utils.go -------------------------------------------------------------------------------- /x/oracle/keeper/whitelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/keeper/whitelist.go -------------------------------------------------------------------------------- /x/oracle/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/module.go -------------------------------------------------------------------------------- /x/oracle/simulation/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/simulation/decoder.go -------------------------------------------------------------------------------- /x/oracle/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/simulation/genesis.go -------------------------------------------------------------------------------- /x/oracle/types/ballot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/ballot.go -------------------------------------------------------------------------------- /x/oracle/types/ballot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/ballot_test.go -------------------------------------------------------------------------------- /x/oracle/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/codec.go -------------------------------------------------------------------------------- /x/oracle/types/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/core.go -------------------------------------------------------------------------------- /x/oracle/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/errors.go -------------------------------------------------------------------------------- /x/oracle/types/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/event.pb.go -------------------------------------------------------------------------------- /x/oracle/types/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/export.go -------------------------------------------------------------------------------- /x/oracle/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/genesis.go -------------------------------------------------------------------------------- /x/oracle/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/genesis.pb.go -------------------------------------------------------------------------------- /x/oracle/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/genesis_test.go -------------------------------------------------------------------------------- /x/oracle/types/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/hash.go -------------------------------------------------------------------------------- /x/oracle/types/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/hash_test.go -------------------------------------------------------------------------------- /x/oracle/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/keys.go -------------------------------------------------------------------------------- /x/oracle/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/msgs.go -------------------------------------------------------------------------------- /x/oracle/types/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/msgs_test.go -------------------------------------------------------------------------------- /x/oracle/types/oracle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/oracle.pb.go -------------------------------------------------------------------------------- /x/oracle/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/params.go -------------------------------------------------------------------------------- /x/oracle/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/params_test.go -------------------------------------------------------------------------------- /x/oracle/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/query.pb.go -------------------------------------------------------------------------------- /x/oracle/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/oracle/types/state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/state.pb.go -------------------------------------------------------------------------------- /x/oracle/types/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/test_utils.go -------------------------------------------------------------------------------- /x/oracle/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/tx.pb.go -------------------------------------------------------------------------------- /x/oracle/types/tx.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/tx.pb.gw.go -------------------------------------------------------------------------------- /x/oracle/types/vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/vote.go -------------------------------------------------------------------------------- /x/oracle/types/vote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/oracle/types/vote_test.go -------------------------------------------------------------------------------- /x/sudo/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/actions.go -------------------------------------------------------------------------------- /x/sudo/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/cli/cli.go -------------------------------------------------------------------------------- /x/sudo/cli/cli_setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/cli/cli_setup_test.go -------------------------------------------------------------------------------- /x/sudo/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/cli/cli_test.go -------------------------------------------------------------------------------- /x/sudo/cli/gen_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/cli/gen_root.go -------------------------------------------------------------------------------- /x/sudo/cli/gen_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/cli/gen_root_test.go -------------------------------------------------------------------------------- /x/sudo/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/codec.go -------------------------------------------------------------------------------- /x/sudo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/doc.go -------------------------------------------------------------------------------- /x/sudo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/errors.go -------------------------------------------------------------------------------- /x/sudo/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/event.pb.go -------------------------------------------------------------------------------- /x/sudo/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/export.go -------------------------------------------------------------------------------- /x/sudo/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/genesis.go -------------------------------------------------------------------------------- /x/sudo/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/genesis_test.go -------------------------------------------------------------------------------- /x/sudo/keeper/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/genesis_test.go -------------------------------------------------------------------------------- /x/sudo/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/keeper.go -------------------------------------------------------------------------------- /x/sudo/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/sudo/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/msg_server.go -------------------------------------------------------------------------------- /x/sudo/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/sudo/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/querier.go -------------------------------------------------------------------------------- /x/sudo/keeper/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keeper/querier_test.go -------------------------------------------------------------------------------- /x/sudo/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/keys.go -------------------------------------------------------------------------------- /x/sudo/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/msgs.go -------------------------------------------------------------------------------- /x/sudo/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/msgs_test.go -------------------------------------------------------------------------------- /x/sudo/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/query.pb.go -------------------------------------------------------------------------------- /x/sudo/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/query.pb.gw.go -------------------------------------------------------------------------------- /x/sudo/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/simulation/genesis.go -------------------------------------------------------------------------------- /x/sudo/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/state.go -------------------------------------------------------------------------------- /x/sudo/state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/state.pb.go -------------------------------------------------------------------------------- /x/sudo/sudomodule/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/sudomodule/module.go -------------------------------------------------------------------------------- /x/sudo/sudomodule/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/sudomodule/module_test.go -------------------------------------------------------------------------------- /x/sudo/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/tx.pb.go -------------------------------------------------------------------------------- /x/sudo/tx.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/sudo/tx.pb.gw.go -------------------------------------------------------------------------------- /x/tokenfactory/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/cli/cli_test.go -------------------------------------------------------------------------------- /x/tokenfactory/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/cli/query.go -------------------------------------------------------------------------------- /x/tokenfactory/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/cli/tx.go -------------------------------------------------------------------------------- /x/tokenfactory/keeper/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/keeper/genesis.go -------------------------------------------------------------------------------- /x/tokenfactory/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/keeper/keeper.go -------------------------------------------------------------------------------- /x/tokenfactory/keeper/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/keeper/store.go -------------------------------------------------------------------------------- /x/tokenfactory/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/module.go -------------------------------------------------------------------------------- /x/tokenfactory/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/module_test.go -------------------------------------------------------------------------------- /x/tokenfactory/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/codec.go -------------------------------------------------------------------------------- /x/tokenfactory/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/errors.go -------------------------------------------------------------------------------- /x/tokenfactory/types/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/event.pb.go -------------------------------------------------------------------------------- /x/tokenfactory/types/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/export.go -------------------------------------------------------------------------------- /x/tokenfactory/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/genesis.go -------------------------------------------------------------------------------- /x/tokenfactory/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/keys.go -------------------------------------------------------------------------------- /x/tokenfactory/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/query.pb.go -------------------------------------------------------------------------------- /x/tokenfactory/types/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/state.go -------------------------------------------------------------------------------- /x/tokenfactory/types/state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/state.pb.go -------------------------------------------------------------------------------- /x/tokenfactory/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/tx.pb.go -------------------------------------------------------------------------------- /x/tokenfactory/types/tx_msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NibiruChain/nibiru/HEAD/x/tokenfactory/types/tx_msgs.go --------------------------------------------------------------------------------