mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 12:45:26 +03:00
17 lines
246 B
Plaintext
17 lines
246 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
*/
|
||
|
|
||
|
record Token {
|
||
|
// The token owner.
|
||
|
owner: address,
|
||
|
// The Aleo balance (in gates).
|
||
|
balance: u64,
|
||
|
// The token amount.
|
||
|
amount: u64,
|
||
|
}
|
||
|
|
||
|
function main() -> bool {
|
||
|
return true;
|
||
|
}
|