Skip to content

Commit

Permalink
change defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Sep 21, 2024
1 parent ede8c29 commit fd8ddc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/XMTPiOS/SigningKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public protocol SigningKey {
/// If this signing key is a smart contract wallet
var isSmartContractWallet: Bool { get }

/// The name of the chainId for example "8453" is the chainId for base
/// The name of the chainId for example "1"
var chainId: UInt64 { get }

/// The blockNumber of the chain for example "1"
Expand All @@ -43,11 +43,11 @@ extension SigningKey {
}

public var chainId: UInt64 {
return 8453
return 1
}

public var blockNumber: UInt64 {
return 0
return 1
}

func createIdentity(_ identity: PrivateKey, preCreateIdentityCallback: PreEventCallback? = nil) async throws -> AuthorizedIdentity {
Expand Down

0 comments on commit fd8ddc1

Please sign in to comment.