Skip to content

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
class 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.
    """

    config: ConfigurationParams
    wallet: Optional[LocalAccount]
    access_token: NoneStr
    expires_at: Optional[PositiveInt]
    rotation_duration: PositiveInt
    session: requests.Session

    def __init__(
        self,
        mnemonic: NoneStr = None,
        private_key: NoneStr = None,
        access_token: NoneStr = None,
        expires_at: Optional[PositiveInt] = None,
        rotation_duration: PositiveInt = 10,
        **data: Any,
    ):
        self.config = ConfigurationParams(**data)
        self.wallet = get_wallet(mnemonic, private_key)
        self.access_token = access_token
        self.expires_at = expires_at
        self.rotation_duration = rotation_duration
        self.session = requests.Session()
        self.session.mount(
            self.config.base_path,
            HTTPAdapter(
                max_retries=Retry(
                    total=2, backoff_factor=1, status_forcelist=[520, 413, 429, 503]
                )
            ),
        )
        if self.access_token:
            self.session.headers.update(
                {"Authorization": f"Bearer {self.access_token}"}
            )
            if not self.expires_at:
                self.expires_at = 33228645430000  # 3000-01-01

        elif not self.wallet:
            raise Exception("No wallet or access token provided")
        else:
            self.create_new_auth_token(expires_in=self.rotation_duration)

    def get_base_path(self):
        return self.config.base_path

    def get_base_options(self):
        return self.config.base_options

    def _get(
        self,
        path: str,
        params: Dict[Any, Any] = {},
        json: Dict[Any, Any] = {},
        headers: Dict[Any, Any] = {},
    ) -> Dict[Any, Any]:
        self._check_auth_header()
        logging.debug(f"GET {path} {params} {json} {headers}")
        response: Dict[Any, Any] = self.session.get(
            self.config.base_path + path, params=params, json=json, headers=headers
        ).json()
        if "errors" in response:
            raise Exception(response["errors"])  # pragma: no cover
        return response

    def _post(
        self,
        path: str,
        params: Dict[Any, Any] = {},
        json: Dict[Any, Any] = {},
        headers: Dict[Any, Any] = {},
    ) -> Dict[Any, Any]:
        self._check_auth_header()
        logging.debug(f"POST {path} {params} {json} {headers}")
        response: Dict[Any, Any] = self.session.post(
            self.config.base_path + path, params=params, json=json, headers=headers
        ).json()
        if "errors" in response:
            raise Exception(response["errors"])  # pragma: no cover
        return response

    def _put(
        self,
        path: str,
        params: Dict[Any, Any] = {},
        json: Dict[Any, Any] = {},
        headers: Dict[Any, Any] = {},
    ) -> Dict[Any, Any]:
        self._check_auth_header()
        logging.debug(f"PUT {path} {params} {json} {headers}")
        response: Dict[Any, Any] = self.session.put(
            self.config.base_path + path, params=params, json=json, headers=headers
        ).json()
        if "errors" in response:
            raise Exception(response["errors"])  # pragma: no cover
        return response

    def _delete(
        self,
        path: str,
        params: Dict[Any, Any] = {},
        json: Dict[Any, Any] = {},
        headers: Dict[Any, Any] = {},
    ) -> Dict[Any, Any]:
        self._check_auth_header()
        logging.debug(f"DELETE {path} {params} {json} {headers}")
        response: Dict[Any, Any] = self.session.delete(
            self.config.base_path + path, params=params, json=json, headers=headers
        ).json()
        if "errors" in response:
            raise Exception(response["errors"])  # pragma: no cover
        return response

    def _check_auth_header(self):
        assert self.expires_at
        if self.expires_at < now_ms() + 1000:
            self.create_new_auth_token(expires_in=self.rotation_duration)

    def get_healthcheck(self) -> bool:
        """Check if API is up and running

        Returns:
            bool: Status of the API
        """
        response = self.session.get("https://api.warpcast.com/healthcheck")
        return response.ok

    def get_asset(self, token_id: int) -> AssetResult:
        """Get asset information

        Args:
            token_id (int): token ID

        Returns:
            AssetResult: token information
        """
        response = self._get("asset", {"token_id": token_id})
        return AssetGetResponse(**response).result

    def get_asset_events(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableEventsResult:
        """Get events for a given asset

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): events to receive, defaults
                to 25

        Returns:
            IterableEventsResult: Returns the EventsResult model with an optional cursor
        """
        response = AssetEventsGetResponse(
            **self._get(
                "asset-events",
                params={"cursor": cursor, "limit": limit},
            )
        )
        return IterableEventsResult(
            events=response.result.events, cursor=getattr(response.next, "cursor", None)
        )

    def put_auth(self, auth_params: AuthParams) -> TokenResult:
        """Generate a custody bearer token and use it to generate an access token

        Args:
            auth_params (AuthParams): _description_

        Returns:
            TokenResult: _description_
        """
        header = self.generate_custody_auth_header(auth_params)
        body = AuthPutRequest(params=auth_params)
        response = requests.put(
            self.config.base_path + "auth",
            json=body.dict(by_alias=True, exclude_none=True),
            headers={"Authorization": header},
        ).json()
        return AuthPutResponse(**response).result

    def delete_auth(self) -> StatusContent:
        """Delete an access token

        Returns:
            StatusContent: Status of the deletion
        """
        timestamp = now_ms()
        body = AuthDeleteRequest(params=Timestamp(timestamp=timestamp))
        response = self._delete(
            "auth",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def get_cast_likes(
        self,
        cast_hash: str,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableReactionsResult:
        """Get the likes for a given cast

        Args:
            cast_hash (str): cast hash
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableReactionsResult: Model containing the likes with an optional cursor
        """
        likes: List[ApiCastReaction] = []
        while True:
            response = self._get(
                "cast-likes",
                params={
                    "castHash": cast_hash,
                    "cursor": cursor,
                    "limit": min(limit, 100),
                },
            )
            response_model = CastReactionsGetResponse(**response)
            if response_model.result.likes:
                likes = response_model.result.likes
            if not response_model.next or len(likes) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableReactionsResult(
            likes=likes[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def like_cast(self, cast_hash: str) -> ReactionsPutResult:
        """Like a given cast

        Args:
            cast_hash (str): hash of the cast to like

        Returns:
            ReactionsPutResult: Result of liking the cast
        """
        body = CastHash(cast_hash=cast_hash)
        response = self._put(
            "cast-likes",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return CastReactionsPutResponse(**response).result

    def delete_cast_likes(self, cast_hash: str) -> StatusContent:
        """Remove a like from a cast

        Args:
            cast_hash (str): hash of the cast to unlike

        Returns:
            StatusContent: Status of the deletion
        """
        body = CastHash(cast_hash=cast_hash)
        response = self._delete(
            "cast-likes",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def get_cast_recasters(
        self,
        cast_hash: str,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableUsersResult:
        """Get the recasters for a given cast

        Args:
            cast_hash (str): cast hash
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableUsersResult: Model containing the recasters with an optional cursor
        """
        users: List[ApiUser] = []
        while True:
            response = self._get(
                "cast-recasters",
                params={
                    "castHash": cast_hash,
                    "cursor": cursor,
                    "limit": min(limit, 100),
                },
            )
            response_model = CastRecastersGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if not response_model.next or len(users) >= limit:
                break
        return IterableUsersResult(
            users=users, cursor=getattr(response_model.next, "cursor", None)
        )

    def get_cast(
        self,
        hash: str,
    ) -> CastContent:
        """Get a specific cast

        Args:
            hash (str): cast hash

        Returns:
            CastContent: The cast content
        """
        response = self._get(
            "cast",
            params={"hash": hash},
        )
        return CastGetResponse(**response).result

    def get_all_casts_in_thread(
        self,
        thread_hash: str,
    ) -> CastsResult:
        """Get all casts in a thread

        Args:
            thread_hash (str): hash of the thread

        Returns:
            CastsResult: Model containing the casts
        """
        response = self._get(
            "all-casts-in-thread",
            params={"threadHash": thread_hash},
        )
        return CastsGetResponse(**response).result

    def get_casts(
        self,
        fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableCastsResult:
        """Get the casts for a given fid of a user

        Args:
            fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableCastsResult: Model containing the casts with an optional cursor
        """
        casts: List[ApiCast] = []
        while True:
            response = self._get(
                "casts",
                params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = CastsGetResponse(**response)
            if response_model.result.casts:
                casts.extend(response_model.result.casts)
            if not response_model.next or len(casts) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableCastsResult(
            casts=casts[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def post_cast(
        self,
        text: str,
        embeds: Optional[List[str]] = None,
        parent: Optional[Parent] = None,
    ) -> CastContent:
        """Post a cast to Farcaster

        Args:
            text (str): text of the cast
            embeds (Optional[List[str]], optional): list of embeds, defaults to None
            parent (Optional[Parent], optional): parent of the cast, defaults to None

        Returns:
            CastContent: The result of posting the cast
        """
        body = CastsPostRequest(text=text, embeds=embeds, parent=parent)
        response = self._post(
            "casts",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return CastsPostResponse(**response).result

    def delete_cast(self, cast_hash: str) -> StatusContent:
        """Delete a cast

        Args:
            cast_hash (str): the hash of the cast to delete

        Returns:
            StatusContent: Status of the deletion
        """
        body = CastHash(cast_hash=cast_hash)
        response = self._delete(
            "casts",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def get_collection_owners(
        self,
        collection_id: str,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableUsersResult:
        """Get the owners of an OpenSea collection

        Args:
            collection_id (str): OpenSea collection ID
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableUsersResult: model containing users with an optional cursor
        """
        users: List[ApiUser] = []
        while True:
            response = self._get(
                "collection-owners",
                params={
                    "collectionId": collection_id,
                    "cursor": cursor,
                    "limit": min(limit, 100),
                },
            )
            response_model = CollectionOwnersGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if not response_model.next or len(users) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableUsersResult(
            users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def get_followers(
        self,
        fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableUsersResult:
        """Get the followers of a user

        Args:
            fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableUsersResult: model containing users with an optional cursor
        """
        users: List[ApiUser] = []
        while True:
            response = self._get(
                "followers",
                params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = FollowersGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if not response_model.next or len(users) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableUsersResult(
            users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def get_all_followers(self, fid: Optional[int] = None) -> UsersResult:
        """Get all followers of a user by iterating through the next cursors
        Args:
            fid (int): Farcaster ID of the user
        Returns:
            UsersResult: model containing users
        """
        users: List[ApiUser] = []
        cursor = None
        limit = 100
        if fid is None:
            fid = self.get_me().fid
        while True:
            response = self._get(
                "followers",
                params={"fid": fid, "cursor": cursor, "limit": limit},
            )
            response_model = FollowersGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if response_model.next is None:
                break
            cursor = response_model.next.cursor
        return UsersResult(users=users)

    def get_following(
        self,
        fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableUsersResult:
        """Get the users a user is following

        Args:
            fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableUsersResult: model containing users with an optional cursor
        """
        users: List[ApiUser] = []
        while True:
            response = self._get(
                "following",
                params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = FollowingGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if not response_model.next or len(users) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableUsersResult(
            users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def get_all_following(self, fid: Optional[int] = None) -> UsersResult:
        """Get all the users a user is following by iterating through the next cursors

        Args:
            fid (int): Farcaster ID of the user

        Returns:
            UsersResult: model containing users
        """
        users: List[ApiUser] = []
        cursor = None
        limit = 100
        if fid is None:
            fid = self.get_me().fid
        while True:
            response = self._get(
                "following",
                params={"fid": fid, "cursor": cursor, "limit": limit},
            )
            response_model = FollowingGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if response_model.next is None:
                break
            cursor = response_model.next.cursor
        return UsersResult(users=users)

    def follow_user(self, fid: PositiveInt) -> StatusContent:
        """Follow a user

        Args:
            fid (PositiveInt): Farcaster ID of the user to follow

        Returns:
            StatusContent: Status of the follow
        """
        body = FollowsPutRequest(target_fid=fid)
        response = self._put(
            "follows",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def unfollow_user(self, fid: PositiveInt) -> StatusContent:
        """Unfollow a user

        Args:
            fid (PositiveInt): Farcaster ID of the user to unfollow

        Returns:
            StatusContent: Status of the unfollow
        """
        body = FollowsDeleteRequest(target_fid=fid)
        response = self._delete(
            "follows",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def get_me(self) -> ApiUser:
        """Get the current user

        Returns:
            ApiUser: model containing the current user
        """
        response = self._get(
            "me",
        )
        response_model = MeGetResponse(**response).result
        self.config.username = response_model.user.username
        return response_model.user

    def get_mention_and_reply_notifications(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableNotificationsResult:
        """Get mention and reply notifications

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableNotificationsResult: model containing notifications with an optional cursor
        """
        notifications: List[Union[MentionNotification, ReplyNotification]] = []
        while True:
            response = self._get(
                "mention-and-reply-notifications",
                params={"cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = MentionAndReplyNotificationsGetResponse(**response)
            if response_model.result.notifications:
                notifications.extend(response_model.result.notifications)
            if not response_model.next or len(notifications) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableNotificationsResult(
            notifications=notifications[:limit],
            cursor=getattr(response_model.next, "cursor", None),
        )

    def _recent_notifications_list(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> List[Union[MentionNotification, ReplyNotification]]:
        """Get mention and reply notifications as a list

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25

        Returns:
            List[Union[MentionNotification, ReplyNotification]]: list of notifications
        """
        return self.get_mention_and_reply_notifications(
            cursor=cursor, limit=limit
        ).notifications

    def stream_notifications(
        self, **stream_options: Any
    ) -> Iterator[Optional[Union[MentionNotification, ReplyNotification]]]:
        """Stream all recent notifications

        Possible stream options:
            ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

            ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

            ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

        Args:
            **stream_options: stream options

        Returns:
            Iterator[Optional[Union[MentionNotification, ReplyNotification]]]: iterator of notifications. Returns none if pause_after is reached
        """
        return stream_generator(
            self._recent_notifications_list,
            attribute_name="id",
            limit=20,
            **stream_options,
        )

    def recast(self, cast_hash: str) -> CastHash:
        """Recast a cast

        Args:
            cast_hash (str): the cast hash

        Returns:
            CastHash: model containing the cast hash
        """
        body = CastHash(cast_hash=cast_hash)
        response = self._put(
            "recasts",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return RecastsPutResponse(**response).result

    def delete_recast(self, cast_hash: str) -> StatusContent:
        """Delete a recast

        Args:
            cast_hash (str): the cast hash

        Returns:
            StatusContent: Status of the recast deletion
        """
        body = CastHash(cast_hash=cast_hash)
        response = self._delete(
            "recasts",
            json=body.dict(by_alias=True, exclude_none=True),
        )
        return StatusResponse(**response).result

    def get_user(self, fid: int) -> ApiUser:
        """Get a user

        Args:
            fid (int): Farcaster ID of the user

        Returns:
            ApiUser: model containing the user
        """
        response = self._get(
            "user",
            params={"fid": fid},
        )
        return UserGetResponse(**response).result.user

    def get_user_by_username(
        self,
        username: str,
    ) -> ApiUser:
        """Get a user by username

        Args:
            username (str): username of the user

        Returns:
            ApiUser: model containing the user
        """
        response = self._get(
            "user-by-username",
            params={"username": username},
        )
        return UserByUsernameGetResponse(**response).result.user

    def get_user_by_verification(
        self,
        address: str,
    ) -> ApiUser:
        """Get a user by verification address

        Args:
            address (str): address of the user

        Returns:
            ApiUser: model containing the user
        """
        response = self._get(
            "user-by-verification",
            params={"address": address},
        )
        return UserByUsernameGetResponse(**response).result.user

    def get_user_collections(
        self,
        owner_fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableCollectionsResult:
        """Get the collections of a user

        Args:
            owner_fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableCollectionsResult: model containing collections with an optional cursor
        """
        collections: List[ApiAssetCollection] = []
        while True:
            response = self._get(
                "user-collections",
                params={
                    "ownerFid": owner_fid,
                    "cursor": cursor,
                    "limit": min(limit, 100),
                },
            )
            response_model = UserCollectionsGetResponse(**response)
            if response_model.result.collections:
                collections.extend(response_model.result.collections)
            if not response_model.next or len(collections) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableCollectionsResult(
            collections=collections[:limit],
            cursor=getattr(response_model.next, "cursor", None),
        )

    def get_verifications(
        self,
        fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableVerificationsResult:
        """Get the verifications of a user

        Args:
            fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25

        Returns:
            IterableVerificationsResult: model containing verifications with an optional cursor
        """
        response = VerificationsGetResponse(
            **self._get(
                "verifications",
                params={"fid": fid, "cursor": cursor, "limit": limit},
            )
        )
        return IterableVerificationsResult(
            verifications=response.result.verifications,
            cursor=getattr(response.next, "cursor", None),
        )

    def get_recent_users(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableUsersResult:
        """Get recent users

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableUsersResult: model containing users with an optional cursor
        """
        users: List[ApiUser] = []
        while True:
            response = self._get(
                "recent-users",
                params={"cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = UsersGetResponse(**response)
            if response_model.result.users:
                users.extend(response_model.result.users)
            if not response_model.next or len(users) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableUsersResult(
            users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def _recent_users_list(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> List[ApiUser]:
        """Get recent users as a list

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25

        Returns:
            List[ApiUser]: list of users
        """
        return self.get_recent_users(cursor=cursor, limit=limit).users

    def stream_users(self, **stream_options: Any) -> Iterator[Optional[ApiUser]]:
        """Stream all recent users.

        Possible stream options:
            ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

            ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

            ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

        Args:
            **stream_options: stream options


        Returns:
            Iterator[Optional[ApiUser]]: iterator of users. Returns none if pause_after is reached
        """
        return stream_generator(
            self._recent_users_list, attribute_name="fid", limit=20, **stream_options
        )

    def get_custody_address(
        self,
        username: NoneStr = None,
        fid: Optional[int] = None,
    ) -> CustodyAddress:
        """Get the custody address of a user

        Args:
            username (NoneStr, optional): username of a user, defaults
                to None
            fid (Optional[int], optional): Farcaster ID, defaults to
                None

        Returns:
            CustodyAddress: model containing the custody address
        """
        assert username or fid, "fname or fid must be provided"
        response = self._get(
            "custody-address",
            params={"fname": username, "fid": fid},
        )
        return CustodyAddressGetResponse(**response).result

    def get_user_cast_likes(
        self,
        fid: int,
        cursor: NoneStr = None,
        limit: PositiveInt = 25,
    ) -> IterableLikes:
        """Get the likes of a user

        Args:
            fid (int): Farcaster ID of the user
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

        Returns:
            IterableLikes: model containing likes with an optional cursor
        """
        likes: List[ApiCastReaction] = []
        while True:
            response = self._get(
                "user-cast-likes",
                params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = UserCastLikesGetResponse(**response)
            if response_model.result.likes:
                likes.extend(response_model.result.likes)
            if not response_model.next or len(likes) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableLikes(
            likes=likes[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def get_recent_casts(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 100,
    ) -> IterableCastsResult:
        """Get all recent casts

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 100

        Returns:
            IterableCastsResult: model containing casts with an optional cursor
        """
        casts: List[ApiCast] = []
        while True:
            response = self._get(
                "recent-casts",
                params={"cursor": cursor, "limit": min(limit, 100)},
            )
            response_model = CastsGetResponse(**response)
            if response_model.result.casts:
                casts.extend(response_model.result.casts)
            if not response_model.next or len(casts) >= limit:
                break
            cursor = response_model.next.cursor
        return IterableCastsResult(
            casts=casts[:limit], cursor=getattr(response_model.next, "cursor", None)
        )

    def _recent_casts_lists(
        self,
        cursor: NoneStr = None,
        limit: PositiveInt = 100,
    ) -> List[ApiCast]:
        """Get all recent casts and return them as a list

        Args:
            cursor (NoneStr, optional): cursor, defaults to None
            limit (PositiveInt, optional): limit, defaults to 100

        Returns:
            List[ApiCast]: list of casts
        """
        return self.get_recent_casts(cursor=cursor, limit=limit).casts

    def stream_casts(self, **stream_options: Any) -> Iterator[Optional[ApiCast]]:
        """Stream all recent casts

        Possible stream options:
            ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

            ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

            ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

        Args:
            **stream_options: stream options

        Returns:
            Iterator[Optional[ApiCast]]: iterator of casts. Returns none if pause_after is reached
        """
        return stream_generator(
            self._recent_casts_lists, attribute_name="hash", limit=50, **stream_options
        )

    def create_new_auth_token(self, expires_in: PositiveInt = 10) -> str:
        """Create a new access token for a user from the wallet credentials

        Args:
            expires_in (PositiveInt): Expiration length of the token in minutes,
                defaults to 10 minutes

        Returns:
            str: access token
        """
        now = int(time.time())
        auth_params = AuthParams(
            timestamp=now * 1000, expires_at=(now + (expires_in * 60)) * 1000
        )
        logging.debug(f"Creating new auth token with params: {auth_params}")
        response = self.put_auth(auth_params)
        self.access_token = response.token.secret
        self.expires_at = auth_params.expires_at
        self.rotation_duration = expires_in

        self.session.headers.update({"Authorization": f"Bearer {self.access_token}"})

        return self.access_token

    def generate_custody_auth_header(self, params: AuthParams) -> str:
        """Generate a custody authorization header. Usually invoked from create_new_auth_token.

        Args:
            params (AuthParams): authorization parameters

        Raises:
            Exception: Wallet is required

        Returns:
            str: custody authorization header
        """
        if not self.wallet:
            raise Exception("Wallet not set")
        auth_put_request = AuthPutRequest(params=params)
        payload = auth_put_request.dict(by_alias=True, exclude_none=True)
        encoded_payload = canonicaljson.encode_canonical_json(payload)
        signable_message = encode_defunct(primitive=encoded_payload)
        signed_message: SignedMessage = self.wallet.sign_message(signable_message)
        data_hex_array = bytearray(signed_message.signature)
        encoded = base64.b64encode(data_hex_array).decode()
        return f"Bearer eip191:{encoded}"

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
def create_new_auth_token(self, expires_in: PositiveInt = 10) -> str:
    """Create a new access token for a user from the wallet credentials

    Args:
        expires_in (PositiveInt): Expiration length of the token in minutes,
            defaults to 10 minutes

    Returns:
        str: access token
    """
    now = int(time.time())
    auth_params = AuthParams(
        timestamp=now * 1000, expires_at=(now + (expires_in * 60)) * 1000
    )
    logging.debug(f"Creating new auth token with params: {auth_params}")
    response = self.put_auth(auth_params)
    self.access_token = response.token.secret
    self.expires_at = auth_params.expires_at
    self.rotation_duration = expires_in

    self.session.headers.update({"Authorization": f"Bearer {self.access_token}"})

    return self.access_token

delete_auth()

Delete an access token

Returns:

Name Type Description
StatusContent StatusContent

Status of the deletion

Source code in farcaster/client.py
def delete_auth(self) -> StatusContent:
    """Delete an access token

    Returns:
        StatusContent: Status of the deletion
    """
    timestamp = now_ms()
    body = AuthDeleteRequest(params=Timestamp(timestamp=timestamp))
    response = self._delete(
        "auth",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def delete_cast(self, cast_hash: str) -> StatusContent:
    """Delete a cast

    Args:
        cast_hash (str): the hash of the cast to delete

    Returns:
        StatusContent: Status of the deletion
    """
    body = CastHash(cast_hash=cast_hash)
    response = self._delete(
        "casts",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def delete_cast_likes(self, cast_hash: str) -> StatusContent:
    """Remove a like from a cast

    Args:
        cast_hash (str): hash of the cast to unlike

    Returns:
        StatusContent: Status of the deletion
    """
    body = CastHash(cast_hash=cast_hash)
    response = self._delete(
        "cast-likes",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def delete_recast(self, cast_hash: str) -> StatusContent:
    """Delete a recast

    Args:
        cast_hash (str): the cast hash

    Returns:
        StatusContent: Status of the recast deletion
    """
    body = CastHash(cast_hash=cast_hash)
    response = self._delete(
        "recasts",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def follow_user(self, fid: PositiveInt) -> StatusContent:
    """Follow a user

    Args:
        fid (PositiveInt): Farcaster ID of the user to follow

    Returns:
        StatusContent: Status of the follow
    """
    body = FollowsPutRequest(target_fid=fid)
    response = self._put(
        "follows",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def generate_custody_auth_header(self, params: AuthParams) -> str:
    """Generate a custody authorization header. Usually invoked from create_new_auth_token.

    Args:
        params (AuthParams): authorization parameters

    Raises:
        Exception: Wallet is required

    Returns:
        str: custody authorization header
    """
    if not self.wallet:
        raise Exception("Wallet not set")
    auth_put_request = AuthPutRequest(params=params)
    payload = auth_put_request.dict(by_alias=True, exclude_none=True)
    encoded_payload = canonicaljson.encode_canonical_json(payload)
    signable_message = encode_defunct(primitive=encoded_payload)
    signed_message: SignedMessage = self.wallet.sign_message(signable_message)
    data_hex_array = bytearray(signed_message.signature)
    encoded = base64.b64encode(data_hex_array).decode()
    return f"Bearer eip191:{encoded}"

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
def get_all_casts_in_thread(
    self,
    thread_hash: str,
) -> CastsResult:
    """Get all casts in a thread

    Args:
        thread_hash (str): hash of the thread

    Returns:
        CastsResult: Model containing the casts
    """
    response = self._get(
        "all-casts-in-thread",
        params={"threadHash": thread_hash},
    )
    return CastsGetResponse(**response).result

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
def get_all_followers(self, fid: Optional[int] = None) -> UsersResult:
    """Get all followers of a user by iterating through the next cursors
    Args:
        fid (int): Farcaster ID of the user
    Returns:
        UsersResult: model containing users
    """
    users: List[ApiUser] = []
    cursor = None
    limit = 100
    if fid is None:
        fid = self.get_me().fid
    while True:
        response = self._get(
            "followers",
            params={"fid": fid, "cursor": cursor, "limit": limit},
        )
        response_model = FollowersGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if response_model.next is None:
            break
        cursor = response_model.next.cursor
    return UsersResult(users=users)

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
def get_all_following(self, fid: Optional[int] = None) -> UsersResult:
    """Get all the users a user is following by iterating through the next cursors

    Args:
        fid (int): Farcaster ID of the user

    Returns:
        UsersResult: model containing users
    """
    users: List[ApiUser] = []
    cursor = None
    limit = 100
    if fid is None:
        fid = self.get_me().fid
    while True:
        response = self._get(
            "following",
            params={"fid": fid, "cursor": cursor, "limit": limit},
        )
        response_model = FollowingGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if response_model.next is None:
            break
        cursor = response_model.next.cursor
    return UsersResult(users=users)

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
def get_asset(self, token_id: int) -> AssetResult:
    """Get asset information

    Args:
        token_id (int): token ID

    Returns:
        AssetResult: token information
    """
    response = self._get("asset", {"token_id": token_id})
    return AssetGetResponse(**response).result

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
def get_asset_events(
    self,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableEventsResult:
    """Get events for a given asset

    Args:
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): events to receive, defaults
            to 25

    Returns:
        IterableEventsResult: Returns the EventsResult model with an optional cursor
    """
    response = AssetEventsGetResponse(
        **self._get(
            "asset-events",
            params={"cursor": cursor, "limit": limit},
        )
    )
    return IterableEventsResult(
        events=response.result.events, cursor=getattr(response.next, "cursor", None)
    )

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
def get_cast(
    self,
    hash: str,
) -> CastContent:
    """Get a specific cast

    Args:
        hash (str): cast hash

    Returns:
        CastContent: The cast content
    """
    response = self._get(
        "cast",
        params={"hash": hash},
    )
    return CastGetResponse(**response).result

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
def get_cast_likes(
    self,
    cast_hash: str,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableReactionsResult:
    """Get the likes for a given cast

    Args:
        cast_hash (str): cast hash
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableReactionsResult: Model containing the likes with an optional cursor
    """
    likes: List[ApiCastReaction] = []
    while True:
        response = self._get(
            "cast-likes",
            params={
                "castHash": cast_hash,
                "cursor": cursor,
                "limit": min(limit, 100),
            },
        )
        response_model = CastReactionsGetResponse(**response)
        if response_model.result.likes:
            likes = response_model.result.likes
        if not response_model.next or len(likes) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableReactionsResult(
        likes=likes[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_cast_recasters(
    self,
    cast_hash: str,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableUsersResult:
    """Get the recasters for a given cast

    Args:
        cast_hash (str): cast hash
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableUsersResult: Model containing the recasters with an optional cursor
    """
    users: List[ApiUser] = []
    while True:
        response = self._get(
            "cast-recasters",
            params={
                "castHash": cast_hash,
                "cursor": cursor,
                "limit": min(limit, 100),
            },
        )
        response_model = CastRecastersGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if not response_model.next or len(users) >= limit:
            break
    return IterableUsersResult(
        users=users, cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_casts(
    self,
    fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableCastsResult:
    """Get the casts for a given fid of a user

    Args:
        fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableCastsResult: Model containing the casts with an optional cursor
    """
    casts: List[ApiCast] = []
    while True:
        response = self._get(
            "casts",
            params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = CastsGetResponse(**response)
        if response_model.result.casts:
            casts.extend(response_model.result.casts)
        if not response_model.next or len(casts) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableCastsResult(
        casts=casts[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_collection_owners(
    self,
    collection_id: str,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableUsersResult:
    """Get the owners of an OpenSea collection

    Args:
        collection_id (str): OpenSea collection ID
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableUsersResult: model containing users with an optional cursor
    """
    users: List[ApiUser] = []
    while True:
        response = self._get(
            "collection-owners",
            params={
                "collectionId": collection_id,
                "cursor": cursor,
                "limit": min(limit, 100),
            },
        )
        response_model = CollectionOwnersGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if not response_model.next or len(users) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableUsersResult(
        users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_custody_address(
    self,
    username: NoneStr = None,
    fid: Optional[int] = None,
) -> CustodyAddress:
    """Get the custody address of a user

    Args:
        username (NoneStr, optional): username of a user, defaults
            to None
        fid (Optional[int], optional): Farcaster ID, defaults to
            None

    Returns:
        CustodyAddress: model containing the custody address
    """
    assert username or fid, "fname or fid must be provided"
    response = self._get(
        "custody-address",
        params={"fname": username, "fid": fid},
    )
    return CustodyAddressGetResponse(**response).result

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
def get_followers(
    self,
    fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableUsersResult:
    """Get the followers of a user

    Args:
        fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableUsersResult: model containing users with an optional cursor
    """
    users: List[ApiUser] = []
    while True:
        response = self._get(
            "followers",
            params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = FollowersGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if not response_model.next or len(users) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableUsersResult(
        users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_following(
    self,
    fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableUsersResult:
    """Get the users a user is following

    Args:
        fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableUsersResult: model containing users with an optional cursor
    """
    users: List[ApiUser] = []
    while True:
        response = self._get(
            "following",
            params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = FollowingGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if not response_model.next or len(users) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableUsersResult(
        users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

get_healthcheck()

Check if API is up and running

Returns:

Name Type Description
bool bool

Status of the API

Source code in farcaster/client.py
def get_healthcheck(self) -> bool:
    """Check if API is up and running

    Returns:
        bool: Status of the API
    """
    response = self.session.get("https://api.warpcast.com/healthcheck")
    return response.ok

get_me()

Get the current user

Returns:

Name Type Description
ApiUser ApiUser

model containing the current user

Source code in farcaster/client.py
def get_me(self) -> ApiUser:
    """Get the current user

    Returns:
        ApiUser: model containing the current user
    """
    response = self._get(
        "me",
    )
    response_model = MeGetResponse(**response).result
    self.config.username = response_model.user.username
    return response_model.user

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
def get_mention_and_reply_notifications(
    self,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableNotificationsResult:
    """Get mention and reply notifications

    Args:
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableNotificationsResult: model containing notifications with an optional cursor
    """
    notifications: List[Union[MentionNotification, ReplyNotification]] = []
    while True:
        response = self._get(
            "mention-and-reply-notifications",
            params={"cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = MentionAndReplyNotificationsGetResponse(**response)
        if response_model.result.notifications:
            notifications.extend(response_model.result.notifications)
        if not response_model.next or len(notifications) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableNotificationsResult(
        notifications=notifications[:limit],
        cursor=getattr(response_model.next, "cursor", None),
    )

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
def get_recent_casts(
    self,
    cursor: NoneStr = None,
    limit: PositiveInt = 100,
) -> IterableCastsResult:
    """Get all recent casts

    Args:
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 100

    Returns:
        IterableCastsResult: model containing casts with an optional cursor
    """
    casts: List[ApiCast] = []
    while True:
        response = self._get(
            "recent-casts",
            params={"cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = CastsGetResponse(**response)
        if response_model.result.casts:
            casts.extend(response_model.result.casts)
        if not response_model.next or len(casts) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableCastsResult(
        casts=casts[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_recent_users(
    self,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableUsersResult:
    """Get recent users

    Args:
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableUsersResult: model containing users with an optional cursor
    """
    users: List[ApiUser] = []
    while True:
        response = self._get(
            "recent-users",
            params={"cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = UsersGetResponse(**response)
        if response_model.result.users:
            users.extend(response_model.result.users)
        if not response_model.next or len(users) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableUsersResult(
        users=users[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_user(self, fid: int) -> ApiUser:
    """Get a user

    Args:
        fid (int): Farcaster ID of the user

    Returns:
        ApiUser: model containing the user
    """
    response = self._get(
        "user",
        params={"fid": fid},
    )
    return UserGetResponse(**response).result.user

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
def get_user_by_username(
    self,
    username: str,
) -> ApiUser:
    """Get a user by username

    Args:
        username (str): username of the user

    Returns:
        ApiUser: model containing the user
    """
    response = self._get(
        "user-by-username",
        params={"username": username},
    )
    return UserByUsernameGetResponse(**response).result.user

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
def get_user_by_verification(
    self,
    address: str,
) -> ApiUser:
    """Get a user by verification address

    Args:
        address (str): address of the user

    Returns:
        ApiUser: model containing the user
    """
    response = self._get(
        "user-by-verification",
        params={"address": address},
    )
    return UserByUsernameGetResponse(**response).result.user

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
def get_user_cast_likes(
    self,
    fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableLikes:
    """Get the likes of a user

    Args:
        fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableLikes: model containing likes with an optional cursor
    """
    likes: List[ApiCastReaction] = []
    while True:
        response = self._get(
            "user-cast-likes",
            params={"fid": fid, "cursor": cursor, "limit": min(limit, 100)},
        )
        response_model = UserCastLikesGetResponse(**response)
        if response_model.result.likes:
            likes.extend(response_model.result.likes)
        if not response_model.next or len(likes) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableLikes(
        likes=likes[:limit], cursor=getattr(response_model.next, "cursor", None)
    )

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
def get_user_collections(
    self,
    owner_fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableCollectionsResult:
    """Get the collections of a user

    Args:
        owner_fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25, otherwise min(limit, 100)

    Returns:
        IterableCollectionsResult: model containing collections with an optional cursor
    """
    collections: List[ApiAssetCollection] = []
    while True:
        response = self._get(
            "user-collections",
            params={
                "ownerFid": owner_fid,
                "cursor": cursor,
                "limit": min(limit, 100),
            },
        )
        response_model = UserCollectionsGetResponse(**response)
        if response_model.result.collections:
            collections.extend(response_model.result.collections)
        if not response_model.next or len(collections) >= limit:
            break
        cursor = response_model.next.cursor
    return IterableCollectionsResult(
        collections=collections[:limit],
        cursor=getattr(response_model.next, "cursor", None),
    )

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
def get_verifications(
    self,
    fid: int,
    cursor: NoneStr = None,
    limit: PositiveInt = 25,
) -> IterableVerificationsResult:
    """Get the verifications of a user

    Args:
        fid (int): Farcaster ID of the user
        cursor (NoneStr, optional): cursor, defaults to None
        limit (PositiveInt, optional): limit, defaults to 25

    Returns:
        IterableVerificationsResult: model containing verifications with an optional cursor
    """
    response = VerificationsGetResponse(
        **self._get(
            "verifications",
            params={"fid": fid, "cursor": cursor, "limit": limit},
        )
    )
    return IterableVerificationsResult(
        verifications=response.result.verifications,
        cursor=getattr(response.next, "cursor", None),
    )

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
def like_cast(self, cast_hash: str) -> ReactionsPutResult:
    """Like a given cast

    Args:
        cast_hash (str): hash of the cast to like

    Returns:
        ReactionsPutResult: Result of liking the cast
    """
    body = CastHash(cast_hash=cast_hash)
    response = self._put(
        "cast-likes",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return CastReactionsPutResponse(**response).result

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
def post_cast(
    self,
    text: str,
    embeds: Optional[List[str]] = None,
    parent: Optional[Parent] = None,
) -> CastContent:
    """Post a cast to Farcaster

    Args:
        text (str): text of the cast
        embeds (Optional[List[str]], optional): list of embeds, defaults to None
        parent (Optional[Parent], optional): parent of the cast, defaults to None

    Returns:
        CastContent: The result of posting the cast
    """
    body = CastsPostRequest(text=text, embeds=embeds, parent=parent)
    response = self._post(
        "casts",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return CastsPostResponse(**response).result

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
def put_auth(self, auth_params: AuthParams) -> TokenResult:
    """Generate a custody bearer token and use it to generate an access token

    Args:
        auth_params (AuthParams): _description_

    Returns:
        TokenResult: _description_
    """
    header = self.generate_custody_auth_header(auth_params)
    body = AuthPutRequest(params=auth_params)
    response = requests.put(
        self.config.base_path + "auth",
        json=body.dict(by_alias=True, exclude_none=True),
        headers={"Authorization": header},
    ).json()
    return AuthPutResponse(**response).result

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
def recast(self, cast_hash: str) -> CastHash:
    """Recast a cast

    Args:
        cast_hash (str): the cast hash

    Returns:
        CastHash: model containing the cast hash
    """
    body = CastHash(cast_hash=cast_hash)
    response = self._put(
        "recasts",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return RecastsPutResponse(**response).result

stream_casts(**stream_options)

Stream all recent casts

Possible stream options

pause_after: Optional[int] = None, The number of times to call the API without finding a new item

skip_existing: bool = False, If True, skip items that existed before the stream was created

max_counter: PositiveInt = 16, The maximum number of seconds to wait between calls to the API

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
def stream_casts(self, **stream_options: Any) -> Iterator[Optional[ApiCast]]:
    """Stream all recent casts

    Possible stream options:
        ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

        ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

        ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

    Args:
        **stream_options: stream options

    Returns:
        Iterator[Optional[ApiCast]]: iterator of casts. Returns none if pause_after is reached
    """
    return stream_generator(
        self._recent_casts_lists, attribute_name="hash", limit=50, **stream_options
    )

stream_notifications(**stream_options)

Stream all recent notifications

Possible stream options

pause_after: Optional[int] = None, The number of times to call the API without finding a new item

skip_existing: bool = False, If True, skip items that existed before the stream was created

max_counter: PositiveInt = 16, The maximum number of seconds to wait between calls to the API

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
def stream_notifications(
    self, **stream_options: Any
) -> Iterator[Optional[Union[MentionNotification, ReplyNotification]]]:
    """Stream all recent notifications

    Possible stream options:
        ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

        ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

        ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

    Args:
        **stream_options: stream options

    Returns:
        Iterator[Optional[Union[MentionNotification, ReplyNotification]]]: iterator of notifications. Returns none if pause_after is reached
    """
    return stream_generator(
        self._recent_notifications_list,
        attribute_name="id",
        limit=20,
        **stream_options,
    )

stream_users(**stream_options)

Stream all recent users.

Possible stream options

pause_after: Optional[int] = None, The number of times to call the API without finding a new item

skip_existing: bool = False, If True, skip items that existed before the stream was created

max_counter: PositiveInt = 16, The maximum number of seconds to wait between calls to the API

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
def stream_users(self, **stream_options: Any) -> Iterator[Optional[ApiUser]]:
    """Stream all recent users.

    Possible stream options:
        ``pause_after``: ``Optional[int]`` = ``None``, The number of times to call the API without finding a new item

        ``skip_existing``: ``bool`` = ``False``, If ``True``, skip items that existed before the stream was created

        ``max_counter``: ``PositiveInt`` = ``16``, The maximum number of seconds to wait between calls to the API

    Args:
        **stream_options: stream options


    Returns:
        Iterator[Optional[ApiUser]]: iterator of users. Returns none if pause_after is reached
    """
    return stream_generator(
        self._recent_users_list, attribute_name="fid", limit=20, **stream_options
    )

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
def unfollow_user(self, fid: PositiveInt) -> StatusContent:
    """Unfollow a user

    Args:
        fid (PositiveInt): Farcaster ID of the user to unfollow

    Returns:
        StatusContent: Status of the unfollow
    """
    body = FollowsDeleteRequest(target_fid=fid)
    response = self._delete(
        "follows",
        json=body.dict(by_alias=True, exclude_none=True),
    )
    return StatusResponse(**response).result

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
def get_wallet(
    mnemonic: NoneStr = None, private_key: NoneStr = None
) -> Optional[LocalAccount]:
    """Get a wallet from mnemonic or private key

    Args:
        mnemonic (NoneStr): mnemonic
        private_key (NoneStr): private key

    Returns:
        Optional[LocalAccount]: wallet
    """
    Account.enable_unaudited_hdwallet_features()

    if mnemonic:
        account: LocalAccount = Account.from_mnemonic(mnemonic)
        return account  # pragma: no cover
    elif private_key:
        account = Account.from_key(private_key)
        return account  # pragma: no cover
    return None

now_ms()

Get the current time in milliseconds

Returns:

Name Type Description
int int

current time in milliseconds

Source code in farcaster/client.py
def now_ms() -> int:
    """Get the current time in milliseconds

    Returns:
        int: current time in milliseconds
    """
    return int(time.time() * 1000)