Reference
Warpcast
The Warpcast class is a wrapper around the Farcaster API. It also provides a number of helpful methods and utilities for interacting with the protocol. Pydantic models are used under the hood to validate the data returned from the API.
Source code in farcaster/client.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
|
create_new_auth_token(expires_in=10)
Create a new access token for a user from the wallet credentials
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expires_in |
PositiveInt
|
Expiration length of the token in minutes, defaults to 10 minutes |
10
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
access token |
Source code in farcaster/client.py
delete_auth()
Delete an access token
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the deletion |
Source code in farcaster/client.py
delete_cast(cast_hash)
Delete a cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
the hash of the cast to delete |
required |
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the deletion |
Source code in farcaster/client.py
delete_cast_likes(cast_hash)
Remove a like from a cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
hash of the cast to unlike |
required |
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the deletion |
Source code in farcaster/client.py
delete_recast(cast_hash)
Delete a recast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
the cast hash |
required |
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the recast deletion |
Source code in farcaster/client.py
follow_user(fid)
Follow a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
PositiveInt
|
Farcaster ID of the user to follow |
required |
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the follow |
Source code in farcaster/client.py
generate_custody_auth_header(params)
Generate a custody authorization header. Usually invoked from create_new_auth_token.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
AuthParams
|
authorization parameters |
required |
Raises:
Type | Description |
---|---|
Exception
|
Wallet is required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
custody authorization header |
Source code in farcaster/client.py
get_all_casts_in_thread(thread_hash)
Get all casts in a thread
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread_hash |
str
|
hash of the thread |
required |
Returns:
Name | Type | Description |
---|---|---|
CastsResult |
CastsResult
|
Model containing the casts |
Source code in farcaster/client.py
get_all_followers(fid=None)
Get all followers of a user by iterating through the next cursors
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
None
|
Returns:
Name | Type | Description |
---|---|---|
UsersResult |
UsersResult
|
model containing users |
Source code in farcaster/client.py
get_all_following(fid=None)
Get all the users a user is following by iterating through the next cursors
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
None
|
Returns:
Name | Type | Description |
---|---|---|
UsersResult |
UsersResult
|
model containing users |
Source code in farcaster/client.py
get_asset(token_id)
Get asset information
Parameters:
Name | Type | Description | Default |
---|---|---|---|
token_id |
int
|
token ID |
required |
Returns:
Name | Type | Description |
---|---|---|
AssetResult |
AssetResult
|
token information |
Source code in farcaster/client.py
get_asset_events(cursor=None, limit=25)
Get events for a given asset
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
events to receive, defaults to 25 |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableEventsResult |
IterableEventsResult
|
Returns the EventsResult model with an optional cursor |
Source code in farcaster/client.py
get_cast(hash)
Get a specific cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hash |
str
|
cast hash |
required |
Returns:
Name | Type | Description |
---|---|---|
CastContent |
CastContent
|
The cast content |
Source code in farcaster/client.py
get_cast_likes(cast_hash, cursor=None, limit=25)
Get the likes for a given cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
cast hash |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableReactionsResult |
IterableReactionsResult
|
Model containing the likes with an optional cursor |
Source code in farcaster/client.py
get_cast_recasters(cast_hash, cursor=None, limit=25)
Get the recasters for a given cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
cast hash |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableUsersResult |
IterableUsersResult
|
Model containing the recasters with an optional cursor |
Source code in farcaster/client.py
get_casts(fid, cursor=None, limit=25)
Get the casts for a given fid of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableCastsResult |
IterableCastsResult
|
Model containing the casts with an optional cursor |
Source code in farcaster/client.py
get_collection_owners(collection_id, cursor=None, limit=25)
Get the owners of an OpenSea collection
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
str
|
OpenSea collection ID |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableUsersResult |
IterableUsersResult
|
model containing users with an optional cursor |
Source code in farcaster/client.py
get_custody_address(username=None, fid=None)
Get the custody address of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
username |
NoneStr
|
username of a user, defaults to None |
None
|
fid |
Optional[int]
|
Farcaster ID, defaults to None |
None
|
Returns:
Name | Type | Description |
---|---|---|
CustodyAddress |
CustodyAddress
|
model containing the custody address |
Source code in farcaster/client.py
get_followers(fid, cursor=None, limit=25)
Get the followers of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableUsersResult |
IterableUsersResult
|
model containing users with an optional cursor |
Source code in farcaster/client.py
get_following(fid, cursor=None, limit=25)
Get the users a user is following
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableUsersResult |
IterableUsersResult
|
model containing users with an optional cursor |
Source code in farcaster/client.py
get_healthcheck()
Check if API is up and running
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
Status of the API |
get_me()
Get the current user
Returns:
Name | Type | Description |
---|---|---|
ApiUser |
ApiUser
|
model containing the current user |
Source code in farcaster/client.py
get_mention_and_reply_notifications(cursor=None, limit=25)
Get mention and reply notifications
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableNotificationsResult |
IterableNotificationsResult
|
model containing notifications with an optional cursor |
Source code in farcaster/client.py
get_recent_casts(cursor=None, limit=100)
Get all recent casts
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 100 |
100
|
Returns:
Name | Type | Description |
---|---|---|
IterableCastsResult |
IterableCastsResult
|
model containing casts with an optional cursor |
Source code in farcaster/client.py
get_recent_users(cursor=None, limit=25)
Get recent users
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableUsersResult |
IterableUsersResult
|
model containing users with an optional cursor |
Source code in farcaster/client.py
get_user(fid)
Get a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
Returns:
Name | Type | Description |
---|---|---|
ApiUser |
ApiUser
|
model containing the user |
Source code in farcaster/client.py
get_user_by_username(username)
Get a user by username
Parameters:
Name | Type | Description | Default |
---|---|---|---|
username |
str
|
username of the user |
required |
Returns:
Name | Type | Description |
---|---|---|
ApiUser |
ApiUser
|
model containing the user |
Source code in farcaster/client.py
get_user_by_verification(address)
Get a user by verification address
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address |
str
|
address of the user |
required |
Returns:
Name | Type | Description |
---|---|---|
ApiUser |
ApiUser
|
model containing the user |
Source code in farcaster/client.py
get_user_cast_likes(fid, cursor=None, limit=25)
Get the likes of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableLikes |
IterableLikes
|
model containing likes with an optional cursor |
Source code in farcaster/client.py
get_user_collections(owner_fid, cursor=None, limit=25)
Get the collections of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
owner_fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25, otherwise min(limit, 100) |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableCollectionsResult |
IterableCollectionsResult
|
model containing collections with an optional cursor |
Source code in farcaster/client.py
get_verifications(fid, cursor=None, limit=25)
Get the verifications of a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
int
|
Farcaster ID of the user |
required |
cursor |
NoneStr
|
cursor, defaults to None |
None
|
limit |
PositiveInt
|
limit, defaults to 25 |
25
|
Returns:
Name | Type | Description |
---|---|---|
IterableVerificationsResult |
IterableVerificationsResult
|
model containing verifications with an optional cursor |
Source code in farcaster/client.py
like_cast(cast_hash)
Like a given cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
hash of the cast to like |
required |
Returns:
Name | Type | Description |
---|---|---|
ReactionsPutResult |
ReactionsPutResult
|
Result of liking the cast |
Source code in farcaster/client.py
post_cast(text, embeds=None, parent=None)
Post a cast to Farcaster
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
text of the cast |
required |
embeds |
Optional[List[str]]
|
list of embeds, defaults to None |
None
|
parent |
Optional[Parent]
|
parent of the cast, defaults to None |
None
|
Returns:
Name | Type | Description |
---|---|---|
CastContent |
CastContent
|
The result of posting the cast |
Source code in farcaster/client.py
put_auth(auth_params)
Generate a custody bearer token and use it to generate an access token
Parameters:
Name | Type | Description | Default |
---|---|---|---|
auth_params |
AuthParams
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
TokenResult |
TokenResult
|
description |
Source code in farcaster/client.py
recast(cast_hash)
Recast a cast
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cast_hash |
str
|
the cast hash |
required |
Returns:
Name | Type | Description |
---|---|---|
CastHash |
CastHash
|
model containing the cast hash |
Source code in farcaster/client.py
stream_casts(**stream_options)
Stream all recent casts
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**stream_options |
Any
|
stream options |
{}
|
Returns:
Type | Description |
---|---|
Iterator[Optional[ApiCast]]
|
Iterator[Optional[ApiCast]]: iterator of casts. Returns none if pause_after is reached |
Source code in farcaster/client.py
stream_notifications(**stream_options)
Stream all recent notifications
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**stream_options |
Any
|
stream options |
{}
|
Returns:
Type | Description |
---|---|
Iterator[Optional[Union[MentionNotification, ReplyNotification]]]
|
Iterator[Optional[Union[MentionNotification, ReplyNotification]]]: iterator of notifications. Returns none if pause_after is reached |
Source code in farcaster/client.py
stream_users(**stream_options)
Stream all recent users.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**stream_options |
Any
|
stream options |
{}
|
Returns:
Type | Description |
---|---|
Iterator[Optional[ApiUser]]
|
Iterator[Optional[ApiUser]]: iterator of users. Returns none if pause_after is reached |
Source code in farcaster/client.py
unfollow_user(fid)
Unfollow a user
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fid |
PositiveInt
|
Farcaster ID of the user to unfollow |
required |
Returns:
Name | Type | Description |
---|---|---|
StatusContent |
StatusContent
|
Status of the unfollow |
Source code in farcaster/client.py
get_wallet(mnemonic=None, private_key=None)
Get a wallet from mnemonic or private key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mnemonic |
NoneStr
|
mnemonic |
None
|
private_key |
NoneStr
|
private key |
None
|
Returns:
Type | Description |
---|---|
Optional[LocalAccount]
|
Optional[LocalAccount]: wallet |
Source code in farcaster/client.py
now_ms()
Get the current time in milliseconds
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
current time in milliseconds |