We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afecda7 commit e7b6dabCopy full SHA for e7b6dab
governance/xc_admin/packages/proposer_server/src/index.ts
@@ -43,7 +43,8 @@ const RPC_URLS: Record<Cluster | "localnet", string> = {
43
const app = express();
44
45
app.use(cors());
46
-app.use(express.json());
+app.use(express.json({ limit: "50mb" }));
47
+app.use(express.urlencoded({ extended: true, limit: "50mb" }));
48
49
app.post("/api/propose", async (req: Request, res: Response) => {
50
try {
0 commit comments