├── .gitignore ├── ACPs ├── 103-dynamic-fees │ └── README.md ├── 108-evm-event-importing │ └── README.md ├── 113-provable-randomness │ ├── ACP-113-Provable.Virtual.Machine.Randomness.pptx │ └── README.md ├── 118-warp-signature-request │ └── README.md ├── 125-basefee-reduction │ └── README.md ├── 13-subnet-only-validators │ └── README.md ├── 131-cancun-eips │ └── README.md ├── 151-use-current-block-pchain-height-as-context │ └── README.md ├── 176-dynamic-evm-gas-limit-and-price-discovery-updates │ └── README.md ├── 181-p-chain-epoched-views │ └── README.md ├── 191-seamless-l1-creation │ └── README.md ├── 194-streaming-asynchronous-execution │ └── README.md ├── 20-ed25519-p2p │ └── README.md ├── 204-precompile-secp256r1 │ └── README.md ├── 209-eip7702-style-account-abstraction │ └── README.md ├── 224-dynamic-gas-limit-in-subnet-evm │ └── README.md ├── 226-dynamic-minimum-block-times │ └── README.md ├── 23-p-chain-native-transfers │ └── README.md ├── 236-continuous-staking │ └── README.md ├── 24-shanghai-eips │ └── README.md ├── 247-delegation-multiplier-increase-maximum-validator-weight-reduction │ └── README.md ├── 25-vm-application-errors │ └── README.md ├── 30-avalanche-warp-x-evm │ └── README.md ├── 31-enable-subnet-ownership-transfer │ └── README.md ├── 41-remove-pending-stakers │ └── README.md ├── 62-disable-addvalidatortx-and-adddelegatortx │ └── README.md ├── 75-acceptance-proofs │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── README.md ├── 77-reinventing-subnets │ └── README.md ├── 83-dynamic-multidimensional-fees │ ├── README.md │ ├── complexities.png │ └── fee.png ├── 84-table-preamble │ └── README.md ├── 99-validatorsetmanager-contract │ └── README.md └── TEMPLATE.md ├── CONTRIBUTING.md ├── LICENSE.md ├── LOGO.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # vim editor 2 | *.swp 3 | -------------------------------------------------------------------------------- /ACPs/103-dynamic-fees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/103-dynamic-fees/README.md -------------------------------------------------------------------------------- /ACPs/108-evm-event-importing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/108-evm-event-importing/README.md -------------------------------------------------------------------------------- /ACPs/113-provable-randomness/ACP-113-Provable.Virtual.Machine.Randomness.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/113-provable-randomness/ACP-113-Provable.Virtual.Machine.Randomness.pptx -------------------------------------------------------------------------------- /ACPs/113-provable-randomness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/113-provable-randomness/README.md -------------------------------------------------------------------------------- /ACPs/118-warp-signature-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/118-warp-signature-request/README.md -------------------------------------------------------------------------------- /ACPs/125-basefee-reduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/125-basefee-reduction/README.md -------------------------------------------------------------------------------- /ACPs/13-subnet-only-validators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/13-subnet-only-validators/README.md -------------------------------------------------------------------------------- /ACPs/131-cancun-eips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/131-cancun-eips/README.md -------------------------------------------------------------------------------- /ACPs/151-use-current-block-pchain-height-as-context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/151-use-current-block-pchain-height-as-context/README.md -------------------------------------------------------------------------------- /ACPs/176-dynamic-evm-gas-limit-and-price-discovery-updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/176-dynamic-evm-gas-limit-and-price-discovery-updates/README.md -------------------------------------------------------------------------------- /ACPs/181-p-chain-epoched-views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/181-p-chain-epoched-views/README.md -------------------------------------------------------------------------------- /ACPs/191-seamless-l1-creation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/191-seamless-l1-creation/README.md -------------------------------------------------------------------------------- /ACPs/194-streaming-asynchronous-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/194-streaming-asynchronous-execution/README.md -------------------------------------------------------------------------------- /ACPs/20-ed25519-p2p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/20-ed25519-p2p/README.md -------------------------------------------------------------------------------- /ACPs/204-precompile-secp256r1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/204-precompile-secp256r1/README.md -------------------------------------------------------------------------------- /ACPs/209-eip7702-style-account-abstraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/209-eip7702-style-account-abstraction/README.md -------------------------------------------------------------------------------- /ACPs/224-dynamic-gas-limit-in-subnet-evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/224-dynamic-gas-limit-in-subnet-evm/README.md -------------------------------------------------------------------------------- /ACPs/226-dynamic-minimum-block-times/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/226-dynamic-minimum-block-times/README.md -------------------------------------------------------------------------------- /ACPs/23-p-chain-native-transfers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/23-p-chain-native-transfers/README.md -------------------------------------------------------------------------------- /ACPs/236-continuous-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/236-continuous-staking/README.md -------------------------------------------------------------------------------- /ACPs/24-shanghai-eips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/24-shanghai-eips/README.md -------------------------------------------------------------------------------- /ACPs/247-delegation-multiplier-increase-maximum-validator-weight-reduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/247-delegation-multiplier-increase-maximum-validator-weight-reduction/README.md -------------------------------------------------------------------------------- /ACPs/25-vm-application-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/25-vm-application-errors/README.md -------------------------------------------------------------------------------- /ACPs/30-avalanche-warp-x-evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/30-avalanche-warp-x-evm/README.md -------------------------------------------------------------------------------- /ACPs/31-enable-subnet-ownership-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/31-enable-subnet-ownership-transfer/README.md -------------------------------------------------------------------------------- /ACPs/41-remove-pending-stakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/41-remove-pending-stakers/README.md -------------------------------------------------------------------------------- /ACPs/62-disable-addvalidatortx-and-adddelegatortx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/62-disable-addvalidatortx-and-adddelegatortx/README.md -------------------------------------------------------------------------------- /ACPs/75-acceptance-proofs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/75-acceptance-proofs/1.jpg -------------------------------------------------------------------------------- /ACPs/75-acceptance-proofs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/75-acceptance-proofs/2.jpg -------------------------------------------------------------------------------- /ACPs/75-acceptance-proofs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/75-acceptance-proofs/3.jpg -------------------------------------------------------------------------------- /ACPs/75-acceptance-proofs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/75-acceptance-proofs/4.jpg -------------------------------------------------------------------------------- /ACPs/75-acceptance-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/75-acceptance-proofs/README.md -------------------------------------------------------------------------------- /ACPs/77-reinventing-subnets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/77-reinventing-subnets/README.md -------------------------------------------------------------------------------- /ACPs/83-dynamic-multidimensional-fees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/83-dynamic-multidimensional-fees/README.md -------------------------------------------------------------------------------- /ACPs/83-dynamic-multidimensional-fees/complexities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/83-dynamic-multidimensional-fees/complexities.png -------------------------------------------------------------------------------- /ACPs/83-dynamic-multidimensional-fees/fee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/83-dynamic-multidimensional-fees/fee.png -------------------------------------------------------------------------------- /ACPs/84-table-preamble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/84-table-preamble/README.md -------------------------------------------------------------------------------- /ACPs/99-validatorsetmanager-contract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/99-validatorsetmanager-contract/README.md -------------------------------------------------------------------------------- /ACPs/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/ACPs/TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/LOGO.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-foundation/ACPs/HEAD/README.md --------------------------------------------------------------------------------