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