Skip to content

Commit 1c204a5

Browse files
committed
chore(pr suggestions): apply PR suggestions
1 parent 084221d commit 1c204a5

17 files changed

+20
-20
lines changed

examples/evm/getTransactionById.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);
2525

2626
// replace with your actual ids
27-
const relayer_id = 'sepolia-example';
27+
const relayer_id = 'worldchain-example';
2828

29-
const transaction_id = 'b337e9cb-b10d-4fb2-8412-8fa81b71ad4c';
29+
const transaction_id = '7283c042-86e8-4831-9439-90da9e28a0f1';
3030

3131
relayersApi
3232
.getTransactionById(relayer_id, transaction_id)

examples/evm/getTransactionByNonce.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/evm/listTransactions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/evm/sendTransactionEIP1559.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/evm/sendTransactionLegacy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/evm/sendTransactionSpeed.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ import { Configuration, RelayersApi, Speed } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);
2525

2626
// replace with your actual ids
27-
const relayer_id = 'sepolia-example';
27+
const relayer_id = 'worldchain-example';
2828

2929
relayersApi
3030
.sendTransaction(relayer_id, {

examples/get-relayer-balance/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/get-relayer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/list-relayers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

examples/pause-relayer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Configuration, RelayersApi } from '../../src';
1818
// example dev config
1919
const config = new Configuration({
2020
basePath: 'http://localhost:8080',
21-
accessToken: '', // replace with your actual access token
21+
accessToken: '', // replace with your actual api key
2222
});
2323

2424
const relayersApi = new RelayersApi(config);

0 commit comments

Comments
 (0)