fix: update account table interface to use address, chain and network

This commit is contained in:
Prad Nukala
2024-09-27 21:15:20 -04:00
parent d06dfb5a93
commit 06daff4b33
4 changed files with 100 additions and 84 deletions
+2 -2
View File
@@ -27,13 +27,13 @@ message Account {
primary_key: {fields: "id"}
index: {
id: 1
fields: "account"
fields: "address,chain,network"
unique: true
}
};
uint64 id = 1;
string account = 2;
string address = 2;
string chain = 3;
string network = 4;
}