├── .cargo └── config.toml ├── .dockerignore ├── .github └── workflows │ ├── ci.yml │ ├── coverage.yml │ ├── deny.yml │ ├── release-check.yml │ ├── releaser.yml │ ├── tagpush.yml │ └── upload-release-assets.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── RELEASE.md ├── actors ├── account │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ └── account_actor_test.rs ├── cron │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── state.rs │ │ └── testing.rs │ └── tests │ │ └── cron_actor_test.rs ├── datacap │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ ├── datacap_actor_test.rs │ │ └── harness │ │ └── mod.rs ├── eam │ ├── Cargo.toml │ ├── src │ │ ├── ext.rs │ │ └── lib.rs │ └── tests │ │ └── create.rs ├── ethaccount │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ └── types.rs │ └── tests │ │ ├── ethaccount_test.rs │ │ └── util.rs ├── evm │ ├── Cargo.toml │ ├── Makefile │ ├── README.md │ ├── precompile-testdata │ │ ├── LICENSE │ │ ├── README.md │ │ ├── blake2F.json │ │ ├── bn256Add.json │ │ ├── bn256Pairing.json │ │ ├── bn256ScalarMul.json │ │ ├── ecRecover.json │ │ ├── fail-blake2f.json │ │ ├── modexp.json │ │ └── modexp_eip2565.json │ ├── shared │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── address.rs │ │ │ ├── lib.rs │ │ │ └── uints.rs │ ├── src │ │ ├── ext.rs │ │ ├── interpreter │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytecode.rs │ │ │ ├── execution.rs │ │ │ ├── instructions │ │ │ │ ├── arithmetic.rs │ │ │ │ ├── bitwise.rs │ │ │ │ ├── boolean.rs │ │ │ │ ├── call.rs │ │ │ │ ├── context.rs │ │ │ │ ├── control.rs │ │ │ │ ├── ext.rs │ │ │ │ ├── hash.rs │ │ │ │ ├── lifecycle.rs │ │ │ │ ├── log_event.rs │ │ │ │ ├── memory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── stack.rs │ │ │ │ ├── state.rs │ │ │ │ └── storage.rs │ │ │ ├── memory.rs │ │ │ ├── mod.rs │ │ │ ├── output.rs │ │ │ ├── precompiles │ │ │ │ ├── blake2f_impl.rs │ │ │ │ ├── bls12_381 │ │ │ │ │ ├── g1_add.rs │ │ │ │ │ ├── g1_msm.rs │ │ │ │ │ ├── g2_add.rs │ │ │ │ │ ├── g2_msm.rs │ │ │ │ │ ├── map_fp2_to_g2.rs │ │ │ │ │ ├── map_fp_to_g1.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── pairing.rs │ │ │ │ ├── bls_util.rs │ │ │ │ ├── evm.rs │ │ │ │ ├── fvm.rs │ │ │ │ └── mod.rs │ │ │ ├── stack.rs │ │ │ ├── system.rs │ │ │ └── test_util.rs │ │ ├── lib.rs │ │ ├── reader.rs │ │ ├── state.rs │ │ └── types.rs │ └── tests │ │ ├── asm.rs │ │ ├── basic.rs │ │ ├── calc.rs │ │ ├── call.rs │ │ ├── context_opcodes.rs │ │ ├── contracts │ │ ├── BLSPrecompile.hex │ │ ├── BLSPrecompile.sol │ │ ├── CallActorPrecompile.hex │ │ ├── CallActorPrecompile.sol │ │ ├── FeSimplecoin.fe │ │ ├── FilecoinFallback.hex │ │ ├── FilecoinFallback.sol │ │ ├── Lifecycle.hex │ │ ├── Lifecycle.sol │ │ ├── MCOPYTest.hex │ │ ├── MCOPYTest.sol │ │ ├── NotificationReceiver.hex │ │ ├── NotificationReceiver.sol │ │ ├── Recursive.hex │ │ ├── Recursive.sol │ │ ├── TransientStorageTest.hex │ │ ├── TransientStorageTest.sol │ │ ├── callvariants.eas │ │ ├── callvariants.hex │ │ ├── callvariants_body.eas │ │ ├── output │ │ │ └── FeSimplecoin │ │ │ │ ├── FeSimplecoin.bin │ │ │ │ └── FeSimplecoin_abi.json │ │ ├── recall_contract │ │ │ ├── README.md │ │ │ ├── implementation.hex │ │ │ └── proxy.hex │ │ ├── selfdestruct.hex │ │ ├── selfdestruct.sol │ │ ├── simplecoin.hex │ │ └── simplecoin.sol │ │ ├── create.rs │ │ ├── delegate_call.rs │ │ ├── env.rs │ │ ├── events.rs │ │ ├── ext_opcodes.rs │ │ ├── misc.rs │ │ ├── precompile.rs │ │ ├── revert.rs │ │ ├── selfdestruct.rs │ │ └── util.rs ├── init │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ └── init_actor_test.rs ├── market │ ├── Cargo.toml │ ├── src │ │ ├── balance_table.rs │ │ ├── deal.rs │ │ ├── emit.rs │ │ ├── ext.rs │ │ ├── lib.rs │ │ ├── policy.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ ├── activate_deal_failures.rs │ │ ├── batch_activate_deals.rs │ │ ├── cron_tick_deal_expiry.rs │ │ ├── cron_tick_deal_slashing.rs │ │ ├── cron_tick_timedout_deals.rs │ │ ├── deal_api_test.rs │ │ ├── deal_termination.rs │ │ ├── harness.rs │ │ ├── market_actor_legacy_tests.rs │ │ ├── market_actor_test.rs │ │ ├── on_miner_sectors_terminate.rs │ │ ├── publish_storage_deals_failures.rs │ │ ├── random_cron_epoch_during_publish.rs │ │ ├── sector_content_changed.rs │ │ ├── settle_deal_payments.rs │ │ ├── transient_marked_for_termination.rs │ │ └── verify_deals_for_activation_test.rs ├── miner │ ├── Cargo.toml │ ├── src │ │ ├── beneficiary.rs │ │ ├── bitfield_queue.rs │ │ ├── commd.rs │ │ ├── deadline_assignment.rs │ │ ├── deadline_info.rs │ │ ├── deadline_state.rs │ │ ├── deadlines.rs │ │ ├── emit.rs │ │ ├── expiration_queue.rs │ │ ├── expiration_queue │ │ │ └── tests.rs │ │ ├── ext.rs │ │ ├── internal_tests.rs │ │ ├── lib.rs │ │ ├── monies.rs │ │ ├── notifications.rs │ │ ├── partition_state.rs │ │ ├── policy.rs │ │ ├── quantize.rs │ │ ├── sector_map.rs │ │ ├── sectors.rs │ │ ├── state.rs │ │ ├── termination.rs │ │ ├── testing.rs │ │ ├── types.rs │ │ └── vesting_state.rs │ └── tests │ │ ├── apply_rewards.rs │ │ ├── change_beneficiary_test.rs │ │ ├── change_owner_address_test.rs │ │ ├── change_peer_id_test.rs │ │ ├── change_worker_address_test.rs │ │ ├── check_sector_proven_test.rs │ │ ├── compact_partitions_test.rs │ │ ├── compact_sector_numbers_tests.rs │ │ ├── confirm_update_worker_key_test.rs │ │ ├── daily_fees_test.rs │ │ ├── deadline_assignment.rs │ │ ├── deadline_cron.rs │ │ ├── deadline_cron_defers_stops_restarts.rs │ │ ├── deadline_helper.rs │ │ ├── deadline_state_test.rs │ │ ├── deadlines.rs │ │ ├── declare_faults.rs │ │ ├── declare_recoveries.rs │ │ ├── expected_reward_for_power_clampted_at_atto_fil_test.rs │ │ ├── expiration_queue.rs │ │ ├── exported_getters.rs │ │ ├── extend_sector_expiration_test.rs │ │ ├── fip0081_initial_pledge.rs │ │ ├── initial_pledge.rs │ │ ├── miner_actor_test_bitfield_queue.rs │ │ ├── miner_actor_test_commitment.rs │ │ ├── miner_actor_test_construction.rs │ │ ├── miner_actor_test_ctl_addrs.rs │ │ ├── miner_actor_test_partitions.rs │ │ ├── miner_actor_test_peer_info.rs │ │ ├── miner_actor_test_precommit_batch.rs │ │ ├── miner_actor_test_wpost.rs │ │ ├── monies_test.rs │ │ ├── pledge_penalty_for_termination.rs │ │ ├── policy_test.rs │ │ ├── precommit_deposit_and_initial_pledge_positive_test.rs │ │ ├── precommit_expiry.rs │ │ ├── precommitted_sector_stores.rs │ │ ├── prove_commit.rs │ │ ├── prove_commit_niporep.rs │ │ ├── prove_commit_sector_3_failures_test.rs │ │ ├── prove_commit_sector_3_test.rs │ │ ├── prove_replica_failures_test.rs │ │ ├── prove_replica_test.rs │ │ ├── record_skipped_faults.rs │ │ ├── repay_debt_test.rs │ │ ├── repay_debts.rs │ │ ├── report_consensus_fault.rs │ │ ├── sector_assignment.rs │ │ ├── sector_map_test.rs │ │ ├── sector_number_allocation.rs │ │ ├── sectors.rs │ │ ├── sectors_stores_test.rs │ │ ├── state_harness.rs │ │ ├── terminate_sectors_test.rs │ │ ├── termination_test.rs │ │ ├── types_test.rs │ │ ├── util.rs │ │ ├── vesting_add_locked_funds.rs │ │ ├── vesting_add_locked_funds_table.rs │ │ ├── vesting_unvested_funds.rs │ │ └── withdraw_balance.rs ├── multisig │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ ├── multisig_actor_test.rs │ │ └── util.rs ├── paych │ ├── Cargo.toml │ ├── src │ │ ├── ext.rs │ │ ├── lib.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ └── paych_actor_test.rs ├── placeholder │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── power │ ├── Cargo.toml │ ├── src │ │ ├── ext.rs │ │ ├── lib.rs │ │ ├── policy.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ └── tests │ │ ├── harness │ │ └── mod.rs │ │ ├── power_actor_tests.rs │ │ └── types_test.rs ├── reward │ ├── Cargo.toml │ ├── src │ │ ├── expneg.rs │ │ ├── ext.rs │ │ ├── lib.rs │ │ ├── logic.rs │ │ ├── state.rs │ │ ├── testing.rs │ │ └── types.rs │ ├── testdata │ │ ├── TestBaselineReward.golden │ │ └── TestSimpleReward.golden │ └── tests │ │ └── reward_actor_test.rs ├── system │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── verifreg │ ├── Cargo.toml │ ├── src │ ├── emit.rs │ ├── expiration.rs │ ├── ext.rs │ ├── lib.rs │ ├── state.rs │ ├── testing.rs │ └── types.rs │ └── tests │ ├── harness │ └── mod.rs │ └── verifreg_actor_test.rs ├── codecov.yml ├── deny.toml ├── examples ├── README.md └── dummy.rs ├── integration_tests ├── Cargo.toml ├── macro │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ ├── deals.rs │ ├── expects.rs │ ├── lib.rs │ ├── tests │ ├── authenticate_message_test.rs │ ├── batch_onboarding.rs │ ├── batch_onboarding_deals_test.rs │ ├── change_beneficiary_test.rs │ ├── change_owner_test.rs │ ├── commit_post_test.rs │ ├── datacap_tests.rs │ ├── evm_notification_test.rs │ ├── evm_test.rs │ ├── extend_sectors_test.rs │ ├── init_test.rs │ ├── market_miner_withdrawal_test.rs │ ├── mod.rs │ ├── multisig_test.rs │ ├── nested_multisig_test.rs │ ├── power_scenario_tests.rs │ ├── prove_commit3_test.rs │ ├── prove_commit_niporep_test.rs │ ├── publish_deals_test.rs │ ├── replica_update3_test.rs │ ├── terminate_test.rs │ ├── verified_claim_test.rs │ ├── verifreg_multisig_root_test.rs │ ├── verifreg_remove_datacap_test.rs │ └── withdraw_balance_test.rs │ └── util │ ├── mod.rs │ └── workflows.rs ├── output └── .keep ├── runtime ├── Cargo.toml ├── build.rs ├── src │ ├── actor_error.rs │ ├── builtin │ │ ├── mod.rs │ │ ├── network.rs │ │ ├── reward │ │ │ ├── math.rs │ │ │ ├── mod.rs │ │ │ └── smooth │ │ │ │ ├── alpha_beta_filter.rs │ │ │ │ ├── mod.rs │ │ │ │ └── smooth_func.rs │ │ ├── shared.rs │ │ └── singletons.rs │ ├── dispatch.rs │ ├── lib.rs │ ├── runtime │ │ ├── actor_blockstore.rs │ │ ├── actor_code.rs │ │ ├── builtins.rs │ │ ├── empty.rs │ │ ├── fvm.rs │ │ ├── hash_algorithm.rs │ │ ├── mod.rs │ │ ├── policy.rs │ │ └── randomness.rs │ ├── test_blockstores.rs │ ├── test_utils.rs │ └── util │ │ ├── batch_return.rs │ │ ├── cbor.rs │ │ ├── downcast.rs │ │ ├── events.rs │ │ ├── map.rs │ │ ├── mapmap.rs │ │ ├── message_accumulator.rs │ │ ├── mod.rs │ │ ├── multimap.rs │ │ ├── set.rs │ │ └── set_multimap.rs └── tests │ ├── batch_return_test.rs │ ├── mapmap_test.rs │ ├── multimap_test.rs │ ├── set_multimap_test.rs │ ├── set_test.rs │ └── types_test.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts ├── docker-entrypoint.sh └── upload-release-assets.sh ├── src ├── lib.rs └── main.rs ├── state ├── Cargo.toml └── src │ ├── check.rs │ └── lib.rs ├── test_vm ├── Cargo.toml ├── src │ ├── constants.rs │ ├── lib.rs │ └── messaging.rs └── tests │ ├── README.md │ ├── all_tests.rs │ └── suite │ ├── authenticate_message_test.rs │ ├── batch_onboarding.rs │ ├── batch_onboarding_deals_test.rs │ ├── change_beneficiary_test.rs │ ├── change_owner_test.rs │ ├── commit_post_test.rs │ ├── datacap_tests.rs │ ├── evm_notification_test.rs │ ├── evm_test.rs │ ├── extend_sectors_test.rs │ ├── init_test.rs │ ├── market_miner_withdrawal_test.rs │ ├── mod.rs │ ├── move_partitions_test.rs │ ├── multisig_test.rs │ ├── power_scenario_tests.rs │ ├── prove_commit3_test.rs │ ├── prove_commit_niporep_test.rs │ ├── publish_deals_test.rs │ ├── replica_update3_test.rs │ ├── replica_update_test.rs │ ├── terminate_test.rs │ ├── test_vm_test.rs │ ├── verified_claim_test.rs │ ├── verifreg_multisig_root_test.rs │ ├── verifreg_remove_datacap_test.rs │ └── withdraw_balance_test.rs └── vm_api ├── Cargo.toml └── src ├── builtin.rs ├── error.rs ├── lib.rs ├── trace.rs └── util ├── blockstore.rs └── mod.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/deny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/deny.yml -------------------------------------------------------------------------------- /.github/workflows/release-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/release-check.yml -------------------------------------------------------------------------------- /.github/workflows/releaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/releaser.yml -------------------------------------------------------------------------------- /.github/workflows/tagpush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/tagpush.yml -------------------------------------------------------------------------------- /.github/workflows/upload-release-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.github/workflows/upload-release-assets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/RELEASE.md -------------------------------------------------------------------------------- /actors/account/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/Cargo.toml -------------------------------------------------------------------------------- /actors/account/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/src/lib.rs -------------------------------------------------------------------------------- /actors/account/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/src/state.rs -------------------------------------------------------------------------------- /actors/account/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/src/testing.rs -------------------------------------------------------------------------------- /actors/account/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/src/types.rs -------------------------------------------------------------------------------- /actors/account/tests/account_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/account/tests/account_actor_test.rs -------------------------------------------------------------------------------- /actors/cron/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/cron/Cargo.toml -------------------------------------------------------------------------------- /actors/cron/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/cron/src/lib.rs -------------------------------------------------------------------------------- /actors/cron/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/cron/src/state.rs -------------------------------------------------------------------------------- /actors/cron/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/cron/src/testing.rs -------------------------------------------------------------------------------- /actors/cron/tests/cron_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/cron/tests/cron_actor_test.rs -------------------------------------------------------------------------------- /actors/datacap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/Cargo.toml -------------------------------------------------------------------------------- /actors/datacap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/src/lib.rs -------------------------------------------------------------------------------- /actors/datacap/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/src/state.rs -------------------------------------------------------------------------------- /actors/datacap/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/src/testing.rs -------------------------------------------------------------------------------- /actors/datacap/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/src/types.rs -------------------------------------------------------------------------------- /actors/datacap/tests/datacap_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/tests/datacap_actor_test.rs -------------------------------------------------------------------------------- /actors/datacap/tests/harness/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/datacap/tests/harness/mod.rs -------------------------------------------------------------------------------- /actors/eam/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/eam/Cargo.toml -------------------------------------------------------------------------------- /actors/eam/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/eam/src/ext.rs -------------------------------------------------------------------------------- /actors/eam/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/eam/src/lib.rs -------------------------------------------------------------------------------- /actors/eam/tests/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/eam/tests/create.rs -------------------------------------------------------------------------------- /actors/ethaccount/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/ethaccount/Cargo.toml -------------------------------------------------------------------------------- /actors/ethaccount/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/ethaccount/src/lib.rs -------------------------------------------------------------------------------- /actors/ethaccount/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/ethaccount/src/types.rs -------------------------------------------------------------------------------- /actors/ethaccount/tests/ethaccount_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/ethaccount/tests/ethaccount_test.rs -------------------------------------------------------------------------------- /actors/ethaccount/tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/ethaccount/tests/util.rs -------------------------------------------------------------------------------- /actors/evm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/Cargo.toml -------------------------------------------------------------------------------- /actors/evm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/Makefile -------------------------------------------------------------------------------- /actors/evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/README.md -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/LICENSE -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/README.md -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/blake2F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/blake2F.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/bn256Add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/bn256Add.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/bn256Pairing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/bn256Pairing.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/bn256ScalarMul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/bn256ScalarMul.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/ecRecover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/ecRecover.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/fail-blake2f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/fail-blake2f.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/modexp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/modexp.json -------------------------------------------------------------------------------- /actors/evm/precompile-testdata/modexp_eip2565.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/precompile-testdata/modexp_eip2565.json -------------------------------------------------------------------------------- /actors/evm/shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/shared/Cargo.toml -------------------------------------------------------------------------------- /actors/evm/shared/src/address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/shared/src/address.rs -------------------------------------------------------------------------------- /actors/evm/shared/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/shared/src/lib.rs -------------------------------------------------------------------------------- /actors/evm/shared/src/uints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/shared/src/uints.rs -------------------------------------------------------------------------------- /actors/evm/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/ext.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/LICENSE -------------------------------------------------------------------------------- /actors/evm/src/interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/README.md -------------------------------------------------------------------------------- /actors/evm/src/interpreter/bytecode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/bytecode.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/execution.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/arithmetic.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/bitwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/bitwise.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/boolean.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/call.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/context.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/control.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/ext.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/hash.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/lifecycle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/lifecycle.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/log_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/log_event.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/memory.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/mod.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/stack.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/state.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/instructions/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/instructions/storage.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/memory.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/mod.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/output.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/blake2f_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/blake2f_impl.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/g1_add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/g1_add.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/g1_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/g1_msm.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/g2_add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/g2_add.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/g2_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/g2_msm.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/map_fp2_to_g2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/map_fp2_to_g2.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/map_fp_to_g1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/map_fp_to_g1.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/mod.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls12_381/pairing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls12_381/pairing.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/bls_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/bls_util.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/evm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/evm.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/fvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/fvm.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/precompiles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/precompiles/mod.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/stack.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/system.rs -------------------------------------------------------------------------------- /actors/evm/src/interpreter/test_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/interpreter/test_util.rs -------------------------------------------------------------------------------- /actors/evm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/lib.rs -------------------------------------------------------------------------------- /actors/evm/src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/reader.rs -------------------------------------------------------------------------------- /actors/evm/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/state.rs -------------------------------------------------------------------------------- /actors/evm/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/src/types.rs -------------------------------------------------------------------------------- /actors/evm/tests/asm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/asm.rs -------------------------------------------------------------------------------- /actors/evm/tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/basic.rs -------------------------------------------------------------------------------- /actors/evm/tests/calc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/calc.rs -------------------------------------------------------------------------------- /actors/evm/tests/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/call.rs -------------------------------------------------------------------------------- /actors/evm/tests/context_opcodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/context_opcodes.rs -------------------------------------------------------------------------------- /actors/evm/tests/contracts/BLSPrecompile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/BLSPrecompile.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/BLSPrecompile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/BLSPrecompile.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/CallActorPrecompile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/CallActorPrecompile.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/CallActorPrecompile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/CallActorPrecompile.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/FeSimplecoin.fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/FeSimplecoin.fe -------------------------------------------------------------------------------- /actors/evm/tests/contracts/FilecoinFallback.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/FilecoinFallback.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/FilecoinFallback.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/FilecoinFallback.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/Lifecycle.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/Lifecycle.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/Lifecycle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/Lifecycle.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/MCOPYTest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/MCOPYTest.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/MCOPYTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/MCOPYTest.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/NotificationReceiver.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/NotificationReceiver.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/NotificationReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/NotificationReceiver.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/Recursive.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/Recursive.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/Recursive.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/Recursive.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/TransientStorageTest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/TransientStorageTest.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/TransientStorageTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/TransientStorageTest.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/callvariants.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/callvariants.eas -------------------------------------------------------------------------------- /actors/evm/tests/contracts/callvariants.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/callvariants.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/callvariants_body.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/callvariants_body.eas -------------------------------------------------------------------------------- /actors/evm/tests/contracts/output/FeSimplecoin/FeSimplecoin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/output/FeSimplecoin/FeSimplecoin.bin -------------------------------------------------------------------------------- /actors/evm/tests/contracts/output/FeSimplecoin/FeSimplecoin_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/output/FeSimplecoin/FeSimplecoin_abi.json -------------------------------------------------------------------------------- /actors/evm/tests/contracts/recall_contract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/recall_contract/README.md -------------------------------------------------------------------------------- /actors/evm/tests/contracts/recall_contract/implementation.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/recall_contract/implementation.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/recall_contract/proxy.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/recall_contract/proxy.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/selfdestruct.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/selfdestruct.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/selfdestruct.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/selfdestruct.sol -------------------------------------------------------------------------------- /actors/evm/tests/contracts/simplecoin.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/simplecoin.hex -------------------------------------------------------------------------------- /actors/evm/tests/contracts/simplecoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/contracts/simplecoin.sol -------------------------------------------------------------------------------- /actors/evm/tests/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/create.rs -------------------------------------------------------------------------------- /actors/evm/tests/delegate_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/delegate_call.rs -------------------------------------------------------------------------------- /actors/evm/tests/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/env.rs -------------------------------------------------------------------------------- /actors/evm/tests/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/events.rs -------------------------------------------------------------------------------- /actors/evm/tests/ext_opcodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/ext_opcodes.rs -------------------------------------------------------------------------------- /actors/evm/tests/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/misc.rs -------------------------------------------------------------------------------- /actors/evm/tests/precompile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/precompile.rs -------------------------------------------------------------------------------- /actors/evm/tests/revert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/revert.rs -------------------------------------------------------------------------------- /actors/evm/tests/selfdestruct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/selfdestruct.rs -------------------------------------------------------------------------------- /actors/evm/tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/evm/tests/util.rs -------------------------------------------------------------------------------- /actors/init/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/Cargo.toml -------------------------------------------------------------------------------- /actors/init/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/src/lib.rs -------------------------------------------------------------------------------- /actors/init/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/src/state.rs -------------------------------------------------------------------------------- /actors/init/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/src/testing.rs -------------------------------------------------------------------------------- /actors/init/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/src/types.rs -------------------------------------------------------------------------------- /actors/init/tests/init_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/init/tests/init_actor_test.rs -------------------------------------------------------------------------------- /actors/market/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/Cargo.toml -------------------------------------------------------------------------------- /actors/market/src/balance_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/balance_table.rs -------------------------------------------------------------------------------- /actors/market/src/deal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/deal.rs -------------------------------------------------------------------------------- /actors/market/src/emit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/emit.rs -------------------------------------------------------------------------------- /actors/market/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/ext.rs -------------------------------------------------------------------------------- /actors/market/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/lib.rs -------------------------------------------------------------------------------- /actors/market/src/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/policy.rs -------------------------------------------------------------------------------- /actors/market/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/state.rs -------------------------------------------------------------------------------- /actors/market/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/testing.rs -------------------------------------------------------------------------------- /actors/market/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/src/types.rs -------------------------------------------------------------------------------- /actors/market/tests/activate_deal_failures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/activate_deal_failures.rs -------------------------------------------------------------------------------- /actors/market/tests/batch_activate_deals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/batch_activate_deals.rs -------------------------------------------------------------------------------- /actors/market/tests/cron_tick_deal_expiry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/cron_tick_deal_expiry.rs -------------------------------------------------------------------------------- /actors/market/tests/cron_tick_deal_slashing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/cron_tick_deal_slashing.rs -------------------------------------------------------------------------------- /actors/market/tests/cron_tick_timedout_deals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/cron_tick_timedout_deals.rs -------------------------------------------------------------------------------- /actors/market/tests/deal_api_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/deal_api_test.rs -------------------------------------------------------------------------------- /actors/market/tests/deal_termination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/deal_termination.rs -------------------------------------------------------------------------------- /actors/market/tests/harness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/harness.rs -------------------------------------------------------------------------------- /actors/market/tests/market_actor_legacy_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/market_actor_legacy_tests.rs -------------------------------------------------------------------------------- /actors/market/tests/market_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/market_actor_test.rs -------------------------------------------------------------------------------- /actors/market/tests/on_miner_sectors_terminate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/on_miner_sectors_terminate.rs -------------------------------------------------------------------------------- /actors/market/tests/publish_storage_deals_failures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/publish_storage_deals_failures.rs -------------------------------------------------------------------------------- /actors/market/tests/random_cron_epoch_during_publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/random_cron_epoch_during_publish.rs -------------------------------------------------------------------------------- /actors/market/tests/sector_content_changed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/sector_content_changed.rs -------------------------------------------------------------------------------- /actors/market/tests/settle_deal_payments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/settle_deal_payments.rs -------------------------------------------------------------------------------- /actors/market/tests/transient_marked_for_termination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/transient_marked_for_termination.rs -------------------------------------------------------------------------------- /actors/market/tests/verify_deals_for_activation_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/market/tests/verify_deals_for_activation_test.rs -------------------------------------------------------------------------------- /actors/miner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/Cargo.toml -------------------------------------------------------------------------------- /actors/miner/src/beneficiary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/beneficiary.rs -------------------------------------------------------------------------------- /actors/miner/src/bitfield_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/bitfield_queue.rs -------------------------------------------------------------------------------- /actors/miner/src/commd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/commd.rs -------------------------------------------------------------------------------- /actors/miner/src/deadline_assignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/deadline_assignment.rs -------------------------------------------------------------------------------- /actors/miner/src/deadline_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/deadline_info.rs -------------------------------------------------------------------------------- /actors/miner/src/deadline_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/deadline_state.rs -------------------------------------------------------------------------------- /actors/miner/src/deadlines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/deadlines.rs -------------------------------------------------------------------------------- /actors/miner/src/emit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/emit.rs -------------------------------------------------------------------------------- /actors/miner/src/expiration_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/expiration_queue.rs -------------------------------------------------------------------------------- /actors/miner/src/expiration_queue/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/expiration_queue/tests.rs -------------------------------------------------------------------------------- /actors/miner/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/ext.rs -------------------------------------------------------------------------------- /actors/miner/src/internal_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/internal_tests.rs -------------------------------------------------------------------------------- /actors/miner/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/lib.rs -------------------------------------------------------------------------------- /actors/miner/src/monies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/monies.rs -------------------------------------------------------------------------------- /actors/miner/src/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/notifications.rs -------------------------------------------------------------------------------- /actors/miner/src/partition_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/partition_state.rs -------------------------------------------------------------------------------- /actors/miner/src/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/policy.rs -------------------------------------------------------------------------------- /actors/miner/src/quantize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/quantize.rs -------------------------------------------------------------------------------- /actors/miner/src/sector_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/sector_map.rs -------------------------------------------------------------------------------- /actors/miner/src/sectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/sectors.rs -------------------------------------------------------------------------------- /actors/miner/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/state.rs -------------------------------------------------------------------------------- /actors/miner/src/termination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/termination.rs -------------------------------------------------------------------------------- /actors/miner/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/testing.rs -------------------------------------------------------------------------------- /actors/miner/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/types.rs -------------------------------------------------------------------------------- /actors/miner/src/vesting_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/src/vesting_state.rs -------------------------------------------------------------------------------- /actors/miner/tests/apply_rewards.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/apply_rewards.rs -------------------------------------------------------------------------------- /actors/miner/tests/change_beneficiary_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/change_beneficiary_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/change_owner_address_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/change_owner_address_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/change_peer_id_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/change_peer_id_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/change_worker_address_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/change_worker_address_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/check_sector_proven_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/check_sector_proven_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/compact_partitions_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/compact_partitions_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/compact_sector_numbers_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/compact_sector_numbers_tests.rs -------------------------------------------------------------------------------- /actors/miner/tests/confirm_update_worker_key_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/confirm_update_worker_key_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/daily_fees_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/daily_fees_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadline_assignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadline_assignment.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadline_cron.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadline_cron.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadline_cron_defers_stops_restarts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadline_cron_defers_stops_restarts.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadline_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadline_helper.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadline_state_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadline_state_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/deadlines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/deadlines.rs -------------------------------------------------------------------------------- /actors/miner/tests/declare_faults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/declare_faults.rs -------------------------------------------------------------------------------- /actors/miner/tests/declare_recoveries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/declare_recoveries.rs -------------------------------------------------------------------------------- /actors/miner/tests/expected_reward_for_power_clampted_at_atto_fil_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/expected_reward_for_power_clampted_at_atto_fil_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/expiration_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/expiration_queue.rs -------------------------------------------------------------------------------- /actors/miner/tests/exported_getters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/exported_getters.rs -------------------------------------------------------------------------------- /actors/miner/tests/extend_sector_expiration_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/extend_sector_expiration_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/fip0081_initial_pledge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/fip0081_initial_pledge.rs -------------------------------------------------------------------------------- /actors/miner/tests/initial_pledge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/initial_pledge.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_bitfield_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_bitfield_queue.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_commitment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_commitment.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_construction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_construction.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_ctl_addrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_ctl_addrs.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_partitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_partitions.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_peer_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_peer_info.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_precommit_batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_precommit_batch.rs -------------------------------------------------------------------------------- /actors/miner/tests/miner_actor_test_wpost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/miner_actor_test_wpost.rs -------------------------------------------------------------------------------- /actors/miner/tests/monies_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/monies_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/pledge_penalty_for_termination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/pledge_penalty_for_termination.rs -------------------------------------------------------------------------------- /actors/miner/tests/policy_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/policy_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/precommit_deposit_and_initial_pledge_positive_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/precommit_deposit_and_initial_pledge_positive_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/precommit_expiry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/precommit_expiry.rs -------------------------------------------------------------------------------- /actors/miner/tests/precommitted_sector_stores.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/precommitted_sector_stores.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_commit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_commit.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_commit_niporep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_commit_niporep.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_commit_sector_3_failures_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_commit_sector_3_failures_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_commit_sector_3_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_commit_sector_3_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_replica_failures_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_replica_failures_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/prove_replica_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/prove_replica_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/record_skipped_faults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/record_skipped_faults.rs -------------------------------------------------------------------------------- /actors/miner/tests/repay_debt_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/repay_debt_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/repay_debts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/repay_debts.rs -------------------------------------------------------------------------------- /actors/miner/tests/report_consensus_fault.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/report_consensus_fault.rs -------------------------------------------------------------------------------- /actors/miner/tests/sector_assignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/sector_assignment.rs -------------------------------------------------------------------------------- /actors/miner/tests/sector_map_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/sector_map_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/sector_number_allocation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/sector_number_allocation.rs -------------------------------------------------------------------------------- /actors/miner/tests/sectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/sectors.rs -------------------------------------------------------------------------------- /actors/miner/tests/sectors_stores_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/sectors_stores_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/state_harness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/state_harness.rs -------------------------------------------------------------------------------- /actors/miner/tests/terminate_sectors_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/terminate_sectors_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/termination_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/termination_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/types_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/types_test.rs -------------------------------------------------------------------------------- /actors/miner/tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/util.rs -------------------------------------------------------------------------------- /actors/miner/tests/vesting_add_locked_funds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/vesting_add_locked_funds.rs -------------------------------------------------------------------------------- /actors/miner/tests/vesting_add_locked_funds_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/vesting_add_locked_funds_table.rs -------------------------------------------------------------------------------- /actors/miner/tests/vesting_unvested_funds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/vesting_unvested_funds.rs -------------------------------------------------------------------------------- /actors/miner/tests/withdraw_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/miner/tests/withdraw_balance.rs -------------------------------------------------------------------------------- /actors/multisig/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/Cargo.toml -------------------------------------------------------------------------------- /actors/multisig/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/src/lib.rs -------------------------------------------------------------------------------- /actors/multisig/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/src/state.rs -------------------------------------------------------------------------------- /actors/multisig/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/src/testing.rs -------------------------------------------------------------------------------- /actors/multisig/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/src/types.rs -------------------------------------------------------------------------------- /actors/multisig/tests/multisig_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/tests/multisig_actor_test.rs -------------------------------------------------------------------------------- /actors/multisig/tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/multisig/tests/util.rs -------------------------------------------------------------------------------- /actors/paych/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/Cargo.toml -------------------------------------------------------------------------------- /actors/paych/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/src/ext.rs -------------------------------------------------------------------------------- /actors/paych/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/src/lib.rs -------------------------------------------------------------------------------- /actors/paych/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/src/state.rs -------------------------------------------------------------------------------- /actors/paych/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/src/testing.rs -------------------------------------------------------------------------------- /actors/paych/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/src/types.rs -------------------------------------------------------------------------------- /actors/paych/tests/paych_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/paych/tests/paych_actor_test.rs -------------------------------------------------------------------------------- /actors/placeholder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/placeholder/Cargo.toml -------------------------------------------------------------------------------- /actors/placeholder/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/placeholder/src/lib.rs -------------------------------------------------------------------------------- /actors/power/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/Cargo.toml -------------------------------------------------------------------------------- /actors/power/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/ext.rs -------------------------------------------------------------------------------- /actors/power/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/lib.rs -------------------------------------------------------------------------------- /actors/power/src/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/policy.rs -------------------------------------------------------------------------------- /actors/power/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/state.rs -------------------------------------------------------------------------------- /actors/power/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/testing.rs -------------------------------------------------------------------------------- /actors/power/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/src/types.rs -------------------------------------------------------------------------------- /actors/power/tests/harness/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/tests/harness/mod.rs -------------------------------------------------------------------------------- /actors/power/tests/power_actor_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/tests/power_actor_tests.rs -------------------------------------------------------------------------------- /actors/power/tests/types_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/power/tests/types_test.rs -------------------------------------------------------------------------------- /actors/reward/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/Cargo.toml -------------------------------------------------------------------------------- /actors/reward/src/expneg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/expneg.rs -------------------------------------------------------------------------------- /actors/reward/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/ext.rs -------------------------------------------------------------------------------- /actors/reward/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/lib.rs -------------------------------------------------------------------------------- /actors/reward/src/logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/logic.rs -------------------------------------------------------------------------------- /actors/reward/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/state.rs -------------------------------------------------------------------------------- /actors/reward/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/testing.rs -------------------------------------------------------------------------------- /actors/reward/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/src/types.rs -------------------------------------------------------------------------------- /actors/reward/testdata/TestBaselineReward.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/testdata/TestBaselineReward.golden -------------------------------------------------------------------------------- /actors/reward/testdata/TestSimpleReward.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/testdata/TestSimpleReward.golden -------------------------------------------------------------------------------- /actors/reward/tests/reward_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/reward/tests/reward_actor_test.rs -------------------------------------------------------------------------------- /actors/system/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/system/Cargo.toml -------------------------------------------------------------------------------- /actors/system/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/system/src/lib.rs -------------------------------------------------------------------------------- /actors/verifreg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/Cargo.toml -------------------------------------------------------------------------------- /actors/verifreg/src/emit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/emit.rs -------------------------------------------------------------------------------- /actors/verifreg/src/expiration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/expiration.rs -------------------------------------------------------------------------------- /actors/verifreg/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/ext.rs -------------------------------------------------------------------------------- /actors/verifreg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/lib.rs -------------------------------------------------------------------------------- /actors/verifreg/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/state.rs -------------------------------------------------------------------------------- /actors/verifreg/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/testing.rs -------------------------------------------------------------------------------- /actors/verifreg/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/src/types.rs -------------------------------------------------------------------------------- /actors/verifreg/tests/harness/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/tests/harness/mod.rs -------------------------------------------------------------------------------- /actors/verifreg/tests/verifreg_actor_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/actors/verifreg/tests/verifreg_actor_test.rs -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - (?s:.*/tests/.*)\Z 3 | comment: 4 | require_base: false -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/deny.toml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/dummy.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /integration_tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/Cargo.toml -------------------------------------------------------------------------------- /integration_tests/macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/macro/Cargo.toml -------------------------------------------------------------------------------- /integration_tests/macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/macro/src/lib.rs -------------------------------------------------------------------------------- /integration_tests/src/deals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/deals.rs -------------------------------------------------------------------------------- /integration_tests/src/expects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/expects.rs -------------------------------------------------------------------------------- /integration_tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/lib.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/authenticate_message_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/authenticate_message_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/batch_onboarding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/batch_onboarding.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/batch_onboarding_deals_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/batch_onboarding_deals_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/change_beneficiary_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/change_beneficiary_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/change_owner_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/change_owner_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/commit_post_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/commit_post_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/datacap_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/datacap_tests.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/evm_notification_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/evm_notification_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/evm_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/evm_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/extend_sectors_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/extend_sectors_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/init_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/init_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/market_miner_withdrawal_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/market_miner_withdrawal_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/mod.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/multisig_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/multisig_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/nested_multisig_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/nested_multisig_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/power_scenario_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/power_scenario_tests.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/prove_commit3_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/prove_commit3_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/prove_commit_niporep_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/prove_commit_niporep_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/publish_deals_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/publish_deals_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/replica_update3_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/replica_update3_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/terminate_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/terminate_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/verified_claim_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/verified_claim_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/verifreg_multisig_root_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/verifreg_multisig_root_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/verifreg_remove_datacap_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/verifreg_remove_datacap_test.rs -------------------------------------------------------------------------------- /integration_tests/src/tests/withdraw_balance_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/tests/withdraw_balance_test.rs -------------------------------------------------------------------------------- /integration_tests/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/util/mod.rs -------------------------------------------------------------------------------- /integration_tests/src/util/workflows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/integration_tests/src/util/workflows.rs -------------------------------------------------------------------------------- /output/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/Cargo.toml -------------------------------------------------------------------------------- /runtime/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/build.rs -------------------------------------------------------------------------------- /runtime/src/actor_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/actor_error.rs -------------------------------------------------------------------------------- /runtime/src/builtin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/mod.rs -------------------------------------------------------------------------------- /runtime/src/builtin/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/network.rs -------------------------------------------------------------------------------- /runtime/src/builtin/reward/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/reward/math.rs -------------------------------------------------------------------------------- /runtime/src/builtin/reward/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/reward/mod.rs -------------------------------------------------------------------------------- /runtime/src/builtin/reward/smooth/alpha_beta_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/reward/smooth/alpha_beta_filter.rs -------------------------------------------------------------------------------- /runtime/src/builtin/reward/smooth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/reward/smooth/mod.rs -------------------------------------------------------------------------------- /runtime/src/builtin/reward/smooth/smooth_func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/reward/smooth/smooth_func.rs -------------------------------------------------------------------------------- /runtime/src/builtin/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/shared.rs -------------------------------------------------------------------------------- /runtime/src/builtin/singletons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/builtin/singletons.rs -------------------------------------------------------------------------------- /runtime/src/dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/dispatch.rs -------------------------------------------------------------------------------- /runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/lib.rs -------------------------------------------------------------------------------- /runtime/src/runtime/actor_blockstore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/actor_blockstore.rs -------------------------------------------------------------------------------- /runtime/src/runtime/actor_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/actor_code.rs -------------------------------------------------------------------------------- /runtime/src/runtime/builtins.rs: -------------------------------------------------------------------------------- 1 | pub use vm_api::builtin::Type; 2 | -------------------------------------------------------------------------------- /runtime/src/runtime/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/empty.rs -------------------------------------------------------------------------------- /runtime/src/runtime/fvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/fvm.rs -------------------------------------------------------------------------------- /runtime/src/runtime/hash_algorithm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/hash_algorithm.rs -------------------------------------------------------------------------------- /runtime/src/runtime/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/mod.rs -------------------------------------------------------------------------------- /runtime/src/runtime/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/policy.rs -------------------------------------------------------------------------------- /runtime/src/runtime/randomness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/runtime/randomness.rs -------------------------------------------------------------------------------- /runtime/src/test_blockstores.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/test_blockstores.rs -------------------------------------------------------------------------------- /runtime/src/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/test_utils.rs -------------------------------------------------------------------------------- /runtime/src/util/batch_return.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/batch_return.rs -------------------------------------------------------------------------------- /runtime/src/util/cbor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/cbor.rs -------------------------------------------------------------------------------- /runtime/src/util/downcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/downcast.rs -------------------------------------------------------------------------------- /runtime/src/util/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/events.rs -------------------------------------------------------------------------------- /runtime/src/util/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/map.rs -------------------------------------------------------------------------------- /runtime/src/util/mapmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/mapmap.rs -------------------------------------------------------------------------------- /runtime/src/util/message_accumulator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/message_accumulator.rs -------------------------------------------------------------------------------- /runtime/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/mod.rs -------------------------------------------------------------------------------- /runtime/src/util/multimap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/multimap.rs -------------------------------------------------------------------------------- /runtime/src/util/set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/set.rs -------------------------------------------------------------------------------- /runtime/src/util/set_multimap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/src/util/set_multimap.rs -------------------------------------------------------------------------------- /runtime/tests/batch_return_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/batch_return_test.rs -------------------------------------------------------------------------------- /runtime/tests/mapmap_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/mapmap_test.rs -------------------------------------------------------------------------------- /runtime/tests/multimap_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/multimap_test.rs -------------------------------------------------------------------------------- /runtime/tests/set_multimap_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/set_multimap_test.rs -------------------------------------------------------------------------------- /runtime/tests/set_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/set_test.rs -------------------------------------------------------------------------------- /runtime/tests/types_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/runtime/tests/types_test.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_small_heuristics = "Max" 2 | -------------------------------------------------------------------------------- /scripts/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/scripts/docker-entrypoint.sh -------------------------------------------------------------------------------- /scripts/upload-release-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/scripts/upload-release-assets.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/src/main.rs -------------------------------------------------------------------------------- /state/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/state/Cargo.toml -------------------------------------------------------------------------------- /state/src/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/state/src/check.rs -------------------------------------------------------------------------------- /state/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod check; 2 | -------------------------------------------------------------------------------- /test_vm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/Cargo.toml -------------------------------------------------------------------------------- /test_vm/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/src/constants.rs -------------------------------------------------------------------------------- /test_vm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/src/lib.rs -------------------------------------------------------------------------------- /test_vm/src/messaging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/src/messaging.rs -------------------------------------------------------------------------------- /test_vm/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/README.md -------------------------------------------------------------------------------- /test_vm/tests/all_tests.rs: -------------------------------------------------------------------------------- 1 | mod suite; 2 | -------------------------------------------------------------------------------- /test_vm/tests/suite/authenticate_message_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/authenticate_message_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/batch_onboarding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/batch_onboarding.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/batch_onboarding_deals_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/batch_onboarding_deals_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/change_beneficiary_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/change_beneficiary_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/change_owner_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/change_owner_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/commit_post_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/commit_post_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/datacap_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/datacap_tests.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/evm_notification_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/evm_notification_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/evm_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/evm_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/extend_sectors_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/extend_sectors_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/init_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/init_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/market_miner_withdrawal_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/market_miner_withdrawal_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/mod.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/move_partitions_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/move_partitions_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/multisig_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/multisig_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/power_scenario_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/power_scenario_tests.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/prove_commit3_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/prove_commit3_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/prove_commit_niporep_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/prove_commit_niporep_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/publish_deals_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/publish_deals_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/replica_update3_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/replica_update3_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/replica_update_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/replica_update_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/terminate_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/terminate_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/test_vm_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/test_vm_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/verified_claim_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/verified_claim_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/verifreg_multisig_root_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/verifreg_multisig_root_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/verifreg_remove_datacap_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/verifreg_remove_datacap_test.rs -------------------------------------------------------------------------------- /test_vm/tests/suite/withdraw_balance_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/test_vm/tests/suite/withdraw_balance_test.rs -------------------------------------------------------------------------------- /vm_api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/Cargo.toml -------------------------------------------------------------------------------- /vm_api/src/builtin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/builtin.rs -------------------------------------------------------------------------------- /vm_api/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/error.rs -------------------------------------------------------------------------------- /vm_api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/lib.rs -------------------------------------------------------------------------------- /vm_api/src/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/trace.rs -------------------------------------------------------------------------------- /vm_api/src/util/blockstore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/util/blockstore.rs -------------------------------------------------------------------------------- /vm_api/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/builtin-actors/HEAD/vm_api/src/util/mod.rs --------------------------------------------------------------------------------