6cc2d8af58
* Set up Firestore structure for mana bounty links
* Split up manalinks into successes and failures
* Allow clients to create manalinks
* Track txnId and successful users
* Store custom amounts in the link
* List all manalinks you've created
* Support backend for claiming manalinks
* Add some more error handling
* Tweak readme
* Fix typescript breakage
* Revert "Convert common imports in functions to be absolute"
This reverts commit c03518e906
.
* Scaffolding so `claimManalink` works
* Clean up imports
* Barebones endpoint to claim mana
* Fix rules to only allow link creators to query
* Design out claim giftcard
* List all claimed transactions
* Style in a more awesome card
* Fix import
* Padding tweak
* Fix useManalinkTxns hook
* /send -> /link
* Tidy up some details
* Do a bunch of random manalinks work
* Fix up LinksTable to build
* Clean up LinksTable an absurd amount
* Basic details functionality on manalinks table
* Work on manalink claim stuff
* Fix up some merge mess
* Not-signed-in flow implemented
* Better manalinks table
* Only show outstanding links in table
* Use new `ManalinkTxn` type
* /link -> /links
* Change manalinks page UI to use nice looking tabs
* Many fixes to manalinks UI
* Default to 1 use
* Tidying up
* Some copy changes based on feedback
* Add required index
Co-authored-by: Marshall Polaris <marshall@pol.rs>
36 lines
829 B
TypeScript
36 lines
829 B
TypeScript
export type Manalink = {
|
|
// The link to send: https://manifold.markets/send/{slug}
|
|
// Also functions as the unique id for the link.
|
|
slug: string
|
|
|
|
// Note: we assume both fromId and toId are of SourceType 'USER'
|
|
fromId: string
|
|
|
|
// Displayed to people claiming the link
|
|
message: string
|
|
|
|
// How much to send with the link
|
|
amount: number
|
|
token: 'M$' // TODO: could send eg YES shares too??
|
|
|
|
createdTime: number
|
|
// If null, the link is valid forever
|
|
expiresTime: number | null
|
|
// If null, the link can be used infinitely
|
|
maxUses: number | null
|
|
|
|
// Used for simpler caching
|
|
claimedUserIds: string[]
|
|
// Successful redemptions of the link
|
|
claims: Claim[]
|
|
}
|
|
|
|
export type Claim = {
|
|
toId: string
|
|
|
|
// The ID of the successful txn that tracks the money moved
|
|
txnId: string
|
|
|
|
claimedTime: number
|
|
}
|