@berachain/graphql 0.5.0-beta.0 → 0.5.0-beta.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.
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import * as viem from 'viem';
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* @deprecated The Railway `backend` deployment is being replaced by `beep`
|
|
5
3
|
* (see `@berachain/graphql/beep`). Prefer importing from `@berachain/graphql/beep`
|
|
@@ -440,11 +438,11 @@ type paths = {
|
|
|
440
438
|
txHash: string;
|
|
441
439
|
type: "MINT" | "REDEEM";
|
|
442
440
|
collaterals: {
|
|
443
|
-
address:
|
|
441
|
+
address: `0x${string}`;
|
|
444
442
|
amount: string;
|
|
445
443
|
}[];
|
|
446
|
-
to:
|
|
447
|
-
from:
|
|
444
|
+
to: `0x${string}`;
|
|
445
|
+
from: `0x${string}`;
|
|
448
446
|
honeyAmount: string;
|
|
449
447
|
timestamp: number;
|
|
450
448
|
}[];
|
|
@@ -697,7 +695,7 @@ type webhooks = Record<string, never>;
|
|
|
697
695
|
type components = {
|
|
698
696
|
schemas: {
|
|
699
697
|
/** @description Validated EVM address type */
|
|
700
|
-
EvmAddress:
|
|
698
|
+
EvmAddress: `0x${string}`;
|
|
701
699
|
/** @description BigInt as string type */
|
|
702
700
|
BigIntStr: string;
|
|
703
701
|
/** @description Unsigned BigInt as string type */
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import * as viem from 'viem';
|
|
2
|
-
|
|
3
1
|
type paths = {
|
|
4
2
|
"/openapi.json": {
|
|
5
3
|
parameters: {
|
|
@@ -967,7 +965,7 @@ type webhooks = Record<string, never>;
|
|
|
967
965
|
type components = {
|
|
968
966
|
schemas: {
|
|
969
967
|
/** @description Validated EVM address type */
|
|
970
|
-
EvmAddress:
|
|
968
|
+
EvmAddress: `0x${string}`;
|
|
971
969
|
/** @description BigInt as string type */
|
|
972
970
|
BigIntStr: string;
|
|
973
971
|
/** @description Decimal as string type */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@berachain/graphql",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
3
|
+
"version": "0.5.0-beta.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"sideEffects": false,
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@apollo/client": "4.1.6"
|
|
13
|
-
"viem": "2.45.0"
|
|
12
|
+
"@apollo/client": "4.1.6"
|
|
14
13
|
},
|
|
15
14
|
"peerDependencies": {
|
|
16
15
|
"@apollo/client": "^4.0",
|