├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── SECURITY.md ├── contracts ├── Crypto.cdc ├── FlowExecutionParameters.cdc ├── FlowFees.cdc ├── FlowIDTableStaking.cdc ├── FlowServiceAccount.cdc ├── FlowStakingCollection.cdc ├── FlowStorageFees.cdc ├── FlowToken.cdc ├── FlowTransactionScheduler.cdc ├── FlowTransactionSchedulerUtils.cdc ├── LinearCodeAddressGenerator.cdc ├── LockedTokens.cdc ├── NodeVersionBeacon.cdc ├── RandomBeaconHistory.cdc ├── StakingProxy.cdc ├── epochs │ ├── FlowClusterQC.cdc │ ├── FlowDKG.cdc │ └── FlowEpoch.cdc └── testContracts │ ├── TestFlowIDTableStaking.cdc │ └── TestFlowScheduledTransactionHandler.cdc ├── flow.json ├── lib └── go │ ├── Makefile │ ├── contracts │ ├── Makefile │ ├── contracts.go │ ├── contracts_test.go │ ├── go.mod │ ├── go.sum │ └── internal │ │ └── assets │ │ └── assets.go │ ├── templates │ ├── Makefile │ ├── README.md │ ├── cmd │ │ └── manifest │ │ │ ├── main.go │ │ │ └── manifest.go │ ├── delegator_templates.go │ ├── epoch_templates.go │ ├── flow_dkg_templates.go │ ├── flow_qc_templates.go │ ├── go.mod │ ├── go.sum │ ├── idtable_staking_templates.go │ ├── internal │ │ └── assets │ │ │ └── assets.go │ ├── lockedtokens_templates.go │ ├── manifest.mainnet.json │ ├── manifest.testnet.json │ ├── node_version_beacon_templates.go │ ├── scheduled_transaction_templates.go │ ├── service_templates.go │ ├── stakingProxy_templates.go │ ├── staking_collection_templates.go │ └── templates.go │ └── test │ ├── Makefile │ ├── crypto_test.go │ ├── epoch_test_helpers.go │ ├── flow_dkg_test.go │ ├── flow_epoch_test.go │ ├── flow_idtable_nodes_test.go │ ├── flow_idtable_staking_test.go │ ├── flow_lockedtokens_test.go │ ├── flow_qc_test.go │ ├── flow_stakingcollection_test.go │ ├── flow_stakingproxy_test.go │ ├── go.mod │ ├── go.sum │ ├── lockedtokens_helpers.go │ ├── node_version_beacon_test.go │ ├── random_beacon_test.go │ ├── service_test.go │ ├── staking_test_helpers.go │ ├── static │ ├── recover_new_epoch_unchecked.cdc │ └── static.go │ └── test.go ├── tests ├── LinearCodeAddressGenerator_test.cdc ├── account_txs_test.cdc ├── crypto_test.cdc ├── dkg_test.cdc ├── random_beacon_history_test.cdc ├── scheduled_transaction_test_helpers.cdc ├── scripts │ ├── get_data_size.cdc │ ├── get_executed_transactions.cdc │ ├── get_lowest_height.cdc │ ├── get_manager_timestamps.cdc │ ├── get_pending_queue.cdc │ └── get_timestamp.cdc ├── transactionScheduler_events_test.cdc ├── transactionScheduler_manager_test.cdc ├── transactionScheduler_misc_test.cdc ├── transactionScheduler_schedule_test_tmp_no_ci.cdc ├── transactionScheduler_test.cdc └── transactions │ ├── destroy_handler.cdc │ ├── execute_transaction.cdc │ ├── execute_transaction_with_capability.cdc │ ├── record_random_source.cdc │ ├── schedule_tx_with_different_handler.cdc │ └── upgrade_contract.cdc └── transactions ├── FlowServiceAccount ├── add_account_creator.cdc ├── deposit_fees.cdc ├── remove_account_creator.cdc ├── scripts │ ├── get_account_creators.cdc │ ├── get_account_fee.cdc │ ├── get_execution_effort_weights.cdc │ ├── get_execution_memory_limit.cdc │ ├── get_execution_memory_weights.cdc │ ├── get_fees_balance.cdc │ ├── get_is_account_creation_restricted.cdc │ ├── get_is_account_creator.cdc │ ├── get_tx_fee_parameters.cdc │ └── verify_payer_balance_for_tx_execution.cdc ├── set_execution_effort_weights.cdc ├── set_execution_memory_limit.cdc ├── set_execution_memory_weights.cdc ├── set_is_account_creation_restricted.cdc ├── set_tx_fee_parameters.cdc └── set_tx_fee_surge_factor.cdc ├── accounts ├── add_key.cdc ├── create_new_account.cdc └── revoke_key.cdc ├── dkg ├── admin │ ├── force_stop_dkg.cdc │ ├── publish_admin.cdc │ ├── set_safe_threshold.cdc │ ├── start_dkg.cdc │ └── stop_dkg.cdc ├── create_participant.cdc ├── scripts │ ├── get_consensus_nodes.cdc │ ├── get_dkg_canonical_final_submission.cdc │ ├── get_dkg_completed.cdc │ ├── get_dkg_enabled.cdc │ ├── get_final_submissions.cdc │ ├── get_latest_whiteboard_messages.cdc │ ├── get_node_final_submission.cdc │ ├── get_node_has_submitted.cdc │ ├── get_node_is_claimed.cdc │ ├── get_node_is_registered.cdc │ ├── get_thresholds.cdc │ └── get_whiteboard_messages.cdc ├── send_empty_final_submission.cdc ├── send_final_submission.cdc └── send_whiteboard_message.cdc ├── epoch ├── admin │ ├── advance_view.cdc │ ├── calculate_rewards.cdc │ ├── deploy_epoch.cdc │ ├── deploy_qc_dkg.cdc │ ├── pay_rewards.cdc │ ├── recover_epoch.cdc │ ├── reset_epoch.cdc │ ├── set_automatic_rewards.cdc │ ├── set_bonus_tokens.cdc │ ├── update_clusters.cdc │ ├── update_dkg_phase_views.cdc │ ├── update_epoch_config.cdc │ ├── update_epoch_timing_config.cdc │ ├── update_epoch_views.cdc │ ├── update_reward.cdc │ └── update_staking_views.cdc ├── node │ ├── register_dkg_participant.cdc │ ├── register_node.cdc │ └── register_qc_voter.cdc └── scripts │ ├── get_bonus_tokens.cdc │ ├── get_config_metadata.cdc │ ├── get_create_clusters.cdc │ ├── get_current_view.cdc │ ├── get_epoch_counter.cdc │ ├── get_epoch_metadata.cdc │ ├── get_epoch_phase.cdc │ ├── get_epoch_timing_config.cdc │ ├── get_proposed_counter.cdc │ ├── get_randomize.cdc │ └── get_target_end_time_for_epoch.cdc ├── flowToken ├── burn_tokens.cdc ├── create_forwarder.cdc ├── mint_tokens.cdc ├── scripts │ ├── get_balance.cdc │ └── get_supply.cdc ├── setup_account.cdc └── transfer_tokens.cdc ├── idTableStaking ├── admin │ ├── add_approved_and_limits.cdc │ ├── add_approved_nodes.cdc │ ├── capability_end_epoch.cdc │ ├── change_candidate_limits.cdc │ ├── change_cut.cdc │ ├── change_del_minimums.cdc │ ├── change_minimums.cdc │ ├── change_payout.cdc │ ├── end_epoch.cdc │ ├── end_epoch_change_payout.cdc │ ├── end_staking.cdc │ ├── move_tokens.cdc │ ├── pay_rewards.cdc │ ├── remove_approved_nodes.cdc │ ├── remove_invalid_nodes.cdc │ ├── remove_node.cdc │ ├── scale_rewards_test.cdc │ ├── set_approved_nodes.cdc │ ├── set_claimed.cdc │ ├── set_node_weight.cdc │ ├── set_non_operational.cdc │ ├── set_open_access_node_slots.cdc │ ├── set_slot_limits.cdc │ ├── start_staking.cdc │ ├── transfer_admin.cdc │ ├── transfer_fees_admin.cdc │ ├── transfer_minter_deploy.cdc │ ├── upgrade_set_claimed.cdc │ └── upgrade_staking.cdc ├── delegation │ ├── del_request_unstaking.cdc │ ├── del_stake_new_tokens.cdc │ ├── del_stake_rewarded.cdc │ ├── del_stake_unstaked.cdc │ ├── del_withdraw_reward_tokens.cdc │ ├── del_withdraw_unstaked_tokens.cdc │ ├── get_delegator_committed.cdc │ ├── get_delegator_info.cdc │ ├── get_delegator_info_from_address.cdc │ ├── get_delegator_request.cdc │ ├── get_delegator_rewarded.cdc │ ├── get_delegator_staked.cdc │ ├── get_delegator_unstaked.cdc │ ├── get_delegator_unstaking.cdc │ ├── get_delegator_unstaking_request.cdc │ ├── register_delegator.cdc │ └── register_many_delegators.cdc ├── node │ ├── register_many_nodes.cdc │ ├── register_node.cdc │ ├── request_unstake.cdc │ ├── stake_new_tokens.cdc │ ├── stake_rewarded_tokens.cdc │ ├── stake_unstaked_tokens.cdc │ ├── unstake_all.cdc │ ├── update_networking_address.cdc │ ├── withdraw_reward_tokens.cdc │ └── withdraw_unstaked_tokens.cdc └── scripts │ ├── get_approved_but_not_staked_nodes.cdc │ ├── get_approved_nodes.cdc │ ├── get_candidate_limits.cdc │ ├── get_candidate_nodes.cdc │ ├── get_current_table.cdc │ ├── get_cut_percentage.cdc │ ├── get_del_stake_requirements.cdc │ ├── get_delegators_below_min.cdc │ ├── get_moves_pending.cdc │ ├── get_node_committed_tokens.cdc │ ├── get_node_info.cdc │ ├── get_node_info_from_address.cdc │ ├── get_node_initial_weight.cdc │ ├── get_node_networking_addr.cdc │ ├── get_node_networking_key.cdc │ ├── get_node_rewarded_tokens.cdc │ ├── get_node_role.cdc │ ├── get_node_staked_tokens.cdc │ ├── get_node_staking_key.cdc │ ├── get_node_total_commitment.cdc │ ├── get_node_total_commitment_without_delegators.cdc │ ├── get_node_type_ratio.cdc │ ├── get_node_unstaked_tokens.cdc │ ├── get_node_unstaking_request.cdc │ ├── get_node_unstaking_tokens.cdc │ ├── get_non_operational.cdc │ ├── get_proposed_table.cdc │ ├── get_role_counts.cdc │ ├── get_slot_limits.cdc │ ├── get_stake_requirements.cdc │ ├── get_table.cdc │ ├── get_total_staked.cdc │ ├── get_total_staked_by_type.cdc │ └── get_weekly_payout.cdc ├── lockedTokens ├── admin │ ├── admin_create_shared_accounts.cdc │ ├── admin_deploy_contract.cdc │ ├── admin_deposit_account_creator.cdc │ ├── admin_remove_delegator.cdc │ ├── check_main_registration.cdc │ ├── check_shared_registration.cdc │ ├── custody_create_account_with_lease_account.cdc │ ├── custody_create_only_lease_account.cdc │ ├── custody_create_only_shared_account.cdc │ ├── custody_create_shared_accounts.cdc │ ├── custody_setup_account_creator.cdc │ ├── deposit_locked_tokens.cdc │ ├── recover_lease_tokens.cdc │ ├── unlock_tokens.cdc │ └── unlock_tokens_for_multiple_accounts.cdc ├── delegator │ ├── delegate_new_tokens.cdc │ ├── delegate_rewarded_tokens.cdc │ ├── delegate_unstaked_tokens.cdc │ ├── get_delegator_id.cdc │ ├── get_delegator_info.cdc │ ├── get_delegator_node_id.cdc │ ├── register_delegator.cdc │ ├── request_unstaking.cdc │ ├── withdraw_rewarded_tokens.cdc │ ├── withdraw_rewarded_tokens_locked.cdc │ └── withdraw_unstaked_tokens.cdc ├── staker │ ├── get_node_id.cdc │ ├── get_staker_info.cdc │ ├── register_node.cdc │ ├── request_unstaking.cdc │ ├── stake_new_tokens.cdc │ ├── stake_rewarded_tokens.cdc │ ├── stake_unstaked_tokens.cdc │ ├── unstake_all.cdc │ ├── update_networking_address.cdc │ ├── withdraw_rewarded_tokens.cdc │ ├── withdraw_rewarded_tokens_locked.cdc │ └── withdraw_unstaked_tokens.cdc └── user │ ├── deposit_tokens.cdc │ ├── get_locked_account_address.cdc │ ├── get_locked_account_balance.cdc │ ├── get_multiple_unlock_limits.cdc │ ├── get_total_balance.cdc │ ├── get_unlock_limit.cdc │ └── withdraw_tokens.cdc ├── nodeVersionBeacon ├── admin │ ├── change_version_freeze_period.cdc │ ├── delete_version_boundary.cdc │ ├── heartbeat.cdc │ ├── set_protocol_state_version.cdc │ └── set_version_boundary.cdc └── scripts │ ├── get_current_node_version.cdc │ ├── get_current_node_version_as_string.cdc │ ├── get_next_version_boundary.cdc │ ├── get_next_version_update_sequence.cdc │ ├── get_version_boundaries.cdc │ └── get_version_boundary_freeze_period.cdc ├── quorumCertificate ├── admin │ ├── publish_voter.cdc │ ├── start_voting.cdc │ └── stop_voting.cdc ├── create_voter.cdc ├── scripts │ ├── generate_quorum_certificate.cdc │ ├── get_cluster.cdc │ ├── get_cluster_complete.cdc │ ├── get_cluster_node_weights.cdc │ ├── get_cluster_vote_threshold.cdc │ ├── get_cluster_votes.cdc │ ├── get_cluster_weight.cdc │ ├── get_clusters.cdc │ ├── get_node_has_voted.cdc │ ├── get_node_weight.cdc │ ├── get_qc_enabled.cdc │ ├── get_voter_is_registered.cdc │ └── get_voting_completed.cdc └── submit_vote.cdc ├── randomBeaconHistory ├── scripts │ ├── get_backfiller_max_entries.cdc │ ├── get_latest_source_of_randomness.cdc │ ├── get_source_of_randomness.cdc │ └── get_source_of_randomness_page.cdc └── transactions │ └── set_backfiller_max_entries.cdc ├── stakingCollection ├── close_stake.cdc ├── create_machine_account.cdc ├── create_new_tokenholder_acct.cdc ├── deploy_collection_contract.cdc ├── register_delegator.cdc ├── register_multiple_delegators.cdc ├── register_multiple_nodes.cdc ├── register_node.cdc ├── register_node_old.cdc ├── request_unstaking.cdc ├── restake_all_stakers.cdc ├── scripts │ ├── does_account_have_staking_collection.cdc │ ├── get_all_delegator_info.cdc │ ├── get_all_node_info.cdc │ ├── get_delegator_ids.cdc │ ├── get_does_stake_exist.cdc │ ├── get_locked_tokens_used.cdc │ ├── get_machine_account_address.cdc │ ├── get_machine_accounts.cdc │ ├── get_node_ids.cdc │ └── get_unlocked_tokens_used.cdc ├── setup_staking_collection.cdc ├── stake_new_tokens.cdc ├── stake_rewarded_tokens.cdc ├── stake_unstaked_tokens.cdc ├── test │ ├── deposit_tokens.cdc │ └── get_tokens.cdc ├── transfer_delegator.cdc ├── transfer_node.cdc ├── unstake_all.cdc ├── update_networking_address.cdc ├── withdraw_from_machine_account.cdc ├── withdraw_rewarded_tokens.cdc └── withdraw_unstaked_tokens.cdc ├── stakingProxy ├── add_node_info.cdc ├── get_node_info.cdc ├── register_node.cdc ├── remove_node_info.cdc ├── remove_staking_proxy.cdc ├── request_unstaking.cdc ├── setup_node_account.cdc ├── stake_new_tokens.cdc ├── stake_unstaked_tokens.cdc ├── unstake_all.cdc ├── withdraw_rewards.cdc └── withdraw_unstaked.cdc ├── storageFees ├── admin │ └── set_parameters.cdc └── scripts │ ├── get_account_available_balance.cdc │ ├── get_accounts_capacity_for_transaction_storage_check.cdc │ ├── get_storage_capacity.cdc │ ├── get_storage_fee_conversion.cdc │ └── get_storage_fee_min.cdc └── transactionScheduler ├── admin ├── create_execution_account.cdc ├── execute_transaction_with_capability.cdc ├── process_scheduled_transactions.cdc └── set_config_details.cdc ├── cancel_transaction.cdc ├── schedule_transaction.cdc ├── schedule_transaction_by_handler.cdc └── scripts ├── get_canceled_transactions.cdc ├── get_config.cdc ├── get_estimate.cdc ├── get_slot_available_effort.cdc ├── get_status.cdc ├── get_transaction_data.cdc ├── get_transactions_for_timeframe.cdc └── manager ├── get_handler_types.cdc ├── get_handler_views.cdc ├── get_handler_views_from_tx_id.cdc ├── get_managed_tx_status.cdc ├── get_manager_tx_ids.cdc ├── get_tx_data.cdc ├── get_tx_ids_by_handler.cdc ├── get_tx_ids_by_time_range.cdc ├── get_tx_ids_by_timestamp.cdc ├── resolve_handler_view.cdc └── resolve_handler_view_from_tx_id.cdc /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @joshuahannan -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/.github/ISSUE_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /contracts/Crypto.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/Crypto.cdc -------------------------------------------------------------------------------- /contracts/FlowExecutionParameters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowExecutionParameters.cdc -------------------------------------------------------------------------------- /contracts/FlowFees.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowFees.cdc -------------------------------------------------------------------------------- /contracts/FlowIDTableStaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowIDTableStaking.cdc -------------------------------------------------------------------------------- /contracts/FlowServiceAccount.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowServiceAccount.cdc -------------------------------------------------------------------------------- /contracts/FlowStakingCollection.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowStakingCollection.cdc -------------------------------------------------------------------------------- /contracts/FlowStorageFees.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowStorageFees.cdc -------------------------------------------------------------------------------- /contracts/FlowToken.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowToken.cdc -------------------------------------------------------------------------------- /contracts/FlowTransactionScheduler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowTransactionScheduler.cdc -------------------------------------------------------------------------------- /contracts/FlowTransactionSchedulerUtils.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/FlowTransactionSchedulerUtils.cdc -------------------------------------------------------------------------------- /contracts/LinearCodeAddressGenerator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/LinearCodeAddressGenerator.cdc -------------------------------------------------------------------------------- /contracts/LockedTokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/LockedTokens.cdc -------------------------------------------------------------------------------- /contracts/NodeVersionBeacon.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/NodeVersionBeacon.cdc -------------------------------------------------------------------------------- /contracts/RandomBeaconHistory.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/RandomBeaconHistory.cdc -------------------------------------------------------------------------------- /contracts/StakingProxy.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/StakingProxy.cdc -------------------------------------------------------------------------------- /contracts/epochs/FlowClusterQC.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/epochs/FlowClusterQC.cdc -------------------------------------------------------------------------------- /contracts/epochs/FlowDKG.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/epochs/FlowDKG.cdc -------------------------------------------------------------------------------- /contracts/epochs/FlowEpoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/epochs/FlowEpoch.cdc -------------------------------------------------------------------------------- /contracts/testContracts/TestFlowIDTableStaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/testContracts/TestFlowIDTableStaking.cdc -------------------------------------------------------------------------------- /contracts/testContracts/TestFlowScheduledTransactionHandler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/contracts/testContracts/TestFlowScheduledTransactionHandler.cdc -------------------------------------------------------------------------------- /flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/flow.json -------------------------------------------------------------------------------- /lib/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/Makefile -------------------------------------------------------------------------------- /lib/go/contracts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/Makefile -------------------------------------------------------------------------------- /lib/go/contracts/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/contracts.go -------------------------------------------------------------------------------- /lib/go/contracts/contracts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/contracts_test.go -------------------------------------------------------------------------------- /lib/go/contracts/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/go.mod -------------------------------------------------------------------------------- /lib/go/contracts/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/go.sum -------------------------------------------------------------------------------- /lib/go/contracts/internal/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/contracts/internal/assets/assets.go -------------------------------------------------------------------------------- /lib/go/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/Makefile -------------------------------------------------------------------------------- /lib/go/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/README.md -------------------------------------------------------------------------------- /lib/go/templates/cmd/manifest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/cmd/manifest/main.go -------------------------------------------------------------------------------- /lib/go/templates/cmd/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/cmd/manifest/manifest.go -------------------------------------------------------------------------------- /lib/go/templates/delegator_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/delegator_templates.go -------------------------------------------------------------------------------- /lib/go/templates/epoch_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/epoch_templates.go -------------------------------------------------------------------------------- /lib/go/templates/flow_dkg_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/flow_dkg_templates.go -------------------------------------------------------------------------------- /lib/go/templates/flow_qc_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/flow_qc_templates.go -------------------------------------------------------------------------------- /lib/go/templates/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/go.mod -------------------------------------------------------------------------------- /lib/go/templates/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/go.sum -------------------------------------------------------------------------------- /lib/go/templates/idtable_staking_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/idtable_staking_templates.go -------------------------------------------------------------------------------- /lib/go/templates/internal/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/internal/assets/assets.go -------------------------------------------------------------------------------- /lib/go/templates/lockedtokens_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/lockedtokens_templates.go -------------------------------------------------------------------------------- /lib/go/templates/manifest.mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/manifest.mainnet.json -------------------------------------------------------------------------------- /lib/go/templates/manifest.testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/manifest.testnet.json -------------------------------------------------------------------------------- /lib/go/templates/node_version_beacon_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/node_version_beacon_templates.go -------------------------------------------------------------------------------- /lib/go/templates/scheduled_transaction_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/scheduled_transaction_templates.go -------------------------------------------------------------------------------- /lib/go/templates/service_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/service_templates.go -------------------------------------------------------------------------------- /lib/go/templates/stakingProxy_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/stakingProxy_templates.go -------------------------------------------------------------------------------- /lib/go/templates/staking_collection_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/staking_collection_templates.go -------------------------------------------------------------------------------- /lib/go/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/templates/templates.go -------------------------------------------------------------------------------- /lib/go/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/Makefile -------------------------------------------------------------------------------- /lib/go/test/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/crypto_test.go -------------------------------------------------------------------------------- /lib/go/test/epoch_test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/epoch_test_helpers.go -------------------------------------------------------------------------------- /lib/go/test/flow_dkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_dkg_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_epoch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_epoch_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_idtable_nodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_idtable_nodes_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_idtable_staking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_idtable_staking_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_lockedtokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_lockedtokens_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_qc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_qc_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_stakingcollection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_stakingcollection_test.go -------------------------------------------------------------------------------- /lib/go/test/flow_stakingproxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/flow_stakingproxy_test.go -------------------------------------------------------------------------------- /lib/go/test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/go.mod -------------------------------------------------------------------------------- /lib/go/test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/go.sum -------------------------------------------------------------------------------- /lib/go/test/lockedtokens_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/lockedtokens_helpers.go -------------------------------------------------------------------------------- /lib/go/test/node_version_beacon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/node_version_beacon_test.go -------------------------------------------------------------------------------- /lib/go/test/random_beacon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/random_beacon_test.go -------------------------------------------------------------------------------- /lib/go/test/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/service_test.go -------------------------------------------------------------------------------- /lib/go/test/staking_test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/staking_test_helpers.go -------------------------------------------------------------------------------- /lib/go/test/static/recover_new_epoch_unchecked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/static/recover_new_epoch_unchecked.cdc -------------------------------------------------------------------------------- /lib/go/test/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/static/static.go -------------------------------------------------------------------------------- /lib/go/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/lib/go/test/test.go -------------------------------------------------------------------------------- /tests/LinearCodeAddressGenerator_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/LinearCodeAddressGenerator_test.cdc -------------------------------------------------------------------------------- /tests/account_txs_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/account_txs_test.cdc -------------------------------------------------------------------------------- /tests/crypto_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/crypto_test.cdc -------------------------------------------------------------------------------- /tests/dkg_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/dkg_test.cdc -------------------------------------------------------------------------------- /tests/random_beacon_history_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/random_beacon_history_test.cdc -------------------------------------------------------------------------------- /tests/scheduled_transaction_test_helpers.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scheduled_transaction_test_helpers.cdc -------------------------------------------------------------------------------- /tests/scripts/get_data_size.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scripts/get_data_size.cdc -------------------------------------------------------------------------------- /tests/scripts/get_executed_transactions.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scripts/get_executed_transactions.cdc -------------------------------------------------------------------------------- /tests/scripts/get_lowest_height.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scripts/get_lowest_height.cdc -------------------------------------------------------------------------------- /tests/scripts/get_manager_timestamps.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scripts/get_manager_timestamps.cdc -------------------------------------------------------------------------------- /tests/scripts/get_pending_queue.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/scripts/get_pending_queue.cdc -------------------------------------------------------------------------------- /tests/scripts/get_timestamp.cdc: -------------------------------------------------------------------------------- 1 | access(all) fun main(): UFix64 { 2 | return getCurrentBlock().timestamp 3 | } 4 | -------------------------------------------------------------------------------- /tests/transactionScheduler_events_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactionScheduler_events_test.cdc -------------------------------------------------------------------------------- /tests/transactionScheduler_manager_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactionScheduler_manager_test.cdc -------------------------------------------------------------------------------- /tests/transactionScheduler_misc_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactionScheduler_misc_test.cdc -------------------------------------------------------------------------------- /tests/transactionScheduler_schedule_test_tmp_no_ci.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactionScheduler_schedule_test_tmp_no_ci.cdc -------------------------------------------------------------------------------- /tests/transactionScheduler_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactionScheduler_test.cdc -------------------------------------------------------------------------------- /tests/transactions/destroy_handler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/destroy_handler.cdc -------------------------------------------------------------------------------- /tests/transactions/execute_transaction.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/execute_transaction.cdc -------------------------------------------------------------------------------- /tests/transactions/execute_transaction_with_capability.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/execute_transaction_with_capability.cdc -------------------------------------------------------------------------------- /tests/transactions/record_random_source.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/record_random_source.cdc -------------------------------------------------------------------------------- /tests/transactions/schedule_tx_with_different_handler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/schedule_tx_with_different_handler.cdc -------------------------------------------------------------------------------- /tests/transactions/upgrade_contract.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/tests/transactions/upgrade_contract.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/add_account_creator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/add_account_creator.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/deposit_fees.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/deposit_fees.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/remove_account_creator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/remove_account_creator.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_account_creators.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_account_creators.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_account_fee.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_account_fee.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_execution_effort_weights.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_execution_effort_weights.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_execution_memory_limit.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_execution_memory_limit.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_execution_memory_weights.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_execution_memory_weights.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_fees_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_fees_balance.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_is_account_creator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_is_account_creator.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/get_tx_fee_parameters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/get_tx_fee_parameters.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/scripts/verify_payer_balance_for_tx_execution.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/scripts/verify_payer_balance_for_tx_execution.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_execution_effort_weights.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_execution_effort_weights.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_execution_memory_limit.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_execution_memory_limit.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_execution_memory_weights.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_execution_memory_weights.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_is_account_creation_restricted.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_is_account_creation_restricted.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_tx_fee_parameters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_tx_fee_parameters.cdc -------------------------------------------------------------------------------- /transactions/FlowServiceAccount/set_tx_fee_surge_factor.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/FlowServiceAccount/set_tx_fee_surge_factor.cdc -------------------------------------------------------------------------------- /transactions/accounts/add_key.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/accounts/add_key.cdc -------------------------------------------------------------------------------- /transactions/accounts/create_new_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/accounts/create_new_account.cdc -------------------------------------------------------------------------------- /transactions/accounts/revoke_key.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/accounts/revoke_key.cdc -------------------------------------------------------------------------------- /transactions/dkg/admin/force_stop_dkg.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/admin/force_stop_dkg.cdc -------------------------------------------------------------------------------- /transactions/dkg/admin/publish_admin.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/admin/publish_admin.cdc -------------------------------------------------------------------------------- /transactions/dkg/admin/set_safe_threshold.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/admin/set_safe_threshold.cdc -------------------------------------------------------------------------------- /transactions/dkg/admin/start_dkg.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/admin/start_dkg.cdc -------------------------------------------------------------------------------- /transactions/dkg/admin/stop_dkg.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/admin/stop_dkg.cdc -------------------------------------------------------------------------------- /transactions/dkg/create_participant.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/create_participant.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_consensus_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_consensus_nodes.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_dkg_canonical_final_submission.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_dkg_canonical_final_submission.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_dkg_completed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_dkg_completed.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_dkg_enabled.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_dkg_enabled.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_final_submissions.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_final_submissions.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_latest_whiteboard_messages.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_latest_whiteboard_messages.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_node_final_submission.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_node_final_submission.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_node_has_submitted.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_node_has_submitted.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_node_is_claimed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_node_is_claimed.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_node_is_registered.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_node_is_registered.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_thresholds.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_thresholds.cdc -------------------------------------------------------------------------------- /transactions/dkg/scripts/get_whiteboard_messages.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/scripts/get_whiteboard_messages.cdc -------------------------------------------------------------------------------- /transactions/dkg/send_empty_final_submission.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/send_empty_final_submission.cdc -------------------------------------------------------------------------------- /transactions/dkg/send_final_submission.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/send_final_submission.cdc -------------------------------------------------------------------------------- /transactions/dkg/send_whiteboard_message.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/dkg/send_whiteboard_message.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/advance_view.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/advance_view.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/calculate_rewards.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/calculate_rewards.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/deploy_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/deploy_epoch.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/deploy_qc_dkg.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/deploy_qc_dkg.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/pay_rewards.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/pay_rewards.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/recover_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/recover_epoch.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/reset_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/reset_epoch.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/set_automatic_rewards.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/set_automatic_rewards.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/set_bonus_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/set_bonus_tokens.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_clusters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_clusters.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_dkg_phase_views.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_dkg_phase_views.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_epoch_config.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_epoch_config.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_epoch_timing_config.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_epoch_timing_config.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_epoch_views.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_epoch_views.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_reward.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_reward.cdc -------------------------------------------------------------------------------- /transactions/epoch/admin/update_staking_views.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/admin/update_staking_views.cdc -------------------------------------------------------------------------------- /transactions/epoch/node/register_dkg_participant.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/node/register_dkg_participant.cdc -------------------------------------------------------------------------------- /transactions/epoch/node/register_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/node/register_node.cdc -------------------------------------------------------------------------------- /transactions/epoch/node/register_qc_voter.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/node/register_qc_voter.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_bonus_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_bonus_tokens.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_config_metadata.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_config_metadata.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_create_clusters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_create_clusters.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_current_view.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_current_view.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_epoch_counter.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_epoch_counter.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_epoch_metadata.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_epoch_metadata.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_epoch_phase.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_epoch_phase.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_epoch_timing_config.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_epoch_timing_config.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_proposed_counter.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_proposed_counter.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_randomize.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_randomize.cdc -------------------------------------------------------------------------------- /transactions/epoch/scripts/get_target_end_time_for_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/epoch/scripts/get_target_end_time_for_epoch.cdc -------------------------------------------------------------------------------- /transactions/flowToken/burn_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/burn_tokens.cdc -------------------------------------------------------------------------------- /transactions/flowToken/create_forwarder.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/create_forwarder.cdc -------------------------------------------------------------------------------- /transactions/flowToken/mint_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/mint_tokens.cdc -------------------------------------------------------------------------------- /transactions/flowToken/scripts/get_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/scripts/get_balance.cdc -------------------------------------------------------------------------------- /transactions/flowToken/scripts/get_supply.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/scripts/get_supply.cdc -------------------------------------------------------------------------------- /transactions/flowToken/setup_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/setup_account.cdc -------------------------------------------------------------------------------- /transactions/flowToken/transfer_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/flowToken/transfer_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/add_approved_and_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/add_approved_and_limits.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/add_approved_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/add_approved_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/capability_end_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/capability_end_epoch.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/change_candidate_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/change_candidate_limits.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/change_cut.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/change_cut.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/change_del_minimums.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/change_del_minimums.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/change_minimums.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/change_minimums.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/change_payout.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/change_payout.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/end_epoch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/end_epoch.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/end_epoch_change_payout.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/end_epoch_change_payout.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/end_staking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/end_staking.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/move_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/move_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/pay_rewards.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/pay_rewards.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/remove_approved_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/remove_approved_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/remove_invalid_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/remove_invalid_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/remove_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/remove_node.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/scale_rewards_test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/scale_rewards_test.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_approved_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_approved_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_claimed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_claimed.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_node_weight.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_node_weight.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_non_operational.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_non_operational.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_open_access_node_slots.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_open_access_node_slots.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/set_slot_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/set_slot_limits.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/start_staking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/start_staking.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/transfer_admin.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/transfer_admin.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/transfer_fees_admin.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/transfer_fees_admin.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/transfer_minter_deploy.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/transfer_minter_deploy.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/upgrade_set_claimed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/upgrade_set_claimed.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/admin/upgrade_staking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/admin/upgrade_staking.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_request_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_request_unstaking.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_stake_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_stake_rewarded.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_stake_rewarded.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_stake_unstaked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_stake_unstaked.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_committed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_committed.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_info.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_request.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_request.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_rewarded.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_rewarded.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_staked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_staked.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_unstaked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_unstaked.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_unstaking.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/get_delegator_unstaking_request.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/get_delegator_unstaking_request.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/register_delegator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/register_delegator.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/delegation/register_many_delegators.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/delegation/register_many_delegators.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/register_many_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/register_many_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/register_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/register_node.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/request_unstake.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/request_unstake.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/stake_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/stake_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/stake_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/stake_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/stake_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/stake_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/unstake_all.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/unstake_all.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/update_networking_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/update_networking_address.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/withdraw_reward_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/withdraw_reward_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_approved_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_approved_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_candidate_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_candidate_limits.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_candidate_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_candidate_nodes.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_current_table.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_current_table.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_cut_percentage.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_cut_percentage.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_del_stake_requirements.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_del_stake_requirements.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_delegators_below_min.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_delegators_below_min.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_moves_pending.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_moves_pending.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_committed_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_committed_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_info.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_info_from_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_info_from_address.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_initial_weight.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_initial_weight.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_networking_addr.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_networking_addr.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_networking_key.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_networking_key.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_role.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_role.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_staked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_staked_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_staking_key.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_staking_key.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_total_commitment.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_total_commitment.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_type_ratio.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_type_ratio.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_unstaking_request.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_unstaking_request.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_node_unstaking_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_node_unstaking_tokens.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_non_operational.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_non_operational.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_proposed_table.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_proposed_table.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_role_counts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_role_counts.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_slot_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_slot_limits.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_stake_requirements.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_stake_requirements.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_table.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_table.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_total_staked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_total_staked.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_total_staked_by_type.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_total_staked_by_type.cdc -------------------------------------------------------------------------------- /transactions/idTableStaking/scripts/get_weekly_payout.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/idTableStaking/scripts/get_weekly_payout.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/admin_create_shared_accounts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/admin_deploy_contract.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/admin_deploy_contract.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/admin_deposit_account_creator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/admin_remove_delegator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/admin_remove_delegator.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/check_main_registration.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/check_main_registration.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/check_shared_registration.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/check_shared_registration.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/custody_create_only_lease_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/custody_create_only_shared_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/custody_create_shared_accounts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/custody_setup_account_creator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/custody_setup_account_creator.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/deposit_locked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/deposit_locked_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/recover_lease_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/recover_lease_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/unlock_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/unlock_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/delegate_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/delegate_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/get_delegator_id.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/get_delegator_id.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/get_delegator_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/get_delegator_info.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/get_delegator_node_id.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/get_delegator_node_id.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/register_delegator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/register_delegator.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/request_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/request_unstaking.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/get_node_id.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/get_node_id.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/get_staker_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/get_staker_info.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/register_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/register_node.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/request_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/request_unstaking.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/stake_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/stake_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/stake_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/stake_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/unstake_all.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/unstake_all.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/update_networking_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/update_networking_address.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/deposit_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/deposit_tokens.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/get_locked_account_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/get_locked_account_address.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/get_locked_account_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/get_locked_account_balance.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/get_multiple_unlock_limits.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/get_total_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/get_total_balance.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/get_unlock_limit.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/get_unlock_limit.cdc -------------------------------------------------------------------------------- /transactions/lockedTokens/user/withdraw_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/lockedTokens/user/withdraw_tokens.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/admin/change_version_freeze_period.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/admin/change_version_freeze_period.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/admin/delete_version_boundary.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/admin/delete_version_boundary.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/admin/heartbeat.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/admin/heartbeat.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/admin/set_version_boundary.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_current_node_version.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_current_node_version.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_next_version_boundary.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_next_version_boundary.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_version_boundaries.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_version_boundaries.cdc -------------------------------------------------------------------------------- /transactions/nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/admin/publish_voter.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/admin/publish_voter.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/admin/start_voting.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/admin/start_voting.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/admin/stop_voting.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/admin/stop_voting.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/create_voter.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/create_voter.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/generate_quorum_certificate.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/generate_quorum_certificate.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster_complete.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster_complete.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster_node_weights.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster_node_weights.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster_vote_threshold.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster_vote_threshold.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster_votes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster_votes.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_cluster_weight.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_cluster_weight.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_clusters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_clusters.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_node_has_voted.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_node_has_voted.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_node_weight.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_node_weight.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_qc_enabled.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_qc_enabled.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_voter_is_registered.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_voter_is_registered.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/scripts/get_voting_completed.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/scripts/get_voting_completed.cdc -------------------------------------------------------------------------------- /transactions/quorumCertificate/submit_vote.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/quorumCertificate/submit_vote.cdc -------------------------------------------------------------------------------- /transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc -------------------------------------------------------------------------------- /transactions/randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc -------------------------------------------------------------------------------- /transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc -------------------------------------------------------------------------------- /transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc -------------------------------------------------------------------------------- /transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/close_stake.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/close_stake.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/create_machine_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/create_machine_account.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/create_new_tokenholder_acct.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/create_new_tokenholder_acct.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/deploy_collection_contract.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/deploy_collection_contract.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/register_delegator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/register_delegator.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/register_multiple_delegators.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/register_multiple_delegators.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/register_multiple_nodes.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/register_multiple_nodes.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/register_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/register_node.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/register_node_old.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/register_node_old.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/request_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/request_unstaking.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/restake_all_stakers.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/restake_all_stakers.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/does_account_have_staking_collection.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/does_account_have_staking_collection.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_all_delegator_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_all_delegator_info.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_all_node_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_all_node_info.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_delegator_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_delegator_ids.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_does_stake_exist.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_does_stake_exist.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_locked_tokens_used.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_locked_tokens_used.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_machine_account_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_machine_account_address.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_machine_accounts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_machine_accounts.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_node_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_node_ids.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/scripts/get_unlocked_tokens_used.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/scripts/get_unlocked_tokens_used.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/setup_staking_collection.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/setup_staking_collection.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/stake_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/stake_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/stake_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/stake_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/stake_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/stake_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/test/deposit_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/test/deposit_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/test/get_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/test/get_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/transfer_delegator.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/transfer_delegator.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/transfer_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/transfer_node.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/unstake_all.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/unstake_all.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/update_networking_address.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/update_networking_address.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/withdraw_from_machine_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/withdraw_from_machine_account.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/withdraw_rewarded_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/withdraw_rewarded_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingCollection/withdraw_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingCollection/withdraw_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/add_node_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/add_node_info.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/get_node_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/get_node_info.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/register_node.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/register_node.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/remove_node_info.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/remove_node_info.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/remove_staking_proxy.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/remove_staking_proxy.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/request_unstaking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/request_unstaking.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/setup_node_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/setup_node_account.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/stake_new_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/stake_new_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/stake_unstaked_tokens.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/stake_unstaked_tokens.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/unstake_all.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/unstake_all.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/withdraw_rewards.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/withdraw_rewards.cdc -------------------------------------------------------------------------------- /transactions/stakingProxy/withdraw_unstaked.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/stakingProxy/withdraw_unstaked.cdc -------------------------------------------------------------------------------- /transactions/storageFees/admin/set_parameters.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/admin/set_parameters.cdc -------------------------------------------------------------------------------- /transactions/storageFees/scripts/get_account_available_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/scripts/get_account_available_balance.cdc -------------------------------------------------------------------------------- /transactions/storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc -------------------------------------------------------------------------------- /transactions/storageFees/scripts/get_storage_capacity.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/scripts/get_storage_capacity.cdc -------------------------------------------------------------------------------- /transactions/storageFees/scripts/get_storage_fee_conversion.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/scripts/get_storage_fee_conversion.cdc -------------------------------------------------------------------------------- /transactions/storageFees/scripts/get_storage_fee_min.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/storageFees/scripts/get_storage_fee_min.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/admin/create_execution_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/admin/create_execution_account.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/admin/execute_transaction_with_capability.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/admin/execute_transaction_with_capability.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/admin/process_scheduled_transactions.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/admin/process_scheduled_transactions.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/admin/set_config_details.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/admin/set_config_details.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/cancel_transaction.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/cancel_transaction.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/schedule_transaction.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/schedule_transaction.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/schedule_transaction_by_handler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/schedule_transaction_by_handler.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_canceled_transactions.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_canceled_transactions.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_config.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_config.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_estimate.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_estimate.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_slot_available_effort.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_slot_available_effort.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_status.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_status.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_transaction_data.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_transaction_data.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/get_transactions_for_timeframe.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/get_transactions_for_timeframe.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_handler_types.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_handler_types.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_handler_views.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_handler_views.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_handler_views_from_tx_id.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_handler_views_from_tx_id.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_managed_tx_status.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_managed_tx_status.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_manager_tx_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_manager_tx_ids.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_tx_data.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_tx_data.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_tx_ids_by_handler.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_tx_ids_by_handler.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_tx_ids_by_time_range.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_tx_ids_by_time_range.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/get_tx_ids_by_timestamp.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/get_tx_ids_by_timestamp.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/resolve_handler_view.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/resolve_handler_view.cdc -------------------------------------------------------------------------------- /transactions/transactionScheduler/scripts/manager/resolve_handler_view_from_tx_id.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-core-contracts/HEAD/transactions/transactionScheduler/scripts/manager/resolve_handler_view_from_tx_id.cdc --------------------------------------------------------------------------------