Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Default to any evm RPC URL format and fix deployer
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-maj committed Aug 3, 2023
1 parent 5e87b7f commit ac0295a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thirdweb/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (

type ThirdwebSDK struct {
*ProviderHandler
Deployer *ContractDeployer
Storage IpfsStorage
Deployer ContractDeployer
Auth WalletAuthenticator
}

Expand Down Expand Up @@ -97,8 +97,8 @@ func NewThirdwebSDKFromProvider(provider *ethclient.Client, options *SDKOptions)

sdk := &ThirdwebSDK{
ProviderHandler: handler,
Deployer: deployer,
Storage: *storage,
Deployer: *deployer,
Auth: *auth,
}

Expand Down

0 comments on commit ac0295a

Please sign in to comment.