-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Template for PRs - to automate (#899)
* pr template * pr template * tempalte comment update * removed redundant testing section * added examples of changes
- Loading branch information
Showing
1 changed file
with
113 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,114 @@ | ||
**PR checklist** | ||
# Description | ||
|
||
- [ ] Describe the added/changed/fixed/removed behaviour | ||
- [ ] Tag related issue(s) | ||
- [ ] Add appropriate unit tests and/or integration tests to the [integration test repository](https://github.com/futureversecom/seed-integration-tests) | ||
- _Provide a general description of the changes in this PR_ | ||
|
||
## Context & Background | ||
|
||
- _Add any relevant context or background information about the changes_ | ||
|
||
## Notes & Additional Information | ||
|
||
- _Any additional notes, considerations, or explanations_ | ||
|
||
## Related Issues | ||
|
||
- _Link any related issues_ | ||
|
||
--- | ||
|
||
<!-- This section will be used to automatically generate release notes --> | ||
<!-- Please fill out relevant sections below based on your changes --> | ||
<!-- Remove sections if there are no changes --> | ||
|
||
# Release Notes | ||
|
||
## Key Changes | ||
|
||
## Type of Change | ||
|
||
- [ ] Runtime Changes | ||
- [ ] Client Changes | ||
|
||
## API Changes | ||
|
||
### EVM Precompile Changes | ||
|
||
#### Added | ||
|
||
- _e.g. **Marketplace: `sellNft`**_ | ||
|
||
#### Changed | ||
|
||
- | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
### Storage Changes | ||
|
||
#### Added | ||
|
||
- _e.g. **XRPLBridge: PaymentDelay, changed from value to map keyed by asset_id**_ | ||
|
||
#### Changed | ||
|
||
- | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
### Extrinsic Changes | ||
|
||
#### Added | ||
|
||
- | ||
|
||
#### Changed | ||
|
||
- _e.g. **XRPLBridge: set_payment_delay, added asset_id**_ | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
### Event Changes | ||
|
||
#### Added | ||
|
||
- _e.g. **XRPL-Bridge: XrplAssetMapSet**_ | ||
|
||
#### Changed | ||
|
||
- _e.g. **XRPLBridge: PaymentDelaySet, added asset_id parameter**_ | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
### Error Messages | ||
|
||
#### Added | ||
|
||
- _e.g. **Marketplace: NoToken**_ | ||
|
||
#### Changed | ||
|
||
- | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
## Storage Migrations | ||
|
||
#### Added | ||
|
||
- _e.g. **XRPLBridge: Migrate PaymentDelay to include asset_id as key**_ | ||
|
||
#### Removed | ||
|
||
- | ||
|
||
--- |