Skip to content

Commit 55ee76f

Browse files
Add seed parameter to multiple queries in money-flow-api.md for consistency in caching behavior
1 parent f34fe38 commit 55ee76f

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

docs/Examples/coinpath/money-flow-api.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Track where funds are going from a specific address across multiple hops. In 201
134134
currency: { is: "ETH" }
135135
depth: { lteq: 2 }
136136
options: {
137+
seed: 110
137138
asc: "depth"
138139
desc: "amount"
139140
limitBy: { each: "depth", limit: 10 }
@@ -198,6 +199,7 @@ Track where funds came from to a specific address using inbound direction. This
198199
currency: { is: "ETH" }
199200
depth: { lteq: 2 }
200201
options: {
202+
seed: 110
201203
direction: inbound
202204
asc: "depth"
203205
desc: "amount"
@@ -264,6 +266,7 @@ Analyze the relationship between two Ethereum addresses by combining inbound and
264266
currency: { is: "ETH" }
265267
depth: { lteq: 1 }
266268
options: {
269+
seed: 110
267270
direction: inbound
268271
asc: "depth"
269272
desc: "amount"
@@ -316,6 +319,7 @@ Analyze the relationship between two Ethereum addresses by combining inbound and
316319
currency: { is: "ETH" }
317320
depth: { lteq: 2 }
318321
options: {
322+
seed: 110
319323
asc: "depth"
320324
desc: "amount"
321325
limitBy: { each: "depth", limit: 10 }
@@ -374,7 +378,7 @@ query ($network: SolanaNetwork!, $address: String!, $inboundDepth: Int!,
374378
inbound: coinpath(
375379
initialAddress: {is: $address}
376380
depth: {lteq: $inboundDepth}
377-
options: {direction: inbound, asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
381+
options: {seed: 110, direction: inbound, asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
378382
date: {since: $from, till: $till}
379383
currency: { is: $currency }
380384
) {
@@ -397,7 +401,7 @@ query ($network: SolanaNetwork!, $address: String!, $inboundDepth: Int!,
397401
outbound: coinpath(
398402
initialAddress: {is: $address}
399403
depth: {lteq: $outboundDepth}
400-
options: {asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
404+
options: {seed: 110, asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
401405
date: {since: $from, till: $till}
402406
currency: { is: $currency }
403407
) {
@@ -495,7 +499,7 @@ query ($network: EthereumNetwork!, $address: String!, $inboundDepth: Int!, $limi
495499
initialAddress: {is: $address}
496500
currency: {is: $currency}
497501
depth: {lteq: $inboundDepth}
498-
options: {direction: inbound, asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
502+
options: {seed: 110, direction: inbound, asc: "depth", desc: "amount", limitBy: {each: "depth", limit: $limit}}
499503
date: {since: $from, till: $till}
500504
finalAddress: {is: "0xa910f92acdaf488fa6ef02174fb86208ad7722ba"}
501505
) {
@@ -781,6 +785,7 @@ Discover direct and indirect funding relationships between a token creator and b
781785
initialAddress: { is: "F3oHfZ4MniLiygXTkwugUgQ9zn1vgZiH4rtMtcbPbxTC" }
782786
depth: { lteq: 2 }
783787
options: {
788+
seed: 110
784789
direction: inbound
785790
asc: "block.timestamp.time"
786791
desc: "amount"
@@ -826,6 +831,7 @@ Discover direct and indirect funding relationships between a token creator and b
826831
initialAddress: { is: "0xD77EAac88EBcfA6151fAb133Fb1c2C0149F01D5f" }
827832
depth: { lteq: 2 }
828833
options: {
834+
seed: 110
829835
direction: inbound
830836
asc: "block.timestamp.time"
831837
desc: "amount"

0 commit comments

Comments
 (0)