Skip to content

Commit

Permalink
feat: Added Goerli to supported features - Rinkeby has been depracted…
Browse files Browse the repository at this point in the history
… with Ethererum moving to Proof of Stake.
  • Loading branch information
saszer committed Oct 5, 2022
1 parent fd175d6 commit 3b4c398
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Editor/Mint_viaURL_Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public override void OnInspectorGUI()
GUILayout.Box(banner);
GUILayout.EndHorizontal();

if (GUILayout.Button("MINT EET", GUILayout.Height(45)))
if (GUILayout.Button("MINT", GUILayout.Height(45)))
{
PortUser.SetFromEditorWin();
myScript.Run();
Expand Down
3 changes: 2 additions & 1 deletion Runtime/Burn_NFT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class Burn_NFT : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli,
ethereum
}

private class CustomNFT
Expand Down
3 changes: 2 additions & 1 deletion Runtime/Mint_Custom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class Mint_Custom : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli,
ethereum
}

private class CustomNFT
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Mint_File.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Mint_File : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli
}

#region Parameter Defines
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Mint_URL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Mint_URL : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli
}

private class EasyMintNFT
Expand Down
2 changes: 1 addition & 1 deletion Runtime/NFT_Details.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public enum Chains
{
ethereum,
polygon,
rinkeby,
goerli,
solana
}

Expand Down
2 changes: 1 addition & 1 deletion Runtime/NFTs_OfACollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public enum Chains
{
ethereum,
polygon,
rinkeby,
goerli,
solana
}

Expand Down
4 changes: 2 additions & 2 deletions Runtime/NFTs_OwnedByAnAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public enum Chains
{
ethereum,
polygon,
rinkeby,
solana
goerli,
solana,
}

public enum Includes
Expand Down
3 changes: 2 additions & 1 deletion Runtime/Transfer_NFT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class Transfer_NFT : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli,
ethereum
}

private class CustomNFT
Expand Down
3 changes: 2 additions & 1 deletion Runtime/Update_NFT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class Update_NFT : MonoBehaviour
public enum Chains
{
polygon,
rinkeby
goerli,
ethereum
}

private class CustomNFT
Expand Down

0 comments on commit 3b4c398

Please sign in to comment.