mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
27 lines
505 B
Protocol Buffer
27 lines
505 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package cosmos.nft.v1beta1;
|
||
|
|
||
|
option go_package = "github.com/cosmos/cosmos-sdk/x/nft";
|
||
|
|
||
|
// EventSend is emitted on Msg/Send
|
||
|
message EventSend {
|
||
|
string class_id = 1;
|
||
|
string id = 2;
|
||
|
string sender = 3;
|
||
|
string receiver = 4;
|
||
|
}
|
||
|
|
||
|
// EventMint is emitted on Mint
|
||
|
message EventMint {
|
||
|
string class_id = 1;
|
||
|
string id = 2;
|
||
|
string owner = 3;
|
||
|
}
|
||
|
|
||
|
// EventBurn is emitted on Burn
|
||
|
message EventBurn {
|
||
|
string class_id = 1;
|
||
|
string id = 2;
|
||
|
string owner = 3;
|
||
|
}
|