Skip to content

Commit

Permalink
✨ Add RecentSlothashes SysVars
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Sep 24, 2023
1 parent 85e1e34 commit 56399a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Solana.Unity.Programs/SysVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ public static class SysVars
/// <summary>
/// The public key of the Recent Block Hashes System Variable.
/// </summary>
public static readonly PublicKey
RecentBlockHashesKey = new("SysvarRecentB1ockHashes11111111111111111111");
public static readonly PublicKey RecentBlockHashesKey = new("SysvarRecentB1ockHashes11111111111111111111");

/// <summary>
/// The public key of the Recent Slot Hashes System Variable.
/// </summary>
public static readonly PublicKet RecentSlotHashesKey = new("SysvarS1otHashes111111111111111111111111111");

Check failure on line 23 in src/Solana.Unity.Programs/SysVars.cs

View workflow job for this annotation

GitHub Actions / build

The type or namespace name 'PublicKet' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 23 in src/Solana.Unity.Programs/SysVars.cs

View workflow job for this annotation

GitHub Actions / build

The type or namespace name 'PublicKet' could not be found (are you missing a using directive or an assembly reference?)

/// <summary>
/// The public key of the Rent System Variable.
Expand Down

0 comments on commit 56399a1

Please sign in to comment.