-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using System.Collections.Generic; | ||
using System.Numerics; | ||
using Nethereum.Hex.HexTypes; | ||
using Nethereum.ABI.FunctionEncoding.Attributes; | ||
|
||
namespace Thirdweb.Contracts.Account.ContractDefinition | ||
{ | ||
public partial class RoleRequest : RoleRequestBase { } | ||
|
||
public class RoleRequestBase | ||
{ | ||
[Parameter("bytes32", "role", 1)] | ||
public virtual byte[] Role { get; set; } | ||
|
||
[Parameter("address", "target", 2)] | ||
public virtual string Target { get; set; } | ||
|
||
[Parameter("uint8", "action", 3)] | ||
public virtual byte Action { get; set; } | ||
|
||
[Parameter("uint128", "validityStartTimestamp", 4)] | ||
public virtual BigInteger ValidityStartTimestamp { get; set; } | ||
|
||
[Parameter("uint128", "validityEndTimestamp", 5)] | ||
public virtual BigInteger ValidityEndTimestamp { get; set; } | ||
|
||
[Parameter("bytes32", "uid", 6)] | ||
public virtual byte[] Uid { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using System.Collections.Generic; | ||
using System.Numerics; | ||
using Nethereum.Hex.HexTypes; | ||
using Nethereum.ABI.FunctionEncoding.Attributes; | ||
|
||
namespace Thirdweb.Contracts.Account.ContractDefinition | ||
{ | ||
public partial class RoleRestrictions : RoleRestrictionsBase { } | ||
|
||
public class RoleRestrictionsBase | ||
{ | ||
[Parameter("bytes32", "role", 1)] | ||
public virtual byte[] Role { get; set; } | ||
|
||
[Parameter("address[]", "approvedTargets", 2)] | ||
public virtual List<string> ApprovedTargets { get; set; } | ||
|
||
[Parameter("uint256", "maxValuePerTransaction", 3)] | ||
public virtual BigInteger MaxValuePerTransaction { get; set; } | ||
|
||
[Parameter("uint128", "startTimestamp", 4)] | ||
public virtual BigInteger StartTimestamp { get; set; } | ||
|
||
[Parameter("uint128", "endTimestamp", 5)] | ||
public virtual BigInteger EndTimestamp { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using System.Collections.Generic; | ||
using System.Numerics; | ||
using Nethereum.Hex.HexTypes; | ||
using Nethereum.ABI.FunctionEncoding.Attributes; | ||
|
||
namespace Thirdweb.Contracts.Account.ContractDefinition | ||
{ | ||
public partial class UserOperation : UserOperationBase { } | ||
|
||
public class UserOperationBase | ||
{ | ||
[Parameter("address", "sender", 1)] | ||
public virtual string Sender { get; set; } | ||
|
||
[Parameter("uint256", "nonce", 2)] | ||
public virtual BigInteger Nonce { get; set; } | ||
|
||
[Parameter("bytes", "initCode", 3)] | ||
public virtual byte[] InitCode { get; set; } | ||
|
||
[Parameter("bytes", "callData", 4)] | ||
public virtual byte[] CallData { get; set; } | ||
|
||
[Parameter("uint256", "callGasLimit", 5)] | ||
public virtual BigInteger CallGasLimit { get; set; } | ||
|
||
[Parameter("uint256", "verificationGasLimit", 6)] | ||
public virtual BigInteger VerificationGasLimit { get; set; } | ||
|
||
[Parameter("uint256", "preVerificationGas", 7)] | ||
public virtual BigInteger PreVerificationGas { get; set; } | ||
|
||
[Parameter("uint256", "maxFeePerGas", 8)] | ||
public virtual BigInteger MaxFeePerGas { get; set; } | ||
|
||
[Parameter("uint256", "maxPriorityFeePerGas", 9)] | ||
public virtual BigInteger MaxPriorityFeePerGas { get; set; } | ||
|
||
[Parameter("bytes", "paymasterAndData", 10)] | ||
public virtual byte[] PaymasterAndData { get; set; } | ||
|
||
[Parameter("bytes", "signature", 11)] | ||
public virtual byte[] Signature { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.