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

Update proposal-types.mdx #409

Merged
merged 1 commit into from
Dec 1, 2024
Merged
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
10 changes: 5 additions & 5 deletions packages/docs/pages/users/governance/proposal-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,19 @@ the amount specified will be sent upon execution of the proposal at the beginnin
}
```



#### IBC PGF proposals

For a PGF proposal that is to be executed on an IBC chain, the `"Internal"` data structure will be substituted with "IBC" and have the following contents:
For a PGF proposal that is to be executed on an IBC chain, the `"Internal"` data structure will be substituted with "Ibc" and have the following contents:

```json
"IBC":
"Ibc":
{

"amount": "1337",
"target": "tnam1q9rxk49a7y6fp8h5qwz47d6jhml0km2w2y7emqyz",
"port_id": "<port-id>",
"channel_id": "<channel-id>"
}
```
```

See an example of a complete proposal here: https://github.com/anoma/namada/blob/main/scripts/funding_proposal_template.json
Loading