@@ -11,9 +11,18 @@ public class ERC1155
11
11
{
12
12
public string chain ;
13
13
public string address ;
14
+ /// <summary>
15
+ /// Handle signature minting functionality
16
+ /// </summary>
14
17
public ERC1155Signature signature ;
18
+ /// <summary>
19
+ /// Query claim conditions
20
+ /// </summary>
15
21
public ERC1155ClaimConditions claimConditions ;
16
22
23
+ /// <summary>
24
+ /// Interact with any ERC1155 compatible contract.
25
+ /// </summary>
17
26
public ERC1155 ( string chain , string address )
18
27
{
19
28
this . chain = chain ;
@@ -22,38 +31,54 @@ public ERC1155(string chain, string address)
22
31
this . claimConditions = new ERC1155ClaimConditions ( chain , address ) ;
23
32
}
24
33
25
- /// READ FUNCTIONS
34
+ // READ FUNCTIONS
26
35
36
+ /// <summary>
37
+ /// Get a NFT in this contract by its ID
38
+ /// </summary>
27
39
public async Task < NFT > Get ( string tokenId )
28
40
{
29
41
return await Bridge . InvokeRoute < NFT > ( getRoute ( "get" ) , Utils . ToJsonStringArray ( tokenId ) ) ;
30
42
}
31
43
44
+ /// <summary>
45
+ /// Get a all NFTs in this contract
46
+ /// </summary>
32
47
public async Task < List < NFT > > GetAll ( )
33
48
{
34
49
return await Bridge . InvokeRoute < List < NFT > > ( getRoute ( "getAll" ) , new string [ ] { } ) ;
35
50
}
36
51
37
- public async Task < List < NFT > > GetOwned ( )
38
- {
39
- return await Bridge . InvokeRoute < List < NFT > > ( getRoute ( "getOwned" ) , new string [ ] { } ) ;
40
- }
41
-
42
- public async Task < List < NFT > > GetOwned ( string address )
52
+ /// <summary>
53
+ /// Get a all NFTs owned by the connected wallet
54
+ /// </summary>
55
+ /// <param name="address">Optional wallet address to query NFTs of</param>
56
+ public async Task < List < NFT > > GetOwned ( string address = null )
43
57
{
44
58
return await Bridge . InvokeRoute < List < NFT > > ( getRoute ( "getOwned" ) , Utils . ToJsonStringArray ( address ) ) ;
45
59
}
46
60
61
+ /// <summary>
62
+ /// Get the balance of the given NFT for the connected wallet
63
+ /// </summary>
47
64
public async Task < string > Balance ( string tokenId )
48
65
{
49
66
return await Bridge . InvokeRoute < string > ( getRoute ( "balance" ) , new string [ ] { } ) ;
50
67
}
51
68
69
+ /// <summary>
70
+ /// Get the balance of the given NFT for the given wallet address
71
+ /// </summary>
52
72
public async Task < string > BalanceOf ( string address , string tokenId )
53
73
{
54
74
return await Bridge . InvokeRoute < string > ( getRoute ( "balanceOf" ) , Utils . ToJsonStringArray ( address , tokenId ) ) ;
55
75
}
56
76
77
+ /// <summary>
78
+ /// Check whether the given contract address has been approved to transfer NFTs on behalf of the given wallet address
79
+ /// </summary>
80
+ /// <param name="address">The wallet address</param>
81
+ /// <param name="contractAddress">The contract address to check approval for</param>
57
82
public async Task < string > IsApprovedForAll ( string address , string approvedContract )
58
83
{
59
84
return await Bridge . InvokeRoute < string > ( getRoute ( "isApproved" ) , Utils . ToJsonStringArray ( address , approvedContract ) ) ;
@@ -64,59 +89,89 @@ public async Task<int> TotalCount()
64
89
return await Bridge . InvokeRoute < int > ( getRoute ( "totalCount" ) , new string [ ] { } ) ;
65
90
}
66
91
92
+ /// <summary>
93
+ /// Get the total suppply in circulation for thge given NFT
94
+ /// </summary>
67
95
public async Task < int > TotalSupply ( string tokenId )
68
96
{
69
97
return await Bridge . InvokeRoute < int > ( getRoute ( "totalUnclaimedSupply" ) , Utils . ToJsonStringArray ( tokenId ) ) ;
70
98
}
71
99
72
- /// WRITE FUNCTIONS
100
+ // WRITE FUNCTIONS
73
101
102
+ /// <summary>
103
+ /// Set approval to the given contract to transfer NFTs on behalf of the connected wallet
104
+ /// </summary>
74
105
public async Task < TransactionResult > SetApprovalForAll ( string contractToApprove , bool approved )
75
106
{
76
107
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "isApproved" ) , Utils . ToJsonStringArray ( contractToApprove , approved ) ) ;
77
108
}
78
109
110
+ /// <summary>
111
+ /// Transfer NFTs to the given address
112
+ /// </summary>
79
113
public async Task < TransactionResult > Transfer ( string to , string tokenId , int amount )
80
114
{
81
115
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "transfer" ) , Utils . ToJsonStringArray ( to , tokenId , amount ) ) ;
82
116
}
83
117
118
+ /// <summary>
119
+ /// Burn NFTs
120
+ /// </summary>
84
121
public async Task < TransactionResult > Burn ( string tokenId , int amount )
85
122
{
86
123
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "burn" ) , Utils . ToJsonStringArray ( tokenId , amount ) ) ;
87
124
}
88
125
126
+ /// <summary>
127
+ /// Claim NFTs from a Drop contract
128
+ /// </summary>
89
129
public async Task < TransactionResult [ ] > Claim ( string tokenId , int amount )
90
130
{
91
131
return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claim" ) , Utils . ToJsonStringArray ( tokenId , amount ) ) ;
92
132
}
93
133
134
+ /// <summary>
135
+ /// Claim NFTs from a Drop contract and send them to the given address
136
+ /// </summary>
94
137
public async Task < TransactionResult [ ] > ClaimTo ( string address , string tokenId , int amount )
95
138
{
96
139
return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claimTo" ) , Utils . ToJsonStringArray ( address , tokenId , amount ) ) ;
97
140
}
98
141
142
+ /// <summary>
143
+ /// Mint an NFT (requires minting permission)
144
+ /// </summary>
99
145
public async Task < TransactionResult > Mint ( NFTMetadataWithSupply nft )
100
146
{
101
147
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "mint" ) , Utils . ToJsonStringArray ( nft ) ) ;
102
148
}
103
149
150
+ /// <summary>
151
+ /// Mint an NFT and send it to the given wallet (requires minting permission)
152
+ /// </summary>
104
153
public async Task < TransactionResult > MintTo ( string address , NFTMetadataWithSupply nft )
105
154
{
106
155
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "mintTo" ) , Utils . ToJsonStringArray ( address , nft ) ) ;
107
156
}
108
157
158
+ /// <summary>
159
+ /// Mint additional supply of a given NFT (requires minting permission)
160
+ /// </summary>
109
161
public async Task < TransactionResult > MintAdditionalSupply ( string tokenId , int additionalSupply )
110
162
{
111
163
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "mintAdditionalSupply" ) , Utils . ToJsonStringArray ( tokenId , additionalSupply , additionalSupply ) ) ;
112
164
}
113
165
166
+ /// <summary>
167
+ /// Mint additional supply of a given NFT and send it to the given wallet (requires minting permission)
168
+ /// </summary>
114
169
public async Task < TransactionResult > MintAdditionalSupplyTo ( string address , string tokenId , int additionalSupply )
115
170
{
116
171
return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "mintAdditionalSupplyTo" ) , Utils . ToJsonStringArray ( address , tokenId , additionalSupply ) ) ;
117
172
}
118
173
119
- /// PRIVATE
174
+ // PRIVATE
120
175
121
176
private string getRoute ( string functionPath ) {
122
177
return this . address + ".erc1155." + functionPath ;
0 commit comments