Skip to content

Commit

Permalink
Add social cards
Browse files Browse the repository at this point in the history
  • Loading branch information
hyckomatej authored and lukacan committed Jan 22, 2025
1 parent a3b49a6 commit e480c4b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion documentation/docs/faq/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ hide:

### My program Instruction contains custom type such as Struct or Enum on its input, but it does not derive Arbitrary.

- In this case you need to specify same type in the Fuzz Test (with the same fields). And implement From Trait to convert to your type. Check [Custom Data Types](../features/arbitrary-data.md/#custom-data-types) or [Examples of Arbitrary](../examples/examples.md).
- In this case you need to specify same type in the Fuzz Test (with the same fields). And implement From Trait to convert to your type. Check [Custom Data Types](../features/customize-ix-data.md) or [Examples of Arbitrary](../examples/examples.md).


### Is Trident open-source ?
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/features/customize-ix-data.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Costomize Instruction Data
# Customize Instruction Data


Trident allows you to customize instruction data.
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/features/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Trident contains multiple features to enhance the fuzzing experience and increas

Customize Instruction data, for example, to use integers from specific range.

[__Customize Instruction Data__](./custom-ix-data.md)
[__Customize Instruction Data__](./customize-ix-data.md)

- :material-weight-lifter:{ .lg .middle } __Trident Manifest__

Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/features/fuzz-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn get_data(
}
```

Additionally, you can limit the range of the data generated using the `Arbitrary` crate. Check [Arbitrary Data](./arbitrary-data.md).
Additionally, you can limit the range of the data generated using the `Arbitrary` crate. Check [Arbitrary Data](./customize-ix-data.md).

## `get_accounts()`

Expand All @@ -92,7 +92,7 @@ There are three main functions to use within the `get_accounts()`:

- [`get_or_create_account()`](./fuzz-instructions.md/#get_or_create_account)
- [`get()`](./fuzz-instructions.md/#get)
- [`set_custom()`](./fuzz-instructions.md/#set_custom)
- [`set_account_custom()`](./fuzz-instructions.md/#set_account_custom)

For additional methods, check [Account Storage Methods](./account-storages.md/#account-storage-methods).

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/features/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ hide:
---


# Current limitations
# Current Limitations

This section summarizes some known limitations in the current development stage. Further development will be focused on resolving these limitations.

Expand Down
2 changes: 2 additions & 0 deletions documentation/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
hide:
- navigation
- toc

title: Trident
---

<h1 style="font-size: 65px;">{{ config.site_name }}</h1>
Expand Down
3 changes: 2 additions & 1 deletion documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_url: https://ackee.xyz/trident/docs
repo_url: https://github.com/Ackee-Blockchain/trident
repo_name: Ackee-Blockchain/trident
edit_uri: edit/master/docs
site_description: Trident is a Rust-based testing framework providing several convenient developer tools for testing Solana programs written in Anchor.
site_description: Rust-based Fuzzing framework for Solana programs to help you ship secure code.
site_author: Ackee Blockchain Security


Expand Down Expand Up @@ -98,6 +98,7 @@ plugins:
type: timeago
- mike:
canonical_version: latest
- social

# https://squidfunk.github.io/mkdocs-material/customization/?h=extra+css#additional-css
extra_css:
Expand Down

0 comments on commit e480c4b

Please sign in to comment.