Skip to content

Commit

Permalink
deploy: 77548e7
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Jul 3, 2024
1 parent b358167 commit e8c97ec
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
11 changes: 10 additions & 1 deletion api.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,21 @@ <h3 id="minting-burning-and-updating-the-circulating-supply"><a class="header" h
<h2 id="events"><a class="header" href="#events">Events</a></h2>
<p>The following events are emitted from <code>FungibleToken</code> when appropriate:</p>
<pre><code class="language-ts">events = {
SetAdmin: PublicKey,
SetAdmin: SetAdminEvent,
Pause: PauseEvent,
Mint: MintEvent,
Burn: BurnEvent,
Transfer: TransferEvent,
}

export class SetAdminEvent extends Struct({
adminKey: PublicKey,
}) {}

export class PauseEvent extends Struct({
isPaused: Bool,
}) {}

class MintEvent extends Struct({
recipient: PublicKey,
amount: UInt64,
Expand Down
11 changes: 10 additions & 1 deletion print.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,21 @@ <h3 id="minting-burning-and-updating-the-circulating-supply"><a class="header" h
<h2 id="events"><a class="header" href="#events">Events</a></h2>
<p>The following events are emitted from <code>FungibleToken</code> when appropriate:</p>
<pre><code class="language-ts">events = {
SetAdmin: PublicKey,
SetAdmin: SetAdminEvent,
Pause: PauseEvent,
Mint: MintEvent,
Burn: BurnEvent,
Transfer: TransferEvent,
}

export class SetAdminEvent extends Struct({
adminKey: PublicKey,
}) {}

export class PauseEvent extends Struct({
isPaused: Bool,
}) {}

class MintEvent extends Struct({
recipient: PublicKey,
amount: UInt64,
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit e8c97ec

Please sign in to comment.