Skip to content

Commit 7dbf7ca

Browse files
Version Packages (.)
1 parent d27f724 commit 7dbf7ca

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# chainlink-deployments-framework
22

3+
## 0.65.1
4+
5+
### Patch Changes
6+
7+
- [#570](https://github.com/smartcontractkit/chainlink-deployments-framework/pull/570) [`eb74395`](https://github.com/smartcontractkit/chainlink-deployments-framework/commit/eb743959612d2506ba0888f6e2d0996744ec657b) Thanks [@skudasov](https://github.com/skudasov)! - Adds a new EVM Confirm Functor which allows the user to specify a custom wait interval for checking confirmation.
8+
Example
9+
10+
```golang
11+
p, err := cldf_evm_provider.NewRPCChainProvider(
12+
d.ChainSelector,
13+
cldf_evm_provider.RPCChainProviderConfig{
14+
DeployerTransactorGen: cldf_evm_provider.TransactorFromRaw(
15+
getNetworkPrivateKey(),
16+
),
17+
RPCs: []rpcclient.RPC{
18+
{
19+
Name: "default",
20+
WSURL: rpcWSURL,
21+
HTTPURL: rpcHTTPURL,
22+
PreferredURLScheme: rpcclient.URLSchemePreferenceHTTP,
23+
},
24+
},
25+
ConfirmFunctor: cldf_evm_provider.ConfirmFuncGeth(
26+
30*time.Second,
27+
// set custom confirm ticker time because Anvil's blocks are instant
28+
cldf_evm_provider.WithTickInterval(5*time.Millisecond),
29+
),
30+
},
31+
).Initialize(context.Background())
32+
```
33+
334
## 0.65.0
435

536
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chainlink-deployments-framework",
3-
"version": "0.65.0",
3+
"version": "0.65.1",
44
"description": "A deployment framework for chainlink-deployments ",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)