Exemplo n.º 1
0
 public CallInput GetGetCollectibleFunctionInput(int id)
 {
     return(CryptoWorldWarContract.GetFunction("getAllCollectibleKeys").CreateCallInput(new object[] {
         id
     }));
 }
Exemplo n.º 2
0
 public Function GetGetCollectibleFunction()
 {
     return(CryptoWorldWarContract.GetFunction("getCollectibelDetails"));
 }
Exemplo n.º 3
0
 public CallInput GetAllCollectiblesCountFunctionInput()
 {
     return(CryptoWorldWarContract.GetFunction("getAllCollectibleKeys").CreateCallInput());
 }
Exemplo n.º 4
0
 public Function GetAllCollectiblesCountFunction()
 {
     return(CryptoWorldWarContract.GetFunction("getAllCollectibleKeys"));
 }
Exemplo n.º 5
0
 public Function GetAddTokenFunction()
 {
     return(CryptoWorldWarContract.GetFunction("mintNewCollectible"));
 }
Exemplo n.º 6
0
 public CallInput GetAddTokenFunctionInput()
 {
     return(CryptoWorldWarContract.GetFunction("mintNewCollectible").CreateCallInput());
 }
Exemplo n.º 7
0
 public CallInput GetAddTokenFunctionInput(int value, string description)
 {
     return(CryptoWorldWarContract.GetFunction("mintNewCollectible").CreateCallInput(new object[] { value, description }));
 }
Exemplo n.º 8
0
 public Function GetRegisterUserFunction()
 {
     return(CryptoWorldWarContract.GetFunction("registerPlayer"));
 }
Exemplo n.º 9
0
 public CallInput GetRegisterUserFunctionInput()
 {
     return(CryptoWorldWarContract.GetFunction("registerPlayer").CreateCallInput());
 }