Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: repo related changes #21

Merged
merged 5 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to the [Aragon OSx Plugin Versioning Convention](https:
### Added

- Copied files from [aragon/osx commit 1130df](https://github.com/aragon/osx/commit/1130dfce94fd294c4341e91a8f3faccc54cf43b7)
- `hasSucceeded`, `createProposal`, `customProposalParamsABI`, `canExecute` and `execute` functions implementing to `IProposal` interface.
- `initialize` function also receives `TargetConfig` with the optional target config.

### Changed

Expand Down
8 changes: 4 additions & 4 deletions packages/contracts/src/build-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
"description": "The information required for the installation.",
"inputs": [
{
"internalType": "address",
"name": "admin",
"type": "address",
"internalType": "address",
"description": "The address of the admin account receiving the `EXECUTE_PERMISSION_ID` permission."
},
{
"components": [
{
"internalType": "address",
"name": "target",
"type": "address",
"internalType": "address",
"description": "The target contract to which actions will be forwarded to for execution."
},
{
"internalType": "uint8",
"name": "operation",
"type": "uint8",
"internalType": "uint8",
"description": "The operation type(either `call` or `delegatecall`) that will be used for execution forwarding."
}
],
"internalType": "struct TokenVoting.TargetConfig",
"name": "TargetConfig",
"type": "tuple",
"internalType": "struct TokenVoting.TargetConfig",
"description": "The initial target config"
}
]
Expand Down
Loading