Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions rs/ledger_suite/icrc1/index-ng/index-ng.did
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ type Transaction = record {
};

type Approve = record {
fee : opt nat;
fee : opt Tokens;
from : Account;
memo : opt vec nat8;
created_at_time : opt nat64;
amount : nat;
expected_allowance : opt nat;
amount : Tokens;
expected_allowance : opt Tokens;
expires_at : opt nat64;
spender : Account;
};
Expand All @@ -75,24 +75,24 @@ type Burn = record {
from : Account;
memo : opt vec nat8;
created_at_time : opt nat64;
amount : nat;
amount : Tokens;
spender : opt Account;
};

type Mint = record {
to : Account;
memo : opt vec nat8;
created_at_time : opt nat64;
amount : nat;
amount : Tokens;
};

type Transfer = record {
to : Account;
fee : opt nat;
fee : opt Tokens;
from : Account;
memo : opt vec nat8;
created_at_time : opt nat64;
amount : nat;
amount : Tokens;
spender : opt Account;
};

Expand Down