@triadxyz/poseidons-protocol 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -806,6 +806,10 @@
|
|
|
806
806
|
{
|
|
807
807
|
"name": "PoseidonRewardsEvent",
|
|
808
808
|
"discriminator": [93, 26, 205, 192, 107, 244, 92, 119]
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"name": "UserCreatedEvent",
|
|
812
|
+
"discriminator": [41, 186, 252, 198, 103, 111, 139, 224]
|
|
809
813
|
}
|
|
810
814
|
],
|
|
811
815
|
"errors": [
|
|
@@ -1502,6 +1506,30 @@
|
|
|
1502
1506
|
}
|
|
1503
1507
|
]
|
|
1504
1508
|
}
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"name": "UserCreatedEvent",
|
|
1512
|
+
"type": {
|
|
1513
|
+
"kind": "struct",
|
|
1514
|
+
"fields": [
|
|
1515
|
+
{
|
|
1516
|
+
"name": "user",
|
|
1517
|
+
"type": "pubkey"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"name": "authority",
|
|
1521
|
+
"type": "pubkey"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"name": "refer",
|
|
1525
|
+
"type": "pubkey"
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"name": "created_at",
|
|
1529
|
+
"type": "i64"
|
|
1530
|
+
}
|
|
1531
|
+
]
|
|
1532
|
+
}
|
|
1505
1533
|
}
|
|
1506
1534
|
]
|
|
1507
1535
|
}
|
|
@@ -1097,6 +1097,10 @@ export type PoseidonsProtocol = {
|
|
|
1097
1097
|
{
|
|
1098
1098
|
name: 'poseidonRewardsEvent';
|
|
1099
1099
|
discriminator: [93, 26, 205, 192, 107, 244, 92, 119];
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
name: 'userCreatedEvent';
|
|
1103
|
+
discriminator: [41, 186, 252, 198, 103, 111, 139, 224];
|
|
1100
1104
|
}
|
|
1101
1105
|
];
|
|
1102
1106
|
errors: [
|
|
@@ -1793,6 +1797,30 @@ export type PoseidonsProtocol = {
|
|
|
1793
1797
|
}
|
|
1794
1798
|
];
|
|
1795
1799
|
};
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
name: 'userCreatedEvent';
|
|
1803
|
+
type: {
|
|
1804
|
+
kind: 'struct';
|
|
1805
|
+
fields: [
|
|
1806
|
+
{
|
|
1807
|
+
name: 'user';
|
|
1808
|
+
type: 'pubkey';
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
name: 'authority';
|
|
1812
|
+
type: 'pubkey';
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
name: 'refer';
|
|
1816
|
+
type: 'pubkey';
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
name: 'createdAt';
|
|
1820
|
+
type: 'i64';
|
|
1821
|
+
}
|
|
1822
|
+
];
|
|
1823
|
+
};
|
|
1796
1824
|
}
|
|
1797
1825
|
];
|
|
1798
1826
|
};
|