blob: 9eb242fc6c741a1153f542acc0c30c25bc7e9868 (
plain) (
tree)
|
|
export const blockParamSchema = {
id: '/blockParamSchema',
oneOf: [
{
type: 'number',
},
{
enum: ['latest', 'earliest', 'pending'],
},
],
};
export const blockRangeSchema = {
id: '/blockRangeSchema',
properties: {
fromBlock: { $ref: '/blockParamSchema' },
toBlock: { $ref: '/blockParamSchema' },
},
type: 'object',
};
|