Skip to content

Commit

Permalink
Merge pull request #16 from solana-fm/fix/idl-serialization-error
Browse files Browse the repository at this point in the history
fix: fix serialization problem for new extensions on accounts
  • Loading branch information
doodoo-aihc authored Jan 24, 2024
2 parents 6ee0317 + 3373713 commit 528a53e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/short-gorillas-melt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@solanafm/explorer-kit-idls": patch
---

fix: fix new extensions not able to serialize new extensions in mint account"
Original file line number Diff line number Diff line change
Expand Up @@ -1685,6 +1685,10 @@ export const Token2022_235377525_IDL: Idl = {
{
name: "GroupPointer",
fields: [
{
name: "extensionLength",
type: "u16",
},
{
name: "authority",
type: "publicKey",
Expand All @@ -1698,6 +1702,10 @@ export const Token2022_235377525_IDL: Idl = {
{
name: "TokenGroup",
fields: [
{
name: "extensionLength",
type: "u16",
},
{
name: "updateAuthority",
type: "publicKey",
Expand All @@ -1719,6 +1727,10 @@ export const Token2022_235377525_IDL: Idl = {
{
name: "GroupMemberPointer",
fields: [
{
name: "extensionLength",
type: "u16",
},
{
name: "authority",
type: "publicKey",
Expand All @@ -1732,6 +1744,10 @@ export const Token2022_235377525_IDL: Idl = {
{
name: "TokenGroupMember",
fields: [
{
name: "extensionLength",
type: "u16",
},
{
name: "mint",
type: "publicKey",
Expand Down

0 comments on commit 528a53e

Please sign in to comment.