Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions contracts/stellar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ pub fn batch_send(
```

The `send` function:

1. Transfers `amount` of `token` from `caller` to `stealth_address`
2. Calls the announcer contract to emit an event

Expand Down Expand Up @@ -196,6 +197,18 @@ const resolved = await namesContract.call("resolve", "alice");

---

{/* stellar-reference:start */}

<!-- This section is generated by scripts/generate-stellar-reference.ts. Do not edit by hand. -->

## Generated contract reference

Set `STELLAR_BINDINGS_DIR` to the generated TypeScript bindings directory, then run `npm run generate:stellar-reference` to refresh this section.

{/* stellar-reference:end */}

---

## Deployment

### Build
Expand Down
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "module",
"scripts": {
"generate:stellar-reference": "node scripts/generate-stellar-reference.ts",
"check:stellar-reference": "node scripts/generate-stellar-reference.ts --check --allow-missing",
"mint:validate": "mint validate",
"mint:broken-links": "mint broken-links"
}
}
Loading