-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from Once-Upon/benguyen0214/ou-1206-extract-co…
…ntextaction-into-its-own-file-so-i-can-link-to-it
- Loading branch information
Showing
3 changed files
with
55 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
export type ContextAction = | ||
| 'bought' | ||
| 'bridged' | ||
| 'deployed' | ||
| 'minted' | ||
| 'swapped' | ||
| 'sent' | ||
| 'received' | ||
| 'committed to' | ||
| 'received airdrop' | ||
| 'gave access to' | ||
| 'interacted with' | ||
| 'sent message' | ||
// WETH | ||
| 'wrapped' | ||
| 'unwrapped' | ||
// ENS | ||
| 'registered' | ||
| 'renewed' | ||
| 'set reverse ens to' | ||
// CryptoPunks | ||
| 'minted punk' | ||
| 'listed punk' | ||
| 'withdrew bid for' | ||
| 'bid on punk' | ||
| 'withdrew from contract' | ||
| 'bought punk' | ||
| 'transferred punk' | ||
| 'unlisted punk' | ||
// Leeroy | ||
| 'tipped' | ||
| 'updated user details' | ||
| 'replied to' | ||
| 'reposted' | ||
| 'registered username' | ||
| 'followed' | ||
| 'unfollowed' | ||
| 'posted' | ||
// fren.pet | ||
| 'set pet name' | ||
| 'bought accessory' | ||
| 'attacked' | ||
| 'redeemed' | ||
| 'bonk revealed' | ||
| 'wheel revealed' | ||
| 'wheel committed' | ||
| 'killed' | ||
| 'minted' | ||
| 'redeemed' | ||
| 'sold item' | ||
| 'joined dice game' | ||
| 'dice game settled'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './transaction'; | ||
export * from './log'; | ||
export * from './contextAction'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters