Skip to content

Commit

Permalink
Adds generated code for edition
Browse files Browse the repository at this point in the history
  • Loading branch information
ajamaica committed Jul 18, 2023
1 parent b96d521 commit 0c18c28
Show file tree
Hide file tree
Showing 9 changed files with 1,832 additions and 698 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Accounts
// Metaplex
//
// This code was generated locally by Funkatronics on 2023-01-30
// This code was generated locally by Funkatronics on 2023-07-18
//
@file:UseSerializers(PublicKeyAs32ByteSerializer::class)

Expand All @@ -11,6 +11,7 @@ package com.metaplex.lib.experimental.jen.tokenmetadata
import com.metaplex.lib.serialization.serializers.solana.PublicKeyAs32ByteSerializer
import com.solana.core.PublicKey
import kotlin.Boolean
import kotlin.ByteArray
import kotlin.UByte
import kotlin.ULong
import kotlin.collections.List
Expand Down Expand Up @@ -43,6 +44,9 @@ class Edition(
@Serializable
class EditionMarker(val key: Key, val ledger: List<UByte>)

@Serializable
class EditionMarkerV2(val key: Key, val ledger: ByteArray)

@Serializable
class TokenOwnedEscrow(
val key: Key,
Expand Down Expand Up @@ -90,7 +94,8 @@ class TokenRecord(
val state: TokenState,
val ruleSetRevision: ULong?,
val delegate: PublicKey?,
val delegateRole: TokenDelegateRole?
val delegateRole: TokenDelegateRole?,
val lockedTransfer: PublicKey?
)

@Serializable
Expand Down
Loading

0 comments on commit 0c18c28

Please sign in to comment.